title
stringlengths
1
551
source
stringclasses
83 values
url
stringlengths
13
578
category
stringclasses
11 values
language
stringclasses
12 values
content
stringlengths
80
800
chunk_id
int64
0
6.66k
chunk_length
int64
80
800
last_updated
stringdate
2026-03-23 10:49:51
2026-03-23 11:44:43
?s=nginx
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=nginx
devops
python
currently supported in order to keep the package size as small as possible. Not all features of OpenTelemetry are supported, and this package should be considered experimental. swift instrumentation ios macOS tvOS watchOS Swift Language Instrumentation Component MIT License Repository flow - tracing flow metrics by MrAlias An OpenTelemetry-Go SpanProcessor reporting tracing flow as Prometheus metrics. go processor prometheus Go Language Processor Component Apache 2.0 License Repository Ansible role for OpenTelemetry Collector by Ishan Jain , Grafana Labs Ansible role by Grafana to deploy and manage OpenTelemetry Collector across multiple machines collector ansible ansible-role Yaml Language Utilities Component GPL-3.0 License Documentation Repository OpenTelemetry Browser Extension Autoinj
376
800
2026-03-23T11:33:22.910755
config-plugin-and-native-module-tutorial
expo
https://docs.expo.dev/modules/config-plugin-and-native-module-tutorial
mobile
javascript
app and access your custom API key using the ExamplePlugin.getApiKey() function. Terminal - cd example # Execute your plugin and update native files - npx expo prebuild # Run the example app on Android - npx expo run:android # Run the example app on iOS - npx expo run:ios Next steps Congratulations, you have created a config plugin that interacts with an Expo module for Android and iOS! If you want to challenge yourself and make the plugin more versatile, this exercise is open for you. Modify the plugin to allow any arbitrary set of config keys and values to be passed in, and add functionality to read arbitrary keys from the module. Expo Modules API Reference A reference to create native modules using Kotlin and Swift. Additional platform support Learn how to add support for macOS and tvOS
15
800
2026-03-23T11:13:08.228453
redis
redis
https://redis.io/docs/latest/develop/data-types/lists/
database
bash
rs" ); }) . thenAccept ( System . out :: println ) // >>> 0 . toCompletableFuture (); rule2 . join (); CompletableFuture < Void > rule3 = asyncCommands . del ( "bikes:repairs" ). thenCompose ( res35 -> { System . out . println ( res35 ); // >>> 0 return asyncCommands . llen ( "bikes:repairs" ); }). thenCompose ( res36 -> { System . out . println ( res36 ); // >>> 0 return asyncCommands . lpop ( "bikes:repairs" ); }) . thenAccept ( System . out :: println ) // >>> null . toCompletableFuture (); rule3 . join (); CompletableFuture < Void > ltrim1 = asyncCommands . lpush ( "bikes:repairs" , "bike:1" , "bike:2" , "bike:3" , "bike:4" , "bike:5" ). thenCompose ( res37 -> { System . out . println ( res37 ); // >>> 5 return asyncCommands . ltrim ( "bikes:repairs" , 0 , 2 ); }). thenCompose ( res38
432
799
2026-03-23T11:05:26.645546
laws-of-reflection.html
go
https://go.dev/blog/2011/09/laws-of-reflection.html
language
go
onfusing, but it’s easy enough to understand if we start from first principles. Here is some code that does not work, but is worth studying. var x float64 = 3.4 v := reflect.ValueOf(x) v.SetFloat(7.1) // Error: will panic. If you run this code, it will panic with the cryptic message panic: reflect.Value.SetFloat using unaddressable value The problem is not that the value 7.1 is not addressable; it’s that v is not settable. Settability is a property of a reflection Value , and not all reflection Values have it. The CanSet method of Value reports the settability of a Value ; in our case, var x float64 = 3.4 v := reflect.ValueOf(x) fmt.Println("settability of v:", v.CanSet()) prints settability of v: false It is an error to call a Set method on a non-settable Value . But what is settability?
14
799
2026-03-23T11:24:06.093296
mysql
mysql
https://dev.mysql.com/doc/c-api/8.4/en/
database
sql
2026-03-17 (revision: 84509) Table of Contents Preface and Legal Notices 1 The MySQL C API 2 MySQL C API Implementations 3 Writing C API-Based Client Applications 3.1 Example C API Client Programs 3.2 Building C API Client Programs 3.3 Building C API Client Programs Using pkg-config 3.4 Writing C API Threaded Client Programs 3.5 Running C API Client Programs 3.6 Using C API Features 3.6.1 Support for Encrypted Connections 3.6.2 SSL Session Reuse 3.6.3 Multiple Statement Execution Support 3.6.4 Prepared Statement Handling of Date and Time Values 3.6.5 Prepared CALL Statement Support 3.6.6 Prepared Statement Problems 3.6.7 Optional Result Set Metadata 3.6.8 Automatic Reconnection Control 3.6.9 NULL mysql_store_result() Return After mysql_query() Success 3.6.10 Results Availab
1
784
2026-03-23T10:56:36.219953
packer
terraform
https://developer.hashicorp.com/hcp/api-docs/packer
devops
hcl
bject href string The endpoint URL for the bucket's ancestry at this version. status string UNDETERMINED: HCP Packer cannot determine whether the child artifact is out of date. This status occurs when the parent version was not assigned to a channel when Packer built the artifact, the channel no longer exists in the bucket, or HCP Packer is not tracking the parent. UP_TO_DATE: The child artifact is built from the version currently assigned to the channel. OUT_OF_DATE: The child artifact is built from a different version than the one currently assigned to the channel. created_at string Created datetime. updated_at string Last updated datetime. platforms string[] description string Short description of what this bucket is for. labels object A key:value map for custom, user-settable metadata
28
799
2026-03-23T11:11:33.009822
uk
git
https://git-scm.com/docs/git-log/uk
devops
bash
-diff-merges=remerge -p . --no-diff-merges Синонім до --diff-merges=off . --diff-merges= <формат> Вкажіть формат diff, який буде використовуватися для комітів злиття. За замовчуванням використовується `off`, якщо не використовується --first-parent , тоді first-parent є значенням за замовчуванням. Підтримуються такі формати: off none Вимкнути вивід різниць для комітів злиття. Корисно для перевизначення неявного значення. on m Зробити так, щоб вивід diff для комітів злиття відображався у форматі за замовчуванням. Формат за замовчуванням можна змінити за допомогою змінної конфігурації log.diffMerges , значення за замовчуванням якої — separate . first-parent 1 Показати повну різницю відносно першого батьківського елемента. Це той самий формат, який створює --patch для комітів без злиття. separ
81
800
2026-03-23T11:30:44.615975
?s=logrus
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=logrus
devops
python
instrumentation segmentio-kafka-go kafka Go Language Instrumentation Component Apache 2.0 License Documentation Repository URLSession Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library provides a URLSession instrumentation to track requests through OpenTelemetry. swift instrumentation ios macOS tvOS Swift Language Instrumentation Component Apache 2.0 License Repository logrus log bridge by 🔭 OpenTelemetry Authors 🔭 Package otellogrus provides an OpenTelemetry log bridge for github.com/sirupsen/logrus . logrus log-bridge go Go Language Log bridge Component Apache 2.0 License Repository slog log bridge by 🔭 OpenTelemetry Authors 🔭 Package otelslog provides an OpenTelemetry log bridge for log/slog . slog log-bridge go Go Language Log bridge Component Apache 2.0 License Repository zap l
360
800
2026-03-23T11:17:34.407810
2.2.3
git
https://git-scm.com/docs/gitremote-helpers/2.2.3
devops
bash
chable from them as a stream in fast-import format. Supported commands: list , import . check-connectivity Can guarantee that when a clone is requested, the received pack is self contained and is connected. If a helper advertises connect , Git will use it if possible and fall back to another capability if the helper requests so when connecting (see the connect command under COMMANDS). When choosing between fetch and import , Git prefers fetch . Other frontends may have some other order of preference. Miscellaneous capabilities option For specifying settings like verbosity (how much output to write to stderr) and depth (how much history is wanted in the case of a shallow clone) that affect how other commands are carried out. refspec <refspec> For remote helpers that implement import or expo
9
800
2026-03-23T11:26:18.187738
gitlab_ci
gitlab_ci
https://docs.gitlab.com/integration/jenkins/
devops
yaml
Please check your settings When you configure GitLab, you might get an error that states Connection failed. Please check your settings . This issue has multiple possible causes and solutions: Cause Workaround GitLab is unable to reach your Jenkins instance at the address. For GitLab Self-Managed, ping the Jenkins instance at the domain provided on the GitLab instance. The Jenkins instance is at a local address and is not included in the GitLab installation’s allowlist . Add the instance to the GitLab installation’s allowlist. The credentials for the Jenkins instance do not have sufficient access or are invalid. Grant the credentials sufficient access or create valid credentials. The Enable authentication for /project end-point checkbox is not selected in your Jenkins plugin configuration S
7
800
2026-03-23T11:23:01.237254
overview
neon
https://neon.tech/docs/auth/legacy/overview
database
sql
ss to work correctly. For detailed integration patterns, foreign key examples, and best practices, see Database Integration . Environment variables and SDK keys To use Stack Auth with your Neon project, you need these environment variables: NEXT_PUBLIC_STACK_PROJECT_ID = your-project-id NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY = your-client-key STACK_SECRET_SERVER_KEY = your-server-secret Getting your keys You can get these keys from the Neon Console Auth page, or by using the Neon API. Generates SDK keys for your auth provider integration. These keys are used to set up your frontend and backend SDKs. Required parameters: project_id : Your Neon project ID auth_provider : The authentication provider (currently "stack" ) curl --request POST \ --url 'https://console.neon.tech/api/v2/projects/
3
800
2026-03-23T11:28:29.836888
toString
javascript
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/toString
language
javascript
Function.prototype.toString() - JavaScript | MDN Skip to main content Skip to search Function.prototype.toString() Baseline Widely available * This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015. * Some parts of this feature may have varying levels of support. Learn more See full compatibility Report feedback The toString() method of Function instances returns a string representing the source code of this function. Try it function sum(a, b) { return a + b; } console.log(sum.toString()); // Expected output: "function sum(a, b) { // return a + b; // }" console.log(Math.abs.toString()); // Expected output: "function abs() { [native code] }" Syntax js toString() Paramete
0
760
2026-03-23T10:55:10.563240
release-notes-1.20.0
flutter
https://docs.flutter.dev/release/release-notes/release-notes-1.20.0
mobile
dart
ready covered devicelab test: tiles_scroll_perf_iphonexs__timeline_summary (cla: yes, team) 58618 Revert "Don't elapse real time during IOSDevice.startApp tests" (cla: yes, tool) 58620 Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team) 58621 Make it possible to remove nodes from traversal sort. (cla: yes, framework, waiting for tree to go green) 58622 Don't elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green) 58630 Updated Slider test (cla: yes, f: material design, framework, waiting for tree to go green) 58635 Remove DiagnosticableMixin in favor of Diagnosticable (cla: yes, framework, team, waiting for tree to go green) 58644 Add FakeAsync to delay tests (cla: yes, team, tool) 58645 Move c
400
799
2026-03-23T11:13:03.432636
managing-postgresql-views
neon
https://neon.tech/postgresql/postgresql-views/managing-postgresql-views
database
sql
syntax, you add the OR REPLACE between the CREATE and VIEW keywords. If the view already exists, the statement replaces the existing view; otherwise, it creates a new view. For example, the following statement changes the defining query of the contact view to include the phone information from the address table: CREATE OR REPLACE VIEW contact AS SELECT first_name, last_name, email, phone FROM customer INNER JOIN address USING (address_id); Display a view on psql To display a view on psql , you follow these steps: First, open the Command Prompt on Windows or Terminal on Unix-like systems and connect to the PostgreSQL server: psql -U postgres Second, change the current database to dvdrental : \c dvdrental Third, display the view information using the \d+ view_name command. For example, the
5
798
2026-03-23T11:32:42.505754
redis
redis
https://redis.io/docs/latest/develop/data-types/lists/
database
bash
!= nil { panic ( err ) } fmt . Println ( res3 ) // >>> bike:1 res4 , err := rdb . RPop ( ctx , "bikes:repairs" ). Result () if err != nil { panic ( err ) } fmt . Println ( res4 ) // >>> bike:2 } func ExampleClient_stack () { ctx := context . Background () rdb := redis . NewClient ( & redis . Options { Addr : "localhost:6379" , Password : "" , // no password docs DB : 0 , // use default DB }) res5 , err := rdb . LPush ( ctx , "bikes:repairs" , "bike:1" ). Result () if err != nil { panic ( err ) } fmt . Println ( res5 ) // >>> 1 res6 , err := rdb . LPush ( ctx , "bikes:repairs" , "bike:2" ). Result () if err != nil { panic ( err ) } fmt . Println ( res6 ) // >>> 2 res7 , err := rdb . LPop ( ctx , "bikes:repairs" ). Result () if err != nil { panic ( err ) } fmt . Println ( res7 ) // >>> bike
591
799
2026-03-23T11:05:26.645766
redis
redis
https://redis.io/docs/latest/develop/data-types/sorted-sets/
database
bash
} fmt . Println ( res12 ) // >>> 2 } func ExampleClient_zaddlex () { ctx := context . Background () rdb := redis . NewClient ( & redis . Options { Addr : "localhost:6379" , Password : "" , // no password docs DB : 0 , // use default DB }) _ , err := rdb . ZAdd ( ctx , "racer_scores" , redis . Z { Member : "Norem" , Score : 0 }, redis . Z { Member : "Royce" , Score : 0 }, redis . Z { Member : "Prickett" , Score : 0 }, ). Result () res13 , err := rdb . ZAdd ( ctx , "racer_scores" , redis . Z { Member : "Norem" , Score : 0 }, redis . Z { Member : "Sam-Bodden" , Score : 0 }, redis . Z { Member : "Royce" , Score : 0 }, redis . Z { Member : "Ford" , Score : 0 }, redis . Z { Member : "Prickett" , Score : 0 }, redis . Z { Member : "Castilla" , Score : 0 }, ). Result () if err != nil { panic ( err
267
799
2026-03-23T11:05:31.573223
?s=syslog
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=syslog
devops
python
on Integration for Sentry by Sentry authors The Sentry OpenTelemetry Python integration provides a processor and propagator to send data to Sentry and to associate traces/spans to Sentry errors. For configuration details, see OpenTelemetry Support . python processor propagator utilities sentry error monitoring Python Language Utilities Component MIT License Repository RSpec matchers by Damien Mathieu The RSpec matchers tool provides a set of matchers to make it easier to write unit tests checking the presence of telemetry data. ruby rspec Quick Install To install this utilities run: gem install rspec-otel 0.0.7 Version Ruby Language Utilities Component MIT License Package Details (gems) Repository Ruby Integration for Sentry by Sentry authors The Sentry OpenTelemetry Ruby integration provi
390
800
2026-03-23T11:19:50.049730
ctrl-c-in-psql-gives-me-the-heebie-jeebies
neon
https://neon.tech/blog/ctrl-c-in-psql-gives-me-the-heebie-jeebies
database
sql
x00\x00\x00\x08" = 8 bytes "\x00\x00\x00\x00" = AuthenticationOk #1 server -> client: "S" = ParameterStatus "\x00\x00\x00\x17" = 23 bytes "in_hot_standby\x00" = key "off\x00" = value #1 server -> client: "S" = ParameterStatus "\x00\x00\x00\x19" = 25 bytes "integer_datetimes\x00" = key "on\x00" = value #1 server -> client: "S" = ParameterStatus "\x00\x00\x00\x11" = 17 bytes "TimeZone\x00" = key "GMT\x00" = value #1 server -> client: "S" = ParameterStatus "\x00\x00\x00\x1b" = 27 bytes "IntervalStyle\x00" = key "postgres\x00" = value #1 server -> client: "S" = ParameterStatus "\x00\x00\x00\x20" = 32 bytes "search_path\x00" = key "\"$user\", public\x00" = value #1 server -> client: "S" = ParameterStatus "\x00\x00\x00\x15" = 21 bytes "is_superuser\x00" = key "off\x00" = value #1 server -> clien
14
800
2026-03-23T11:26:20.713961
kubernetes
kubernetes
https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.35/
devops
yaml
is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown fiel
3,409
799
2026-03-23T10:56:49.347200
supabase-ssl-enforcement-get
supabase
https://supabase.com/docs/reference/cli/supabase-ssl-enforcement-get
database
typescript
pipelines where you want to fail the build based on certain lint conditions. Usage 1 supabase db lint [flags] Flags --db-url <string> Optional Lints the database specified by the connection string (must be percent-encoded). --fail-on <[ none | warning | error ]> Optional Error level to exit with non-zero status. --level <[ warning | error ]> Optional Error level to emit. --linked Optional Lints the linked project for schema errors. --local Optional Lints the local database for schema errors. -s, --schema <strings> Optional Comma separated list of schema to include. Basic usage Warnings for a specific schema 1 supabase db lint Response 1 Linting schema: public 2 3 No schema errors found supabase db start Usage 1 supabase db start [flags] Flags --from-backup <string> Optional Path to a logi
26
799
2026-03-23T11:31:03.410936
2.47.0
git
https://git-scm.com/docs/git-config/2.47.0
devops
bash
.3 2024-11-26 2.46.2 2024-09-23 2.46.1 2024-09-13 2.46.0 2024-07-29 2.45.4 no changes 2.45.3 2024-11-26 2.45.1 → 2.45.2 no changes 2.45.0 2024-04-29 2.44.4 no changes 2.44.3 2024-11-26 2.44.1 → 2.44.2 no changes 2.44.0 2024-02-23 2.43.7 no changes 2.43.6 2024-11-26 2.43.2 → 2.43.5 no changes 2.43.1 2024-02-09 2.43.0 2023-11-20 2.42.4 2024-11-26 2.42.2 → 2.42.3 no changes 2.42.1 2023-11-02 2.42.0 2023-08-21 2.41.3 2024-11-26 2.41.1 → 2.41.2 no changes 2.41.0 2023-06-01 2.40.4 2024-11-26 2.40.1 → 2.40.3 no changes 2.40.0 2023-03-12 2.39.1 → 2.39.5 no changes 2.39.0 2022-12-12 2.38.3 → 2.38.5 no changes 2.38.2 2022-12-11 2.38.1 2022-10-07 2.38.0 2022-10-02 2.37.5 → 2.37.7 no changes 2.37.4 2022-10-06 2.37.3 no changes 2.37.2 2022-08-11 2.37.1 no changes 2.37.0 2022-06-27 2.36.4 → 2.36.6 no ch
2
800
2026-03-23T11:24:43.755998
?language=collector
opentelemetry
https://opentelemetry.io/ecosystem/registry/?language=collector
devops
python
rumentation for Node.js. js instrumentation Quick Install To install this instrumentation library run: npm install @opentelemetry/instrumentation-http 0.213.0 Version JavaScript Language Instrumentation Component Apache 2.0 License Package Details (npm) Repository ioRedis Instrumentation by 🔭 OpenTelemetry Authors 🔭 ioRedis instrumentation for Node.js. js instrumentation Quick Install To install this instrumentation library run: npm install @opentelemetry/instrumentation-ioredis 0.61.0 Version JavaScript Language Instrumentation Component Apache 2.0 License Package Details (npm) Repository OpenTelemetry kafkajs Instrumentation by Amir Blum kafkajs instrumentation for Node.js. Node.js instrumentation kafkajs kafka JavaScript Language Instrumentation Component Apache 2.0 License Repository O
284
800
2026-03-23T11:03:09.543006
?s=rdkafka
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=rdkafka
devops
python
Processor Component Apache 2.0 License Package Details (go-collector) Repository Interval Processor by 🔭 OpenTelemetry Authors 🔭 The interval processor ( intervalprocessor ) aggregates metrics and periodically forwards the latest values to the next component in the pipeline. interval processor collector Quick Install When building a custom collector you can add this processor to the manifest file like the following: processors : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/processor/intervalprocessor v0.148.0 v0.148.0 Version Collector Language Processor Component Apache 2.0 License Package Details (go-collector) Repository Isolation Forest Processor by 🔭 OpenTelemetry Authors 🔭 The Isolation Forest processor adds inline, unsupervised anomaly detection to any OpenTe
82
799
2026-03-23T11:39:35.380919
postgresql
postgresql
https://www.postgresql.org/docs/release/12.13/
database
sql
in a multi-row VALUES clause of an INSERT on an updatable view (Tom Lane) § This oversight could lead to “ cache lookup failed for type ” errors, or in older branches even to crashes. Disallow rules named _RETURN that are not ON SELECT (Tom Lane) § This avoids confusion between a view's ON SELECT rule and any other rules it may have. Fix resource management bug in saving tuples for AFTER triggers (Tom Lane) § Given the right circumstances, this manifested as a “ tupdesc reference NNNN is not owned by resource owner ” error followed by a PANIC exit. Repair rare failure of MULTIEXPR_SUBLINK subplans in inherited updates (Tom Lane) § § § Use of the syntax UPDATE tab SET (c1, ...) = (SELECT ...) with an inherited or partitioned target table could result in failure if the child tables are suff
2
799
2026-03-23T11:31:43.413399
mctest
transformers
https://huggingface.co/datasets/sagnikrayc/mctest
ai
python
iked to take a bath. Mary and Buddy enjoyed\newlinesmelling flowers and eating hamburgers. But they also were very different from one\newlineanother. For one thing, Buddy was a dog! Buddy liked talking to strangers and visiting new\newlineplaces. But Mary was shy. One day a man named John came by. Mary hid behind a tree when\newlineshe saw him. Buddy tried to tell her it was okay, but she was too scared to listen. So\newlineBuddy went out to say hello to John. John was very nice and he liked the same games as\newlineBuddy. Mary watched Buddy chase after a ball John threw. She could tell John was a nice\newlineman. She wanted to play too. Buddy saw her watching and led his new friend over to\newlineMary. John waved to Mary and brought her a flower. Mary smiled at him. She thought he was\new
137
800
2026-03-23T11:30:58.217832
pubspec
dart
https://dart.dev/tools/pub/pubspec
language
dart
repository (or both). It helps users understand where your package is coming from. Repository # The optional repository field should contain the URL for your package's source code repository—for example, https://github.com/<user>/<repository> . If you publish your package to the pub.dev site, then your package's page displays the repository URL. While providing a repository is optional, please provide it or homepage (or both). It helps users understand where your package is coming from. Issue tracker # The optional issue_tracker field should contain a URL for the package's issue tracker, where existing bugs can be viewed and new bugs can be filed. The pub.dev site attemp
11
679
2026-03-23T10:56:01.457229
?s=axum
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=axum
devops
python
.148.0 Version Collector Language Exporter Component Apache 2.0 License Package Details (go-collector) Repository Azure Data Explorer Exporter by 🔭 OpenTelemetry Authors 🔭 This exporter sends metrics, logs and trace data to Azure Data Explorer go exporter collector Quick Install When building a custom collector you can add this exporter to the manifest file like the following: exporters : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/exporter/azuredataexplorerexporter v0.148.0 v0.148.0 Version Collector Language Exporter Component Apache 2.0 License Package Details (go-collector) Repository BMC Helix Exporter by 🔭 OpenTelemetry Authors 🔭 This exporter supports sending metrics to BMC Helix Operations Management through its metric ingestion REST API . bmchelix exporter
29
799
2026-03-23T11:32:24.869040
pydantic_ai
pydantic_ai
https://ai.pydantic.dev/tools-advanced/
ai
python
operties' ][ 'name' ][ 'description' ] = d return tool_def greet_tool = Tool ( greet , prepare = prepare_greet ) test_model = TestModel () agent = Agent ( test_model , tools = [ greet_tool ], deps_type = Literal [ 'human' , 'machine' ]) result = agent . run_sync ( 'testing...' , deps = 'human' ) print ( result . output ) #> {"greet":"hello a"} print ( test_model . last_model_request_parameters . function_tools ) """ [ ToolDefinition( name='greet', parameters_json_schema={ 'additionalProperties': False, 'properties': { 'name': {'type': 'string', 'description': 'Name of the human to greet.'} }, 'required': ['name'], 'type': 'object', }, ) ] """ (This example is complete, it can be run "as is") Agent-wide Dynamic Tools In addition to per-tool prepare methods, you can also define an agent-wide
10
800
2026-03-23T10:56:05.785729
?s=stackdriver
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=stackdriver
devops
python
install this instrumentation library run: dotnet add package OpenTelemetry.Instrumentation.EntityFrameworkCore 1.15.0-beta.1 Version .NET Language Instrumentation Component Apache 2.0 License Package Details (nuget) Repository EventCounters Instrumentation for OpenTelemetry .NET by 🔭 OpenTelemetry Authors 🔭 This is an Instrumentation Library , which republishes EventCounters using OpenTelemetry Metrics API. event counters instrumentation dotnet Quick Install To install this instrumentation library run: dotnet add package OpenTelemetry.Instrumentation.EventCounters 1.15.0-alpha.1 Version .NET Language Instrumentation Component Apache 2.0 License Package Details (nuget) Repository FusionCache .NET caching library native by Jody Donetti By using OpenTelemetry with FusionCache, you can gain i
201
799
2026-03-23T11:16:44.001294
?s=vaadin
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=vaadin
devops
python
s using the OpenTelemetry API. asp telemetry http module instrumentation dotnet Quick Install To install this instrumentation library run: dotnet add package OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule 1.15.1 Version .NET Language Instrumentation Component Apache 2.0 License Package Details (nuget) Repository ASP.NET Core Instrumentation for OpenTelemetry .NET by 🔭 OpenTelemetry Authors 🔭 This is an Instrumentation Library, which instruments ASP.NET Core and collect metrics and traces about incoming web requests. asp core instrumentation dotnet Quick Install To install this instrumentation library run: dotnet add package OpenTelemetry.Instrumentation.AspNetCore 1.15.1 Version .NET Language Instrumentation Component Apache 2.0 License Package Details (nuget) Repository AWS SDK
197
799
2026-03-23T11:20:45.496497
tauri
tauri
https://tauri.app/plugin/updater/
desktop
rust
r:allow-install Enables the install command without any pre-configured scope. updater:deny-install Denies the install command without any pre-configured scope. Support on Open Collective Sponsor on GitHub © 2026 Tauri Contributors. CC-BY / MIT
22
243
2026-03-23T10:57:35.795023
asset-management
webpack
https://webpack.js.org/guides/asset-management
tooling
javascript
, }, { test: /\.(png|svg|jpg|jpeg|gif)$/i, type: 'asset/resource', }, + { + test: /\.(woff|woff2|eot|ttf|otf)$/i, + type: 'asset/resource', + }, ], }, }; Add some font files to your project: project Copy webpack-demo ├── package.json ├── package-lock.json ├── webpack.config.js ├── /dist │ ├── bundle.js │ └── index.html ├── /src + │ ├── my-font.woff + │ ├── my-font.woff2 │ ├── icon.png │ ├── style.css │ └── index.js └── /node_modules With the loader configured and fonts in place, you can incorporate them via an @font-face declaration. The local url(...) directive will be picked up by webpack, as it was with the image: src/style.css Copy + @font-face { + font-family: 'MyFont'; + src: url('./my-font.woff2') format('woff2'), + url('./my-font.woff') format('woff'); + font-weight:
12
785
2026-03-23T11:14:33.657072
gitlab_ci
gitlab_ci
https://docs.gitlab.com/ci/yaml/
devops
yaml
y of the listed exit codes, and allow_failure false for any other exit code. Keyword type : Job keyword. You can use it only as part of a job. Supported values : A single exit code. An array of exit codes. Example of allow_failure : test_job_1 : script : - echo "Run a script that results in exit code 1. This job fails." - exit 1 allow_failure : exit_codes : 137 test_job_2 : script : - echo "Run a script that results in exit code 137. This job is allowed to fail." - exit 137 allow_failure : exit_codes : - 137 - 255 artifacts History Updated in GitLab Runner 18.1. During the caching process, symlinks are no longer followed, which happened in some edge cases with previous GitLab Runner versions. Use artifacts to specify which files to save as job artifacts . Job artifacts are a list of files
58
799
2026-03-23T10:51:59.386962
llms-components.txt
chakra_ui
https://chakra-ui.com/llms-components.txt
library
javascript
{ value: "KE", label: "Kenya", emoji: "🇰🇪" }, { value: "KG", label: "Kyrgyzstan", emoji: "🇰🇬" }, { value: "KH", label: "Cambodia", emoji: "🇰🇭" }, { value: "KI", label: "Kiribati", emoji: "🇰🇮" }, { value: "KM", label: "Comoros", emoji: "🇰🇲" }, { value: "KN", label: "Saint Kitts and Nevis", emoji: "🇰🇳" }, { value: "KP", label: "Korea, Democratic People's Republic of", emoji: "🇰🇵" }, { value: "KR", label: "Korea, Republic of", emoji: "🇰🇷" }, { value: "KW", label: "Kuwait", emoji: "🇰🇼" }, { value: "KY", label: "Cayman Islands", emoji: "🇰🇾" }, { value: "KZ", label: "Kazakhstan", emoji: "🇰🇿" }, { value: "LA", label: "Lao People's Democratic Republic", emoji: "🇱🇦" }, { value: "LB", label: "Lebanon", emoji: "🇱🇧" }, { value: "LC", label: "Saint Lucia", emoji: "🇱🇨" }, {
257
770
2026-03-23T10:52:18.208684
?s=storage
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=storage
devops
python
/opentelemetry-collector-contrib/receiver/huaweicloudcesreceiver v0.148.0 v0.148.0 Version Collector Language Receiver Component Apache 2.0 License Package Details (go-collector) Repository Microsoft IIS Receiver by 🔭 OpenTelemetry Authors 🔭 The iis receiver grabs metrics about an IIS instance using the Windows Performance Counters. go receiver collector Quick Install When building a custom collector you can add this receiver to the manifest file like the following: receivers : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/receiver/iisreceiver v0.148.0 v0.148.0 Version Collector Language Receiver Component Apache 2.0 License Package Details (go-collector) Repository InfluxDB Receiver by 🔭 OpenTelemetry Authors 🔭 This receiver accepts metrics data as InfluxDB Line Prot
122
800
2026-03-23T11:38:30.886204
user-defined-workflows
inngest
https://www.inngest.com/docs/guides/user-defined-workflows
devops
typescript
o generate a LinkedIn post Our users will be able to combine those tasks to build their custom workflows. 1. Adding the tasks definition to the application After installing and setup Inngest in our Next.js application, we will create the following Workflow Actions definition file: lib/inngest/workflowActions.ts Copy Copied import { type PublicEngineAction } from "@inngest/workflow-kit" ; export const actions : PublicEngineAction [] = [ { kind : "add_ToC" , name : "Add a Table of Contents" , description : "Add an AI-generated ToC" , } , { kind : "grammar_review" , name : "Perform a grammar review" , description : "Use OpenAI for grammar fixes" , } , { kind : "wait_for_approval" , name : "Apply changes after approval" , description : "Request approval for changes" , } , { kind : "apply_chang
2
800
2026-03-23T10:50:23.694658
changelog.html
python
https://docs.python.org/3/whatsnew/changelog.html
language
python
ast locations of f-strings with format specs and repeated expressions. Patch by Pablo Galindo bpo-44878 : Remove the loop from the bytecode interpreter. All instructions end with a DISPATCH macro, so the loop is now redundant. bpo-44878 : Remove switch statement for interpreter loop when using computed gotos. This makes sure that we only have one dispatch table in the interpreter. bpo-44874 : Deprecate the old trashcan macros ( Py_TRASHCAN_SAFE_BEGIN / Py_TRASHCAN_SAFE_END ). They should be replaced by the new macros Py_TRASHCAN_BEGIN and Py_TRASHCAN_END . bpo-44872 : Use new trashcan macros (Py_TRASHCAN_BEGIN/END) in frameobject.c instead of the old ones (Py_TRASHCAN_SAFE_BEGIN/END). bpo-33930 : Fix segmentation fault with deep recursion when cleaning method objects. Patch by Augusto Goul
1,092
800
2026-03-23T10:57:25.354131
linalg.html
pytorch
https://pytorch.org/docs/stable/linalg.html
ml
python
torch.linalg — PyTorch 2.10 documentation Learn Get Started Tutorials Learn the Basics PyTorch Recipes Intro to PyTorch - YouTube Series Webinars Community Landscape Join the Ecosystem Community Hub Forums Developer Resources Contributor Awards Community Events PyTorch Ambassadors Projects PyTorch vLLM DeepSpeed Host Your Project RAY Docs PyTorch Domains Blogs & News Blog Announcements Case Studies Events Newsletter About PyTorch Foundation Members Governing Board Technical Advisory Council Cloud Credit Program Staff Contact Brand Guidelines JOIN Learn Get Started Tutorials Learn the Basics PyTorch Recipes Introduction to PyTorch - YouTube Series Webinars Community Landscape Join the Ecosystem Community Hub Forums Developer Resources Contributor Awards Community Events PyTorch Ambassadors
0
799
2026-03-23T10:52:38.341229
django
django
https://docs.djangoproject.com/fr/1.10/
framework
python
Documentation de Django | Documentation de Django | Django Ce document concerne une version non sécurisée de Django qui n'est plus prise en charge. Merci de mettre à jour vers une version plus récente ! Skip to main content Documentation Getting Help Langue : fr pt-br pl ja id es en el Version de la documentation : 1.10 dev 6.0 5.2 5.1 5.0 4.2 4.1 4.0 3.2 3.1 3.0 2.2 2.1 2.0 1.11 1.8 Documentation de Django ¶ Tout ce que vous devez savoir sur Django. Obtenir de l’aide ¶ Des problèmes ? Nous aimerions vous aider ! Essayez la FAQ – elle contient des réponses à de nombreuses questions courantes. En recherche d’informations spécifiques ? Essayez Index , Index du module ou la table des matières détaillée . Recherchez des informations dans les archives de la liste de diffusion anglophone django-
0
800
2026-03-23T11:20:42.903287
?s=edge-extension
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=edge-extension
devops
python
age Details (go-collector) Repository Logz.io Exporter by 🔭 OpenTelemetry Authors 🔭 The OpenTelemetry Collector Exporter for Logz.io go exporter collector Quick Install When building a custom collector you can add this exporter to the manifest file like the following: exporters : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/exporter/logzioexporter v0.148.0 v0.148.0 Version Collector Language Exporter Component Apache 2.0 License Package Details (go-collector) Repository Mezmo Exporter by 🔭 OpenTelemetry Authors 🔭 This exporter supports sending OpenTelemetry log data to Mezmo. go exporter collector Quick Install When building a custom collector you can add this exporter to the manifest file like the following: exporters : - gomod : github.com/open-telemetry/openteleme
43
800
2026-03-23T11:27:01.886819
supabase-migration-down
supabase
https://supabase.com/docs/reference/cli/supabase-migration-down
database
typescript
s the configurations of a linked Supabase project with the local supabase/config.toml file. This command allows you to manage project configuration as code by defining settings locally and then pushing them to your remote project. Usage 1 supabase config push Flags --project-ref <string> Optional Project ref of the Supabase project. supabase branches Subcommands supabase branches create supabase branches delete supabase branches get supabase branches list supabase branches pause supabase branches unpause supabase branches update supabase branches create Create a preview branch for the linked project. Usage 1 supabase branches create [name] [ flags ] Flags --notify-url <string> Optional URL to notify when branch is active healthy. --persistent Optional Whether to create a persistent branch.
57
800
2026-03-23T11:32:19.763923
?s=psr16
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=psr16
devops
python
ides a Jodd HTTP instrumentation to track requests through OpenTelemetry. jodd http instrumentation java Java Language Instrumentation Component Apache 2.0 License Repository JSF Instrumentation by 🔭 OpenTelemetry Authors 🔭 This package provides an instrumentation library for JSF jsf instrumentation java Java Language Instrumentation Component Apache 2.0 License Repository JSP Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library provides a JSP instrumentation to track requests through OpenTelemetry. java instrumentation Java Language Instrumentation Component Apache 2.0 License Repository Kafka Clients Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library provides a Kafka Clients instrumentation to track requests through OpenTelemetry. java instrumentation Java Language Instrument
255
800
2026-03-23T11:22:24.545666
lockingv3.html
sqlite
https://www.sqlite.org/lockingv3.html
database
sql
journals to disk and wait for those changes to reach the disk surface. Flush all database file changes to the disk. Wait for those changes to actually be written onto the disk surface. Delete the super-journal file. This is the instant when the changes are committed. Prior to deleting the super-journal file, if a power failure or crash occurs, the individual file journals will be considered hot and will be rolled back by the next process that attempts to read them. After the super-journal has been deleted, the file journals will no longer be considered hot and the changes will persist. Delete all individual journal files. Drop the EXCLUSIVE and PENDING locks from all database files. 5.1 Writer starvation In SQLite version 2, if many processes are readin
19
763
2026-03-23T10:51:44.732684
cookies
bun
https://bun.sh/docs/runtime/cookies
runtime
javascript
rieves a cookie by name. Returns null if the cookie doesn’t exist. get-cookie.ts Copy // Get by name const cookie = cookies. get ( " session " ); if (cookie != null ) { console. log (cookie); } has(name: string): boolean Checks if a cookie with the given name exists. has-cookie.ts Copy // Check if cookie exists if (cookies. has ( " session " )) { // Cookie exists } set(name: string, value: string): void set(options: CookieInit): void set(cookie: Cookie): void Adds or updates a cookie in the map. Cookies default to { path: "/", sameSite: "lax" } . set-cookie.ts Copy // Set by name and value cookies. set ( " session " , " abc123 " ); // Set using options object cookies. set ({ name : " theme " , value : " dark " , maxAge : 3600 , secure : true , }); // Set using Cookie instance const
4
792
2026-03-23T10:51:43.701887
isSignal
angular
https://angular.dev/api/core/isSignal
framework
typescript
AfterRenderOptions AfterRenderRef AfterViewChecked AfterViewInit ANIMATION_MODULE_TYPE AnimationCallbackEvent AnimationFunction APP_BOOTSTRAP_LISTENER APP_ID APP_INITIALIZER ApplicationConfig ApplicationInitStatus ApplicationModule ApplicationRef asNativeElements assertInInjectionContext assertNotInReactiveContext assertPlatform Attribute BaseResourceOptions Binding booleanAttribute BootstrapOptions ChangeDetectionStrategy ChangeDetectorRef ClassProvider ClassSansProvider Compiler COMPILER_OPTIONS CompilerFactory CompilerOptions Component ComponentFactory ComponentFactoryResolver ComponentMirror ComponentRef computed ConstructorProvider ConstructorSansProvider contentChild ContentChild contentChildren ContentChildren createComponent CreateComputedOptions CreateEffectOptions createEnvironm
2
799
2026-03-23T11:27:53.870593
?s=pillarjs
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=pillarjs
devops
python
e instrumentation base class, and the instrumentation registry. base instrumentation ruby Quick Install To install this instrumentation library run: gem install opentelemetry-instrumentation-base 0.25.0 Version Ruby Language Instrumentation Component Apache 2.0 License Package Details (gems) Repository Bunny Instrumentation by 🔭 OpenTelemetry Authors 🔭 Bunny instrumentation for Ruby. ruby instrumentation bunny Quick Install To install this instrumentation library run: gem install opentelemetry-instrumentation-bunny 0.24.0 Version Ruby Language Instrumentation Component Apache 2.0 License Package Details (gems) Repository ConcurrentRuby Instrumentation by 🔭 OpenTelemetry Authors 🔭 ConcurrentRuby instrumentation for Ruby. ruby instrumentation Quick Install To install this instrumentation lib
342
800
2026-03-23T11:32:31.642169
action-bar
chakra_ui
https://chakra-ui.com/docs/components/action-bar
library
javascript
ass the onOpenChange handler to control the visibility of the action bar. The open and onOpenChange props control the visibility of the action bar. Preview Code Stackblitz Show Action bar Within Dialog Here's an example of composing the ActionBar and the Dialog to perform a delete action on a set of selected items. Press the Delete projects button to open the dialog. Preview Code Stackblitz Check to select projects Placement Use the placement prop to control the position of the action bar. The action bar supports three placement options: bottom (default), bottom-start , and bottom-end . Preview Code Stackblitz Placement: Bottom Start Bottom Bottom End Show Action Bar Props Root Prop Default Type autoFocus true boolean Whether to automatically set focus on the first focusable content within
1
800
2026-03-23T10:59:28.278735
?s=ucp
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=ucp
devops
python
ent Collector (HEC) Exporter by 🔭 OpenTelemetry Authors 🔭 The Splunk HTTP Event Collector (HEC) Exporter for the OpenTelemetry Collector. go exporter collector Quick Install When building a custom collector you can add this exporter to the manifest file like the following: exporters : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/exporter/splunkhecexporter v0.148.0 v0.148.0 Version Collector Language Exporter Component Apache 2.0 License Package Details (go-collector) Repository Splunk Infrastructure Monitoring Exporter by 🔭 OpenTelemetry Authors 🔭 The OpenTelemetry Splunk Infrastructure Monitoring Exporter for Go. go exporter collector Go Language Exporter Component Apache 2.0 License Repository STEF Exporter by 🔭 OpenTelemetry Authors 🔭 Exports data via gRPC using s
52
800
2026-03-23T11:27:55.785973
kubernetes
kubernetes
https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.35/
devops
yaml
ta1/servicecidrs/{name} Path Parameters Parameter Description name name of the ServiceCIDR Query Parameters Parameter Description pretty If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This fie
5,745
800
2026-03-23T10:56:49.350466
supabase-inspect-db-long-running-queries
supabase
https://supabase.com/docs/reference/cli/supabase-inspect-db-long-running-queries
database
typescript
supabase migration list Lists migration history in both local and remote databases. Requires your local project to be linked to a remote database by running supabase link . For self-hosted databases, you can pass in the connection parameters using --db-url flag. Note that URL strings must be escaped according to RFC 3986 . Local migrations are stored in supabase/migrations directory while remote migrations are tracked in supabase_migrations.schema_migrations table. Only the timestamps are compared to identify any differences. In case of discrepancies between the local and remote migration history, you can resolve them using the migration repair command. Usage 1 supabase migration list [flags] Flags --db-url <string> Optional Lists migrations of the database specified by the connection str
28
799
2026-03-23T11:27:55.022592
gitlab_ci
gitlab_ci
https://docs.gitlab.com/administration/pages/troubleshooting/
devops
yaml
agram accTitle: GitLab Pages Request Flow accDescr: Sequence diagram showing how a user request flows through GitLab Pages components to serve static files. actor User participant PagesNGINX as Pages NGINX participant Pages as GitLab Pages participant GitlabNGINX as GitLab NGINX participant GitlabAPI as GitLab Rails participant ObjectStorage as Object Storage User->>PagesNGINX: Request to Pages activate PagesNGINX PagesNGINX->>Pages: Forwarded to Pages activate Pages Pages->>GitlabNGINX: Fetch domain info activate GitlabNGINX GitlabNGINX->>GitlabAPI: Forwarded to GitLab API activate GitlabAPI GitlabAPI->>GitlabNGINX: 200 OK (domain info) deactivate GitlabAPI GitlabNGINX->>Pages: 200 OK (domain info) deactivate
1
719
2026-03-23T11:31:27.679802
?s=loki
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=loki
devops
python
orm Go Language Instrumentation Component BSD-2-Clause License Repository SQL instrumentation by Vladimir Mihailenco Instrumentation for SQL that records queries (including transactions and statements) and reports DBStats metrics. go instrumentation database sql Go Language Instrumentation Component BSD-2-Clause License Repository otelsql – Instrumentation for database/sql by Sam Xie Instrumentation for the Golang database/sql package. go instrumentation database sql Quick Install To install this instrumentation library run: go get github.com/XSAM/otelsql v0.41.0 Version Go Language Instrumentation Component Apache 2.0 License Package Details (go) Repository Zap instrumentation by Vladimir Mihailenco Instrumentation for Zap logging library. go instrumentation logging zap Go Language Instru
236
800
2026-03-23T11:12:44.943014
keyword_index.html
sqlite
https://www.sqlite.org/keyword_index.html
database
sql
E_DBCONFIG_ENABLE_ATTACH_CREATE SQLITE_DBCONFIG_ENABLE_ATTACH_WRITE SQLITE_DBCONFIG_ENABLE_COMMENTS SQLITE_DBCONFIG_ENABLE_FKEY SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION SQLITE_DBCONFIG_ENABLE_QPSG SQLITE_DBCONFIG_ENABLE_TRIGGER SQLITE_DBCONFIG_ENABLE_VIEW SQLITE_DBCONFIG_LEGACY_ALTER_TABLE SQLITE_DBCONFIG_LEGACY_FILE_FORMAT SQLITE_DBCONFIG_LOOKASIDE SQLITE_DBCONFIG_MAINDBNAME SQLITE_DBCONFIG_MAX SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE SQLITE_DBCONFIG_RESET_DATABASE SQLITE_DBCONFIG_REVERSE_SCANORDER SQLITE_DBCONFIG_STMT_SCANSTATUS SQLITE_DBCONFIG_TRIGGER_EQP SQLITE_DBCONFIG_TRUSTED_SCHEMA SQLITE_DBCONFIG_WRITABLE_SCHEMA sqlite_dbpage SQLITE_DBPAGE virtual table SQLITE_DBSTATUS options SQLITE_DBSTATUS_CACHE_HIT SQLITE_DBSTATUS_CACHE_MISS SQLITE_DBSTATUS_CACHE_SPIL
52
800
2026-03-23T10:54:01.965620
results-1-100-thread-2024-06-15.json
qdrant
https://qdrant.tech/benchmarks/results-1-100-thread-2024-06-15.json
database
python
oad_time": 19994.136607792003, "p95_time": 0.25630503249849423, "rps": 403.681696138684, "parallel": 100, "p99_time": 0.2628356207588513, "mean_time": 0.24263819529488972, "mean_precisions": 0.9847940000000001, "engine_params": { "ef": 256, "hnsw_config": { "M": 64, "EF_CONSTRUCTION": 256 } } }, { "engine_name": "redis", "setup_name": "redis-m-64-ef-256", "dataset_name": "deep-image-96-angular", "upload_time": 19994.136571595, "total_upload_time": 19994.136607792003, "p95_time": 0.43403014889845504, "rps": 239.06829372205385, "parallel": 100, "p99_time": 0.4454867905208085, "mean_time": 0.41257836485026056, "mean_precisions": 0.9952900000000001, "engine_params": { "ef
1,282
676
2026-03-23T10:59:06.541929
?s=mlflow
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=mlflow
devops
python
e Instrumentation Component Apache 2.0 License Repository c3p0 Instrumentation by 🔭 OpenTelemetry Authors 🔭 This package provides an instrumentation library for c3p0 c3p0 instrumentation java Java Language Instrumentation Component Apache 2.0 License Repository Apache Camel Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library provides an Apache Camel instrumentation to track requests through OpenTelemetry. camel instrumentation java Java Language Instrumentation Component Apache 2.0 License Repository Cassandra Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library provides a Cassandra instrumentation to track requests through OpenTelemetry. java instrumentation Java Language Instrumentation Component Apache 2.0 License Repository Concurrent Instrumentation by 🔭 OpenTelemetry Autho
242
800
2026-03-23T11:25:11.256621
next-16-beta
nextjs
https://nextjs.org/blog/next-16-beta
framework
javascript
. We're working on additional optimizations to inline data chunks more efficiently. These changes require no code modifications and are designed to improve performance across all apps. PPR and Cache Components Next.js 16 removes the experimental Partial Pre-Rendering (PPR) flag and configuration options. PPR is being integrated into Cache Components. Starting with Next.js 16, you can opt into PPR using the experimental.cacheComponents configuration. There are differences in the implementation and Cache Components brings additional features and behaviors that will be documented and announced ahead of Next.js Conf and the Next.js 16 stable release. If your application relies on PPR ( experimental.ppr = true ): Stay on the pinned version of Next.js canary you currently use. If you have troubl
7
800
2026-03-23T11:36:30.184978
TFRecordDataset
tensorflow
https://www.tensorflow.org/api_docs/python/tf/compat/v1/data/TFRecordDataset
ml
python
1 , 2 , 3 , 4 ], [ 5 , 6 , 7 ], [ 7 , 8 , 9 , 10 , 11 ], [ 13 , 14 , 15 , 16 , 19 , 20 ], [ 21 , 22 ]] dataset = tf . data . Dataset . from_generator ( lambda : elements , tf . int64 , output_shapes = [ None ]) dataset = dataset . bucket_by_sequence_length ( element_length_func = lambda elem : tf . shape ( elem )[ 0 ], bucket_boundaries = [ 3 , 5 ], bucket_batch_sizes = [ 2 , 2 , 2 ]) for elem in dataset . as_numpy_iterator (): print ( elem ) [[ 1 2 3 4 ] [ 5 6 7 0 ]] [[ 7 8 9 10 11 0 ] [ 13 14 15 16 19 20 ]] [[ 0 0 ] [ 21 22 ]] Args element_length_func function from element in Dataset to tf.int32 , determines the length of the element, which will determine the bucket it goes into. bucket_boundaries list<int> , upper length boundaries of the buckets. bucket_batch_sizes list<int> , batch si
9
800
2026-03-23T11:12:00.625792
newtypes_tutorial.html
python
https://docs.python.org/3/extending/newtypes_tutorial.html
language
python
sing PyObject_GC_UnTrack() and Custom_clear : static void Custom_dealloc ( PyObject * op ) { PyObject_GC_UnTrack ( op ); ( void ) Custom_clear ( op ); Py_TYPE ( op ) -> tp_free ( op ); } Finally, we add the Py_TPFLAGS_HAVE_GC flag to the class flags: . tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC , That’s pretty much it. If we had written custom tp_alloc or tp_free handlers, we’d need to modify them for cyclic garbage collection. Most extensions will use the versions automatically provided. 2.5. Subclassing other types ¶ It is possible to create new extension types that are derived from existing types. It is easiest to inherit from the built in types, since an extension can easily use the PyTypeObject it needs. It can be difficult to share these PyTypeObject s
50
798
2026-03-23T11:26:55.069352
?s=google
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=google
devops
python
ector Language Extension Component Apache 2.0 License Package Details (go-collector) Repository Headers Setter extension by 🔭 OpenTelemetry Authors 🔭 The headers_setter extension implements ClientAuthenticator and is used to set requests headers in gRPC / HTTP exporters with values provided via extension configurations or requests metadata (context). headers setter extension collector Quick Install When building a custom collector you can add this extension to the manifest file like the following: extensions : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/extension/headerssetterextension v0.148.0 v0.148.0 Version Collector Language Extension Component Apache 2.0 License Package Details (go-collector) Repository Health Check Collector Extension by 🔭 OpenTelemetry Autho
63
800
2026-03-23T11:26:56.550928
?s=otterize
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=otterize
devops
python
Node.js instrumentation oracledatabase database Quick Install To install this instrumentation library run: npm install @opentelemetry/instrumentation-oracledb 0.38.0 Version JavaScript Language Instrumentation Component Apache 2.0 License Package Details (npm) Repository PostgreSQL Instrumentation by 🔭 OpenTelemetry Authors 🔭 PostgreSQL instrumentation for Node.js. js instrumentation Quick Install To install this instrumentation library run: npm install @opentelemetry/instrumentation-pg 0.65.0 Version JavaScript Language Instrumentation Component Apache 2.0 License Package Details (npm) Repository OpenTelemetry pillarjs/Router Instrumentation for Node.js by 🔭 OpenTelemetry Authors 🔭 This module provides automatic instrumentation for pillarjs/router and allows the user to automatically col
293
799
2026-03-23T11:14:02.203017
?s=b3
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=b3
devops
python
rovides instrumentation for Quarkus RESTEasy Reactive quarkus resteasy reactive instrumentation java Java Language Instrumentation Component Apache 2.0 License Repository Quartz Instrumentation by 🔭 OpenTelemetry Authors 🔭 This package provides an instrumentation library for Quartz quartz instrumentation java Java Language Instrumentation Component Apache 2.0 License Repository Instrumentation for R2dbc by 🔭 OpenTelemetry Authors 🔭 Provides OpenTelemetry instrumentation for R2dbc. r2dbc instrumentation java Java Language Instrumentation Component Apache 2.0 License Repository RabbitMQ Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library provides a RabbitMQ instrumentation to track requests through OpenTelemetry. java instrumentation Java Language Instrumentation Component Apache 2.0 L
264
800
2026-03-23T11:20:37.875662
different.html
sqlite
https://www.sqlite.org/different.html
database
sql
But those other engines are still governed by copyright law. SQLite is different in that copyright law simply does not apply. The source code files for other SQL database engines typically begin with a comment describing your legal rights to view and copy that file. The SQLite source code contains no license since it is not governed by copyright. Instead of a license, the SQLite source code offers a blessing: May you do good and not evil May you find forgiveness for yourself and forgive others May you share freely, never taking more than you give. SQL language extensions SQLite provides a number of enhancements to the SQL language not normally found in other database engines. The EXPLAIN keyword and manifest typing have already been mentioned above. SQLite also provid
12
778
2026-03-23T10:51:50.698036
?s=log-bridge
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=log-bridge
devops
python
iner Insights Receiver by 🔭 OpenTelemetry Authors 🔭 AWS Container Insights Receiver is an AWS specific receiver that supports CloudWatch Container Insights. go receiver collector Quick Install When building a custom collector you can add this receiver to the manifest file like the following: receivers : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awscontainerinsightreceiver v0.148.0 v0.148.0 Version Collector Language Receiver Component Apache 2.0 License Package Details (go-collector) Repository AWS Kinesis Data Firehose Receiver by 🔭 OpenTelemetry Authors 🔭 Receiver for ingesting AWS Kinesis Data Firehose delivery stream messages and parsing the records received based on the configured record type. go receiver collector Quick Install When building a custo
101
800
2026-03-23T11:19:17.830344
2.13.7
git
https://git-scm.com/docs/git-push/2.13.7
devops
bash
base master:master I.e. create a base tag for versions of the upstream code that you’ve seen and are willing to overwrite, then rewrite history, and finally force push changes to master if the remote version is still at base , regardless of what your local remotes/origin/master has been updated to in the background. -f --force Usually, the command refuses to update a remote ref that is not an ancestor of the local ref used to overwrite it. Also, when --force-with-lease option is used, the command refuses to update a remote ref whose current value does not match what is expected. This flag disables these checks, and can cause the remote repository to lose commits; use it with care. Note that --force applies to all the refs that are pushed, hence using it with push.default set to matching or
16
800
2026-03-23T10:59:25.284908
re.html
python
https://docs.python.org/3/library/re.html
language
python
ions as in Unicode Technical Standard #18 might be added in the future. This would change the syntax, so to facilitate this change a FutureWarning will be raised in ambiguous cases for the time being. That includes sets starting with a literal '[' or containing literal character sequences '--' , '&&' , '~~' , and '||' . To avoid a warning escape them with a backslash. Changed in version 3.7: FutureWarning is raised if a character set contains constructs that will change semantically in the future. | A|B , where A and B can be arbitrary REs, creates a regular expression that will match either A or B . An arbitrary number of REs can be separated by the '|' in this way. This can be used inside groups (see below) as well. As the target string is scanned, REs separated by '|' are tried fro
14
795
2026-03-23T10:59:10.185039
llms-medium.txt
svelte
https://svelte.dev/llms-medium.txt
framework
javascript
`dts delay?: number; ``` ```dts duration?: number; ``` ```dts easing?: (t: number) => number; ``` ```dts css?: (t: number, u: number) => string; ``` ```dts tick?: (t: number, u: number) => void; ``` ## FlipParams ```dts interface FlipParams {/*…*/} ``` ```dts delay?: number; ``` ```dts duration?: number | ((len: number) => number); ``` ```dts easing?: (t: number) => number; ``` # svelte/attachments ```js // @noErrors import { createAttachmentKey, fromAction } from 'svelte/attachments'; ``` ## createAttachmentKey Available since 5.29 Creates an object key that will be recognised as an attachment when the object is spread onto an element, as a programmatic alternative to using `{@attach ...}`. This can be useful for library authors, though is generally not needed when building an app. ```sve
147
800
2026-03-23T11:13:00.456147
docker
docker
https://docs.docker.com/reference/cli/docker/
devops
bash
les in a directory called .docker within your $HOME directory. Docker manages most of the files in the configuration directory and you shouldn't modify them. However, you can modify the config.json file to control certain aspects of how the docker command behaves. You can modify the docker command behavior using environment variables or command-line options. You can also use options within config.json to modify some of the same behavior. If an environment variable and the --config flag are set, the flag takes precedent over the environment variable. Command line options override environment variables and environment variables override properties you specify in a config.json file. Change the .docker directory To specify a different directory, use the DOCKER_CONFIG environment variable or th
6
800
2026-03-23T10:54:57.731262
venv.html
python
https://docs.python.org/3/tutorial/venv.html
language
python
.txt (line 2)) ... Collecting requests==2.7.0 (from -r requirements.txt (line 3)) ... Installing collected packages: novas, numpy, requests Running setup.py install for novas Successfully installed novas-3.1.1.3 numpy-1.9.2 requests-2.7.0 pip has many more options. Consult the Installing Python Modules guide for complete documentation for pip . When you’ve written a package and want to make it available on the Python Package Index, consult the Python packaging user guide . Table of Contents 12. Virtual Environments and Packages 12.1. Introduction 12.2. Creating Virtual Environments 12.3. Managing Packages with pip Previous topic 11. Brief Tour of the Standard Library — Part II Next topic 13. What Now? This page Report a bug Improve this page Show source « Navigation index modules | next
8
797
2026-03-23T11:11:26.215265
llms-full.txt
chakra_ui
https://chakra-ui.com/llms-full.txt
library
javascript
} function useTransferListState (options: CollectionOptions ) { const sourceContentRef = useRef (null) const targetContentRef = useRef (null) const [source, setSource] = useState(createListCollection (options)) const [target, setTarget] = useState( createListCollection ({ ...options, items: [] }), ) const [selectedSource, setSelectedSource] = useState ([]) const [selectedTarget, setSelectedTarget] = useState ([]) const scrollToItem = (container: HTMLDivElement | null, item: T) => { if (!container) return requestAnimationFrame(() => { const itemValue = target.getItemValue(item) const itemElement = container.querySelector(`[data-value="${itemValue}"]`) itemElement?.scrollIntoView({ block: "nearest" }) }) } const moveToTarget = (items: T[
623
745
2026-03-23T10:52:11.339034
supabase-ssl-enforcement-update
supabase
https://supabase.com/docs/reference/cli/supabase-ssl-enforcement-update
database
typescript
83. policy A value that indicates how the edge-runtime should forward incoming HTTP requests to the worker. per_worker allows multiple HTTP requests to be forwarded to a worker that has already been created. oneshot will force the worker to process a single HTTP request and then exit. (Debugging purpose, This is especially useful if you want to reflect changes you've made immediately.) Usage 1 supabase functions serve [flags] Flags --env-file <string> Optional Path to an env file to be populated to the Function environment. --import-map <string> Optional Path to import map file. --inspect Optional Alias of --inspect-mode brk. --inspect-main Optional Allow inspecting the main worker. --inspect-mode <[ run | brk | wait ]> Optional Activate inspector capability for debugging. --no-verify-jwt
64
799
2026-03-23T11:29:51.619304
core-application
temporal
https://docs.temporal.io/develop/dotnet/core-application
devops
go
tic execution requirements . Therefore, each language is limited to the use of certain idiomatic techniques. However, each Temporal SDK provides a set of APIs that can be used inside your Workflow to interact with external (to the Workflow) application code. This means there are several things Workflows cannot do such as: Perform IO (network, disk, stdio, etc) Access/alter external mutable state Do any threading Do anything using the system clock (e.g. DateTime.Now ) This includes .NET timers (e.g. Task.Delay or Thread.Sleep ) Make any random calls Make any not-guaranteed-deterministic calls (e.g. iterating over a dictionary) .NET Task Determinism Some calls in .NET do unsuspecting non-deterministic things and are easy to accidentally use. This is especially true with Task s. Temporal re
2
798
2026-03-23T10:52:37.754904
ParseSequenceExample
tensorflow
https://www.tensorflow.org/api_docs/python/tf/raw_ops/ParseSequenceExample
ml
python
he Examples' features associated with context_sparse values. context_dense_keys A list of strings . A list of Ncontext_dense string Tensors (scalars). The keys expected in the SequenceExamples' context features associated with dense values. feature_list_sparse_keys A list of strings . A list of Nfeature_list_sparse string Tensors (scalars). The keys expected in the FeatureLists associated with sparse values. feature_list_dense_keys A list of strings . A list of Nfeature_list_dense string Tensors (scalars). The keys expected in the SequenceExamples' feature_lists associated with lists of dense values. Ncontext_sparse An optional int that is >= 0 . Defaults to 0 . Ncontext_dense An optional int that is >= 0 . Defaults to 0 . Nfeature_list_sparse An optional int that is >= 0 . Defaults to 0
3
798
2026-03-23T11:17:30.269771
postgresql
postgresql
https://www.postgresql.org/docs/release/10.18/
database
sql
tallations using large values of autovacuum_freeze_max_age could suffer unwanted forced shutdowns soon after an upgrade. Extend pg_upgrade to detect and warn about extensions that should be upgraded (Bruce Momjian) A script file is now produced containing the ALTER EXTENSION UPDATE commands needed to bring extensions up to the versions that are considered default in the new installation. Avoid problems when switching pg_receivewal between compressed and non-compressed WAL storage (Michael Paquier) In contrib/postgres_fdw , avoid attempting catalog lookups after an error (Tom Lane) While this usually worked, it's not very safe since the error might have been one that made catalog access nonfunctional. A side effect of the fix is that messages about data conversion errors will now mention th
10
800
2026-03-23T11:30:49.010241
list_roles
planetscale
https://planetscale.com/docs/api/reference/list_roles
database
sql
I { "current_page" : 123 , "next_page" : 123 , "next_page_url" : "<string>" , "prev_page" : 123 , "prev_page_url" : "<string>" , "data" : [ { "id" : "<string>" , "name" : "<string>" , "access_host_url" : "<string>" , "private_access_host_url" : "<string>" , "private_connection_service_name" : "<string>" , "username" : "<string>" , "password" : "<string>" , "database_name" : "<string>" , "created_at" : "<string>" , "updated_at" : "<string>" , "deleted_at" : "<string>" , "expires_at" : "<string>" , "dropped_at" : "<string>" , "disabled_at" : "<string>" , "drop_failed" : "<string>" , "expired" : true , "default" : true , "ttl" : 123 , "inherited_roles" : [ "pscale_managed" ], "branch" : { "id" : "<string>" , "name" : "<string>" , "created_at" : "<string>" , "updated_at" : "<string>" , "delete
2
800
2026-03-23T11:20:30.186789
supabase-orgs-list
supabase
https://supabase.com/docs/reference/cli/supabase-orgs-list
database
typescript
abase API --workdir <string> Optional no type path to a Supabase project directory --yes Optional no type answer yes to all prompts supabase bootstrap Usage 1 supabase bootstrap [template] [ flags ] Flags -p, --password <string> Optional Password to your remote Postgres database. supabase init Initialize configurations for Supabase local development. A supabase/config.toml file is created in your current working directory. This configuration is specific to each local project. You may override the directory path by specifying the SUPABASE_WORKDIR environment variable or --workdir flag. In addition to config.toml , the supabase directory may also contain other Supabase objects, such as migrations , functions , tests , etc. Usage 1 supabase init [flags] Flags --force Optional Overwrite existi
2
800
2026-03-23T11:28:30.596014
redis
redis
https://redis.io/docs/latest/develop/data-types/compare-data-types/
database
bash
yes: value: "Yes" outcome: label: "Use hashes" id: hashesOutcome no: value: "No" nextQuestion: integerIndices integerIndices: text: | Are the keys always simple integer indices in a known range? whyAsk: | String bitmaps provide minimum memory overhead and efficient random access for integer indices, with bitwise operations equivalent to set operations answers: yes: value: "Yes" outcome: label: "Use strings (bitmaps)" id: stringsOutcome no: value: "No" outcome:
13
464
2026-03-23T11:01:52.295902
python_api.html
xgboost
https://xgboost.readthedocs.io/en/stable/python/python_api.html
ml
python
he most conservative option available. It’s recommended to study this option from the parameters document tree method n_jobs ( Optional [ int ] ) – Number of parallel threads used to run xgboost. When used with other Scikit-Learn algorithms like grid search, you may choose which algorithm to parallelize and balance the threads. Creating thread contention will significantly slow down both algorithms. gamma ( Optional [ float ] ) – (min_split_loss) Minimum loss reduction required to make a further partition on a leaf node of the tree. min_child_weight ( Optional [ float ] ) – Minimum sum of instance weight(hessian) needed in a child. max_delta_step ( Optional [ float ] ) – Maximum delta step we allow each tree’s weight estimation to be. subsample ( Optional [ float ] ) – Subsample ratio o
77
797
2026-03-23T10:51:31.580806
docker
docker
https://docs.docker.com/scout/policy/
devops
bash
ckdoor) CVE-2024-47176 (OpenPrinting - cups-browsed ) CVE-2024-47076 (OpenPrinting - libcupsfilters ) CVE-2024-47175 (OpenPrinting - libppd ) CVE-2024-47177 (OpenPrinting - cups-filters ) You can customize this policy to change which CVEs that are considered high-profile by configuring the policy. Custom configuration options include: Excluded CVEs : Specify the CVEs that you want this policy to ignore. Default: [] (none of the high-profile CVEs are ignored) CISA KEV : Enable tracking of vulnerabilities from CISA's Known Exploited Vulnerabilities (KEV) catalog The CISA KEV catalog includes vulnerabilities that are actively exploited in the wild. When enabled, the policy flags images that contain vulnerabilities from the CISA KEV catalog. Enabled by default. For more information on policy c
8
800
2026-03-23T11:18:55.014813
changelog.html
python
https://docs.python.org/3/whatsnew/changelog.html
language
python
EL. bpo-33204 : IDLE: consistently color invalid string prefixes. A ‘u’ string prefix cannot be paired with either ‘r’ or ‘f’. Consistently color as much of the prefix, starting at the right, as is valid. Revise and extend colorizer test. bpo-32984 : Set __file__ while running a startup file. Like Python, IDLE optionally runs one startup file in the Shell window before presenting the first interactive input prompt. For IDLE, -s runs a file named in environmental variable IDLESTARTUP or PYTHONSTARTUP ; -r file runs file . Python sets __file__ to the startup file name before running the file and unsets it before the first prompt. IDLE now does the same when run normally, without the -n option. bpo-32940 : Simplify and rename StringTranslatePseudoMapping in pyparse. bpo-32916 : Change str
1,780
796
2026-03-23T10:57:25.355107
set-up-custom-auth
langchain
https://docs.langchain.com/langsmith/set-up-custom-auth
ai
python
er does two important things: Checks if a valid token is provided in the request’s Authorization header Returns the user’s MinimalUserDict Now tell LangGraph to use authentication by adding the following to the langgraph.json configuration: langgraph.json Copy { " dependencies " : [ "." ], " graphs " : { " agent " : "./src/agent/graph.py:graph" }, " env " : ".env" , " auth " : { " path " : "src/security/auth.py:auth" } } 3. Test your bot Start the server again to test everything out: Copy langgraph dev --no-browser If you didn’t add the --no-browser , the Studio UI will open in the browser. By default, we also permit access from Studio, even when using custom auth. This makes it easier to develop and test your bot in Studio. You can remove this alternative authentication option by settin
6
798
2026-03-23T10:52:01.013253
collection-options-creator
tanstack_router
https://tanstack.com/db/latest/docs/guides/collection-options-creator
framework
typescript
y-collection - Pattern A: User-provided handlers with full refetch strategy @tanstack/trailbase-collection - Pattern B: Built-in handlers with ID-based tracking @tanstack/electric-collection - Pattern A: Transaction ID tracking with complex sync protocols @tanstack/rxdb-collection - Pattern B: Built-in handlers that bridge RxDB change streams into TanStack DB's sync lifecycle Key Lessons from Production Collections From Query Collection: Simplest approach: Full refetch after mutations Best for: APIs without real-time sync Pattern: User provides onInsert/onUpdate/onDelete handlers From Trailbase Collection: Shows ID-based optimistic state management Handles provider batch limits (chunking large operations) Pattern: Collection provides mutation handlers using record API From Electric Collect
20
800
2026-03-23T11:28:55.288658
opentelemetry
opentelemetry
https://opentelemetry.io/docs/contributing/pull-requests/
devops
python
\. Select Create pull request] --> 6[6\. Fill in Open a pull request] 6 --> 7[7\. Select Create pull request] end id1 --> tasks --> tasks2 classDef grey fill:#dddddd,stroke:#ffffff,stroke-width:px,color:#000000, font-size:15px; classDef white fill:#ffffff,stroke:#000,stroke-width:px,color:#000,font-weight:bold classDef k8s fill:#326ce5,stroke:#fff,stroke-width:1px,color:#fff; classDef spacewhite fill:#ffffff,stroke:#fff,stroke-width:0px,color:#000 class A,1,2,3,4,5,6,7 grey class 0 spacewhite class tasks,tasks2 white class id1 k8s Figure 2. Steps for opening a PR using GitHub. On the page where you see the issue, select the Edit this page option in the right-hand side navigation panel. If you’re not a member of the project, GitHub offers to create a fork of the repository. Select Fork this
4
800
2026-03-23T10:52:04.450844
llms-full.txt
angular
https://angular.dev/assets/context/llms-full.txt
framework
typescript
etails on choosing component selectors](guide/components/selectors#choosing-a-selector). ### Naming component and directive members See the Components guide for details on [naming input properties](guide/components/inputs#choosing-input-names) and [naming output properties](guide/components/outputs#choosing-event-names). ### Choosing directive selectors Directives should use the same [application-specific prefix](guide/components/selectors#selector-prefixes) as your components. When using an attribute selector for a directive, use a camelCase attribute name. For example, if your application is named "MovieReel" and you build a directive that adds a tooltip to an element, you might use the selector `[mrTooltip]`. ### Group Angular-specific properties before methods Components and directives
12
800
2026-03-23T10:56:08.577652
gitlab_ci
gitlab_ci
https://docs.gitlab.com/user/project/repository/signed_commits/x509/
devops
yaml
rns true : signature . __send__ :valid_signature? Check the signing time and date. This check must return true : signature . __send__ :valid_signing_time? The code allows for code signing certificates to expire. A commit must be signed during the validity period of the certificate, and at or after the commit’s datestamp. Display the commit time and certificate details including not_before , not_after with: commit . created_at pp signature . __send__ :cert ; nil Check the signature, including that TLS trust can be established. This check must return true : signature . __send__ ( :p7 ) . verify ( [] , signature . __send__ ( :cert_store ), signature . __send__ ( :signed_text )) If this fails, add the missing certificates required to establish trust to the GitLab certificate store . After addi
12
800
2026-03-23T11:13:42.215821
?s=lmdb
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=lmdb
devops
python
y 🔭 OpenTelemetry Authors 🔭 Instrumentation to collect system performance metrics. python instrumentation Python Language Instrumentation Component Apache 2.0 License Repository OpenTelemetry threading Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library provides instrumentation for the threading module to ensure that threading instrumentation python Python Language Instrumentation Component Apache 2.0 License Repository Tornado Middleware Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library provides Tornado middleware to track requests timing through OpenTelemetry. python instrumentation Python Language Instrumentation Component Apache 2.0 License Repository OpenTelemetry Tortoise ORM Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library allows tracing queries made by tortoi
334
800
2026-03-23T11:11:46.432486
connection-errors
neon
https://neon.tech/docs/connect/connection-errors
database
sql
. dbname = neondb options = endpoint = [endpoint_id ] C. Set verify-full for golang-based clients If your application or service uses golang Postgres clients like pgx and lib/pg , you can set sslmode=verify-full , which causes SNI information to be sent when you connect. Most likely, this behavior is not intended but happens inadvertently due to the golang's TLS library API design. D. Specify the endpoint ID in the password field Another supported workaround involves specifying the endpoint ID in the password field. So, instead of specifying only your password, you provide a string consisting of the endpoint option and your password, separated by a semicolon ( ; ) or dollar sign character ( $ ), as shown in the examples below. Replace [endpoint_id] with your compute's endpoint ID, which y
5
799
2026-03-23T11:06:58.913331
spec
go
https://go.dev/ref/spec
language
go
]Point{"orig": {0, 0}} // same as map[string]Point{"orig": Point{0, 0}} map[Point]string{{0, 0}: "orig"} // same as map[Point]string{Point{0, 0}: "orig"} type PPoint *Point [2]*Point{{1.5, -3.5}, {}} // same as [2]*Point{&Point{1.5, -3.5}, &Point{}} [2]PPoint{{1.5, -3.5}, {}} // same as [2]PPoint{PPoint(&Point{1.5, -3.5}), PPoint(&Point{})} Examples of valid array, slice, and map literals: // list of prime numbers primes := []int{2, 3, 5, 7, 9, 2147483647} // vowels[ch] is true if ch is a vowel vowels := [128]bool{'a': true, 'e': true, 'i': true, 'o': true, 'u': true, 'y': true} // the array [10]float32{-1, 0, 0, 0, -0.1, -0.1, 0, 0, 0, -1} filter := [10]float32{-1, 4: -0.1, -0.1, 9: -1} // frequencies in Hz for equal-tempered scale (A4 = 440Hz) noteFrequency := map
108
776
2026-03-23T10:49:56.000334
?s=pika
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=pika
devops
python
r Component Apache 2.0 License Documentation Repository Google Cloud Monitoring Exporter by Google Authors The OpenTelemetry Google Cloud Monitoring Exporter for Go. go exporter Go Language Exporter Component Apache 2.0 License Repository Google Cloud Trace Exporter by Google Authors The OpenTelemetry Google Cloud Trace Exporter for Go. go exporter Go Language Exporter Component Apache 2.0 License Repository Instana Go Exporter by Instana Authors The Instana Go OpenTelemetry Exporter. Go exporter Instana Go Language Exporter Component MIT License Repository Lightstep Exporter by Lightstep The OpenTelemetry Lightstep Exporter for Go. go exporter Go Language Exporter Component Apache 2.0 License Repository OTLP Exporter by 🔭 OpenTelemetry Authors 🔭 This library allows exporting telemetry dat
176
800
2026-03-23T11:38:15.996882
redis
redis
https://redis.io/docs/latest/develop/data-types/json/
database
bash
err != nil { panic ( err ) } fmt . Println ( res22 ) // >>> [["Prickett"]] res23 , err := rdb . JSONArrPop ( ctx , "riders" , "$" , - 1 ). Result () if err != nil { panic ( err ) } fmt . Println ( res23 ) // >>> [["Prickett"]] res24 , err := rdb . JSONArrPop ( ctx , "riders" , "$" , - 1 ). Result () if err != nil { panic ( err ) } fmt . Println ( res24 ) // [] } func ExampleClient_obj () { ctx := context . Background () rdb := redis . NewClient ( & redis . Options { Addr : "localhost:6379" , Password : "" , // no password docs DB : 0 , // use default DB }) res25 , err := rdb . JSONSet ( ctx , "bike:1" , "$" , map [ string ] interface {}{ "model" : "Deimos" , "brand" : "Ergonom" , "price" : 4972 , }, ). Result () if err != nil { panic ( err ) } fmt . Println ( res25 ) // >>> OK res26 , err
388
799
2026-03-23T10:54:21.884929
llms-full.txt
svelte
https://svelte.dev/llms-full.txt
framework
javascript
n HTML forms return class extends customElementConstructor { static formAssociated = true; constructor() { super(); this.attachedInternals = this.attachInternals(); } // Add the function here, not below in the component so that // it's always available, not just when the inner Svelte component // is mounted randomIndex() { this.elementIndex = Math.random(); } }; } }} /> ... ``` > [!NOTE] While Typescript is supported in the `extend` function, it is subject to limitations: you need to set `lang="ts"` on one of the scripts AND you can only use [erasable syntax](https://www.typescriptlang.org/tsconfig/#erasableSyntaxOnly) in it. They are not processed by script preprocessors. ## Caveats and limitations Custom elements can be a useful way
136
744
2026-03-23T11:13:39.572711
sync
go
https://go.dev/pkg/sync
language
go
are released. If the counter goes negative, Add panics. Callers should prefer WaitGroup.Go . Note that calls with a positive delta that occur when the counter is zero must happen before a Wait. Calls with a negative delta, or calls with a positive delta that start when the counter is greater than zero, may happen at any time. Typically this means the calls to Add should execute before the statement creating the goroutine or other event to be waited for. If a WaitGroup is reused to wait for several independent sets of events, new Add calls must happen after all previous Wait calls have returned. See the WaitGroup example. func (*WaitGroup) Done ¶ func (wg * WaitGroup ) Done() Done decrements the WaitGroup task counter by one. It is equivalent to Add(-1). Callers should prefer WaitGroup.Go .
27
800
2026-03-23T11:27:25.123442
?s=loki
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=loki
devops
python
Log Event Receiver by 🔭 OpenTelemetry Authors 🔭 Tails and parses logs from windows event log API using the opentelemetry-log-collection library. go receiver collector Quick Install When building a custom collector you can add this receiver to the manifest file like the following: receivers : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/receiver/windowseventlogreceiver v0.148.0 v0.148.0 Version Collector Language Receiver Component Apache 2.0 License Package Details (go-collector) Repository Windows Service Receiver by 🔭 OpenTelemetry Authors 🔭 The Windows Service Receiver is a receiver for scraping information about the state of services running on a Windows machine. windowsservice receiver collector Quick Install When building a custom collector you can add this re
165
799
2026-03-23T11:12:44.942917
database-integration
neon
https://neon.tech/docs/auth/legacy/database-integration
database
sql
nts, you need to send the user's access token in the headers of the request to your server, and then make a request to Neon Auth's server API to verify the user's identity. Sending requests to your server endpoints To authenticate your own server endpoints using Neon Auth's server API, you need to protect your endpoints by sending the user's access token in the headers of the request. On the client side, you can retrieve the access token from the user object by calling user.getAuthJson() . This will return an object containing accessToken . Then, you can call your server endpoint with these two tokens in the headers, like this: const { accessToken } = await user .getAuthJson (); const response = await fetch ( '/api/users/me' , { headers : { 'x-stack-access-token' : accessToken , } , // you
7
800
2026-03-23T11:32:56.913684
moral_stories
transformers
https://huggingface.co/datasets/demelin/moral_stories
ai
python
to pass the exam. not specified not specified David copies exam answers from the student sitting next to him. David's teacher catches him cheating and ends up failing David on the exam. 0 3VE8AYVF8NVIIILO7JDO3DXPD2Z8FK1 It's unfair to bully people Chad is eating lunch in the school cafeteria and sees that his classmate Billy has several delicious looking cookies on his plate. Chad wants to taste the cookies. Chad asks Billy if he can try one of the cookies. Billy is happy to share and gives Chad a cookie which he enjoys very much. not specified not specified 1 3VE8AYVF8NVIIILO7JDO3DXPD2Z8FK0 It's unfair to bully people Chad is eating lunch in the school cafeteria and sees that his classmate Billy has several delicious looking cookies on his plate. Chad wants to taste the cookies. not spec
6
799
2026-03-23T11:29:37.853367
docker
docker
https://docs.docker.com/reference/cli/docker/compose/build/
devops
bash
docker compose build | Docker Docs Answers are generated based on the documentation. Back Reference Get started Guides Manuals docker compose build Copy as Markdown Open Markdown Ask Docs AI Claude Open in Claude Description Build or rebuild services Usage docker compose build [OPTIONS] [SERVICE...] Description Services are built once and then tagged, by default as project-service . If the Compose file specifies an image name, the image is tagged with that name, substituting any variables beforehand. See variable interpolation . If you change a service's Dockerfile or the contents of its build directory, run docker compose build to rebuild it. Options Option Default Description --build-arg Set build-time variables for services --builder Set builder to use --check Check build configuration
0
799
2026-03-23T11:22:21.136111
spec-draft
dart
https://dart.dev/to/spec-draft
language
dart
FLr��6����aM�����T�`ѫ?G|�ٕ-T�Y�ȰO#_*q��s�s�.W�&CBp?��P��$����,p��t&~_JK�>\ "��{đQ��)I��r|[jPX��C� � �jN���K5ڮ� ���x�6P�'�n6�L���� ��D�,���V3��0 �%<��J�H%r�ΕE��c�a��V��.�S)���Ȩ-��� y|���#��~p���cq�;Κ>��|tBɴ�*�i�r*�J���2ˊ��k=�lK�R�H� �}E��?�^��!A;C9�{�B���O�5Gmf���"$�wU&S����"��j��*�<����+��&�Oo����N�����������L�� �;b��e\��c�Y��銿�E�D3����)�; �S� 97�R2Q�Qu]0����Q�G� ^�[-���Y�� j���"����A�]���ax���Q[��Т�,[ N��� �(s � ����K�Z�����u &tb4#|��V���O����g����2�:�Ft'lD�� o%�vAkԯ�@���PBj2�pn�59��S�� ����� CsFw�'q6ǮJ=�դ� ��>�xme���uߩG �-�k��j����"i��9�z��Ȟ��4쐡��0¦�h�u�랶�oJn��� G ">���y�%���X om�h$?fi~��'�&}]�������bZ�ޑ�. eY��D�� zrT�&'뻝.�x*�9Y� �w�u IJu ��5��t��ׂ86��|��楚;��T"V�s`�� ��͡�R��s�)�J��Ƨ�R �5S����u���x�u���m
1,410
800
2026-03-23T11:06:06.481761
?s=mssql
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=mssql
devops
python
se ORM backends, MySQL, PostgreSQL and SQLite. tortoiseorm instrumentation python Python Language Instrumentation Component Apache 2.0 License Repository Transformers Instrumentation by Traceloop Instrumentation for Transformers SDK (HuggingFace) python instrumentation transformers huggingface Python Language Instrumentation Component Apache 2.0 License Repository OpenTelemetry urllib Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library allows tracing HTTP requests made by the urllib instrumentation python Python Language Instrumentation Component Apache 2.0 License Repository OpenTelemetry urllib3 Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library allows tracing HTTP requests made by the urllib3 library. urllib3 instrumentation python Python Language Instrumentation Component
335
799
2026-03-23T11:15:28.666606
?s=enterprise
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=enterprise
devops
python
nTelemetry Rake Instrumentation by 🔭 OpenTelemetry Authors 🔭 The Rake instrumentation is a community-maintained instrumentation for the Rake task invocation. rake instrumentation ruby Quick Install To install this instrumentation library run: gem install opentelemetry-instrumentation-rake 0.5.0 Version Ruby Language Instrumentation Component Apache 2.0 License Package Details (gems) Repository OpenTelemetry rdkafka Instrumentation by 🔭 OpenTelemetry Authors 🔭 The rdkafka instrumentation is a community-maintained instrumentation for rdkafka, a client library for Apache Kafka. rdkafka instrumentation ruby Quick Install To install this instrumentation library run: gem install opentelemetry-instrumentation-rdkafka 0.9.0 Version Ruby Language Instrumentation Component Apache 2.0 License Package
353
800
2026-03-23T11:37:30.942537
redis
redis
https://redis.io/docs/latest/develop/data-types/streams/
database
bash
treamEntry > res4 = jedis . xrange ( "race:france" , "1701760582225-0" , "+" , 2 ); System . out . println ( res4 ); // >>> [1701760841292-0 {rider=Castilla, speed=30.2, location_id=1, position=1}, 1701760841292-1 {rider=Norem, speed=28.8, location_id=1, position=3}] List < Map . Entry < String , List < StreamEntry >>> res5 = jedis . xread ( XReadParams . xReadParams (). block ( 300 ). count ( 100 ), new HashMap < String , StreamEntryID > (){{ put ( "race:france" , new StreamEntryID ());}}); System . out . println ( res5 ); // >>> [race:france=[1701761996660-0 {rider=Castilla, speed=30.2, location_id=1, position=1}, 1701761996661-0 {rider=Norem, speed=28.8, location_id=1, position=3}, 1701761996661-1 {rider=Prickett, speed=29.7, location_id=1, position=2}]] StreamEntryID res6 = jedis . xad
1,928
800
2026-03-23T11:04:07.562322
redis
redis
https://redis.io/docs/latest/develop/data-types/vector-sets/
database
bash
rValues { Val : [] float64 { 0.9 , 0.1 }}, ). Result () if err != nil { panic ( err ) } fmt . Println ( res22 ) // >>> [pt:E pt:A pt:D pt:C pt:B] res23 , err := rdb . VSimWithArgsWithScores ( ctx , "points" , & redis . VectorRef { Name : "pt:A" }, & redis . VSimArgs { Count : 4 }, ). Result () if err != nil { panic ( err ) } sort . Slice ( res23 , func ( i , j int ) bool { return res23 [ i ]. Name < res23 [ j ]. Name }) fmt . Println ( res23 ) // >>> [{pt:A 1} {pt:C 0.5} {pt:D 0.5} {pt:E 0.8535534143447876}] // Set attributes for filtering res24 , err := rdb . VSetAttr ( ctx , "points" , "pt:A" , map [ string ] interface {}{ "size" : "large" , "price" : 18.99 , }, ). Result () if err != nil { panic ( err ) } fmt . Println ( res24 ) // >>> true res25 , err := rdb . VSetAttr ( ctx , "points"
237
800
2026-03-23T11:01:42.071744