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=cgroupruntime | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=cgroupruntime | devops | python | elemetry-collector-contrib/processor/dnslookupprocessor v0.148.0 v0.148.0 Version Collector Language Processor Component Apache 2.0 License Package Details (go-collector) Repository Filter Collector Processor by 🔭 OpenTelemetry Authors 🔭 The Filter Processor for the OpenTelemetry Collector can be configured to includ... | 79 | 799 | 2026-03-23T11:32:52.650476 |
kubernetes | kubernetes | https://kubernetes.io/docs/tutorials/services/pods-and-endpoint-termination-flow/ | devops | yaml | s similar to this: NAME ADDRESSTYPE PORTS ENDPOINTS AGE nginx-service-6tjbr IPv4 80 10.12.1.199,10.12.1.201 22m You can see its status, and validate that there is one endpoint registered: kubectl get endpointslices -o json -l kubernetes.io/service-name = nginx-service The output is similar to this: { "addressType": "IP... | 3 | 625 | 2026-03-23T11:38:01.387409 |
do-s-and-don-ts.html | typescript | https://www.typescriptlang.org/docs/handbook/declaration-files/do-s-and-don-ts.html | language | javascript | mber ): void ; ❔ Why: It’s always legal for a callback to disregard a parameter, so there’s no need for the shorter overload. Providing a shorter callback first allows incorrectly-typed functions to be passed in because they match the first overload. Function Overloads Ordering ❌ Don’t put more general overloads before... | 4 | 800 | 2026-03-23T10:52:06.806650 |
quickstart | firebase | https://firebase.google.com/docs/firestore/quickstart | database | javascript | irestore * db = Firestore :: GetInstance (); AppDelegate . mm Unity using Firebase.Firestore ; using Firebase.Extensions ; FirebaseFirestore db = FirebaseFirestore . DefaultInstance ; Add data Cloud Firestore stores data in Documents, which are stored in Collections. Cloud Firestore creates collections and documents im... | 16 | 800 | 2026-03-23T11:11:46.739461 |
tree-shaking | expo | https://docs.expo.dev/guides/tree-shaking | mobile | javascript | nv . NODE_ENV === 'development' ) { console . log ( 'Hello in development' ) ; } if ( __DEV__ ) { console . log ( 'Another development-only conditional...' ) ; } 2 After constants folding takes place, the conditions can be evaluated statically: Post constants folding Copy if ( 'production' === 'development' ) { console... | 3 | 800 | 2026-03-23T11:09:13.082017 |
docker | docker | https://docs.docker.com/engine/install/rhel/ | devops | bash | tainerd.io-<version>.<arch>.rpm \ ./docker-ce-<version>.<arch>.rpm \ ./docker-ce-cli-<version>.<arch>.rpm \ ./docker-buildx-plugin-<version>.<arch>.rpm \ ./docker-compose-plugin-<version>.<arch>.rpm Docker is installed but not started. The docker group is created, but no users are added to the group. Start Docker Engin... | 7 | 800 | 2026-03-23T11:05:44.797681 |
kubernetes | kubernetes | https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/ | devops | yaml | an indicator of node health by having the Kubelet create and periodically renew a lease, named after the node, in the kube-node-lease namespace. If the lease expires, the node can be considered unhealthy. The lease is currently renewed every 10s, per KEP-0009. In the future, the lease renewal interval may be set based ... | 19 | 799 | 2026-03-23T11:09:08.802724 |
qdrant | qdrant | https://qdrant.tech/documentation/frameworks/langgraph/ | database | python | e = RetrievalMode . HYBRID , texts = [ "<SOME_KNOWLEDGE_TEXT>" , "<SOME_OTHER_TEXT>" , ... ] ) . as_retriever () retriever_tool = create_retriever_tool ( retriever , "retrieve_my_texts" , "Retrieve texts stored in the Qdrant collection" , ) import { QdrantVectorStore } from "@langchain/qdrant" ; import { OpenAIEmbeddin... | 2 | 800 | 2026-03-23T11:06:27.623318 |
?s=chromium | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=chromium | devops | python | on OpenTelemetry native standard, and sends it to OpenTelemetry Collector through HTTP protocol. lua instrumentation Lua Language Instrumentation Component Apache 2.0 License Repository Mojolicious Instrumentation by jjatria An OpenTelemetry plugin for Perl’s Mojolicious. perl instrumentation Perl Language Instrumentat... | 304 | 798 | 2026-03-23T11:39:23.237698 |
dart-cheatsheet | dart | https://dart.dev/resources/dart-cheatsheet | language | dart | blishers Security advisories Versioning Custom package repositories What not to commit Development expand_more JSON serialization Number representation Google APIs Multi-platform apps Command-line & server apps expand_more Overview Fetch data from the internet Libraries & packages Google Cloud Web apps expand_more Over... | 2 | 799 | 2026-03-23T11:01:46.216076 |
Destructuring | javascript | https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring | language | javascript | // "https", "developer.mozilla.org", "en-US/docs/Web/JavaScript"] const [, protocol, fullHost, fullPath] = parsedURL; return protocol; } console.log( parseProtocol("https://developer.mozilla.org/en-US/docs/Web/JavaScript"), ); // "https" Using array destructuring on any iterable Array destructuring calls the iterable p... | 13 | 780 | 2026-03-23T11:22:53.682735 |
?s=log-bridge | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=log-bridge | devops | python | on based on OpenTelemetry native standard, and sends it to OpenTelemetry Collector through HTTP protocol. lua instrumentation Lua Language Instrumentation Component Apache 2.0 License Repository Mojolicious Instrumentation by jjatria An OpenTelemetry plugin for Perl’s Mojolicious. perl instrumentation Perl Language Ins... | 304 | 800 | 2026-03-23T11:19:17.830623 |
llms-full.txt | pydantic_ai | https://ai.pydantic.dev/llms-full.txt | ai | python | utils.is_set(output_toolset) else self._output_toolset if output_toolset is not None: if self._prepare_output_tools: output_toolset = PreparedToolset(output_toolset, self._prepare_output_tools) toolset = CombinedToolset([output_toolset, toolset]) return toolset @property def toolsets(self) -> Sequence[AbstractToolset[A... | 1,088 | 652 | 2026-03-23T10:51:26.912326 |
?s=chromium | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=chromium | devops | python | # .net dotnet aspnet logs log logger logging source-generator high-performance-logging otel open-telemetry telemetry traces tracing metric metrics meter meters instrumentation instruments events distributed-traces distributed-tracing melt purview Quick Install To install this utilities run: dotnet add package Purview.T... | 380 | 800 | 2026-03-23T11:39:23.237757 |
?s=ibmmq | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=ibmmq | devops | python | .0 License Package Details (gems) Repository OpenTelemetry ActionMailer Instrumentation by 🔭 OpenTelemetry Authors 🔭 The ActionMailer instrumentation is a community-maintained instrumentation for the ActionMailer portion of the [Ruby on Rails][rails-home] web-application framework. action mailer instrumentation ruby ... | 338 | 800 | 2026-03-23T11:24:12.065829 |
mutations | tanstack_router | https://tanstack.com/db/latest/docs/guides/mutations | framework | typescript | nsaction object that you can use to track the mutation's lifecycle. Operation Handlers Operation handlers are functions you provide when creating a collection that handle persisting mutations to your backend. Each collection can define three optional handlers: onInsert , onUpdate , and onDelete . Handler Signature All ... | 17 | 795 | 2026-03-23T11:27:30.402291 |
?s=generator | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=generator | devops | python | .0 License Package Details (packagist) Repository OpenTelemetry Yii auto-instrumentation by 🔭 OpenTelemetry Authors 🔭 Instrumentation Library for Yii yii instrumentation php Quick Install To install this instrumentation library run: composer require open-telemetry/opentelemetry-auto-yii 0.2.0 Version PHP Language Ins... | 316 | 800 | 2026-03-23T11:11:58.624493 |
?s=database | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=database | devops | python | Registry | OpenTelemetry Registry Find libraries, plugins, integrations, and other useful tools for using and extending OpenTelemetry. Note The OpenTelemetry Registry allows you to search for instrumentation libraries, collector components, utilities, and other useful projects in the OpenTelemetry ecosystem. If you are... | 0 | 800 | 2026-03-23T11:28:28.459418 |
?s=ai | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=ai | 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 c... | 29 | 799 | 2026-03-23T11:24:07.879564 |
release-notes-1.22.0 | flutter | https://docs.flutter.dev/release/release-notes/release-notes-1.22.0 | mobile | dart | lutter_tools] remove advice about running sdkmanager directly in favor of directing to flutter.dev (cla: yes, tool, waiting for tree to go green) 65434 [devicelab] Remove ~/.gradle after each devicelab task run (cla: yes, team, waiting for tree to go green) 65435 [flutter_tools] alternate the name of the dill file used... | 368 | 800 | 2026-03-23T11:14:48.702696 |
2.42.1 | git | https://git-scm.com/docs/git-push/2.42.1 | devops | bash | unless you manually run git fetch origin-push . This method is of course entirely defeated by something that runs git fetch --all , in that case you’d need to either disable it or do something more tedious like: git fetch # update 'master' from remote git tag base master # mark our base point git rebase -i master # rew... | 19 | 782 | 2026-03-23T11:02:36.351256 |
?s=heroku | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=heroku | devops | python | 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 I... | 264 | 800 | 2026-03-23T11:39:27.847401 |
bind-this | svelte | https://svelte.dev/tutorial/svelte/bind-this | framework | javascript | url(./svelte-logo-mask.svg) 50% 50% no-repeat; mask-size: 60vmin; -webkit-mask: url(./svelte-logo-mask.svg) 50% 50% no-repeat; -webkit-mask-size: 60vmin; } </style> show text show editor | 5 | 186 | 2026-03-23T11:02:56.875822 |
api.html | express | https://expressjs.com/en/4x/api.html | framework | javascript | /:id/:page ' , function ( req , res , next ) { console . log ( ' although this matches ' ) next () }) app . get ( ' /user/:id/:page ' , function ( req , res ) { console . log ( ' and this matches too ' ) res . end () }) On GET /user/42/3 , the following is printed: CALLED ONLY ONCE with 42 CALLED ONLY ONCE with 3 altho... | 42 | 800 | 2026-03-23T10:56:21.301616 |
spec-draft | dart | https://dart.dev/to/spec-draft | language | dart | ?} �����~�� )\g��l�}��s$6��]~����G�XIk+�G&W�� ڨQ G�E�t}�,�K�M@�r���gl P7K�y��Cu,L"����8s�$��t$Vk۟�1`�jsf(!�+L��]y��(˞�ڪ;����.��r`�ּ�^�۟_�P�[_ֻ�9:}�)J�tҘ C���TlB9����q�����k8S endstream endobj 1267 0 obj << /Length 3336 /Filter /FlateDecode >> stream xڵZKs��ϯpnt��!^|$�;*�n���-�-�k%�!������~�$HC�g�RS � h4��uC��7��럦&�����... | 111 | 793 | 2026-03-23T11:06:06.479857 |
multicloud-kubernetes | terraform | https://developer.hashicorp.com/terraform/tutorials/networking/multicloud-kubernetes | devops | hcl | odes. Similarly to the EKS configuration, this configuration also outputs cluster attributes for Helm and Kubernetes provider authentication. Open the outputs.tf file to review them Once you have reviewed the configuration, log in to Azure using the Azure CLI. It will open a browser window and prompt you to log in ther... | 8 | 800 | 2026-03-23T10:52:53.116618 |
spec-draft | dart | https://dart.dev/to/spec-draft | language | dart | 8cr���]��Z;�?h.���R�s�T@�ᱲ�}?�;�p$�T��O��QFBY���j��sJT�N�� c�X:{���� )tE�h��334!�^��n A_���� C���F�Q�� ��vD�ޘ��7� ����һh+����Z�fUSD�dȆv�)�U�m v��RK�.��َӔ5<]��>�[= �������D��I���ݖ��~z�c:�A����� ��a ݉!]!��N �\�gZwV�n���G� �'3���������(�$�5��qv�;�E�6&�U�K��"���V� :��H.h�?��nYM��]����A~ќ���� Ű�]!��� ���D��7�/U��|�� a�� y͎�... | 1,183 | 800 | 2026-03-23T11:06:06.481435 |
llms-full.txt | pydantic_ai | https://ai.pydantic.dev/llms-full.txt | ai | python | ighlight_css: str = DEFAULT_HIGHLIGHT_CSS, infer_name: bool = True, direction: StateDiagramDirection | None = None ) -> str ``` Generate a diagram representing the graph as [mermaid](https://mermaid.js.org/) diagram. This method calls pydantic_graph.mermaid.generate_code. Parameters: | Name | Type | Description | Defau... | 5,462 | 545 | 2026-03-23T10:51:26.922338 |
config-file | terraform | https://developer.hashicorp.com/terraform/cli/config/config-file | devops | hcl | the intended version of a provider, and that authors can gradually upgrade to newer provider versions in a controlled manner. These version and checksum rules are inconvenient when developing a provider though, because we often want to try a test configuration against a development build of a provider that doesn't even... | 26 | 799 | 2026-03-23T11:04:56.521709 |
tauri | tauri | https://tauri.app/v1/api/js/shell/ | desktop | rust | rependOnceListener ( eventName : "error" | "close" , listener : fn ): Command Adds a one-time listener function for the event named eventName to the beginning of the listeners array. The next time eventName is triggered, this listener is removed, and then invoked. Returns a reference to the EventEmitter , so that calls... | 10 | 796 | 2026-03-23T11:12:29.792224 |
?s=arrow | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=arrow | devops | python | upports OpenTelemetry. go docker moby buildkit Go Language Application integration Component Apache-2.0 License Website Documentation Repository containerd native graduated by containerd Authors containerd supports OpenTelemetry tracing since v1.6.0. Tracing currently targets only gRPC calls. go containerd graduated Go... | 4 | 800 | 2026-03-23T11:33:43.172331 |
?s=high-performance-logging | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=high-performance-logging | devops | python | Kubernetes Operator by 🔭 OpenTelemetry Authors 🔭 A Kubernetes Operator for the OpenTelemetry Collector. kubernetes Collector Language Core Component Apache 2.0 License Repository opentelemetry-lua by yangxikun An unofficial implementation of OpenTelemetry in lua. lua instrumentation Lua Language Instrumentation Compo... | 365 | 799 | 2026-03-23T11:12:23.966973 |
?s=cassandra | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=cassandra | devops | python | r 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/googlecloudpubsubexporter v0.148.0 v0.148.0 Version Collector Language Exporter Component Apache 2.0 License Packag... | 38 | 800 | 2026-03-23T11:33:08.676386 |
TemplateRef | angular | https://angular.dev/api/core/TemplateRef | framework | typescript | TemplateRef • Angular Skip to main content menu menu API Roadmap Get involved API Reference CLI Reference Error Encyclopedia Extended Diagnostics Versioning and releases Version compatibility Update guide Configurations Migrations arrow_back API Reference Overview @angular/animations @angular/animations/browser @angula... | 0 | 800 | 2026-03-23T10:59:43.578900 |
roadmap | angular | https://angular.dev/roadmap | framework | typescript | rver-side rendering or prerendering. For this feature we depend on the event dispatch primitive (previously known as jsaction) that is running on Google.com. In Angular v19 we graduated event replay to stable and enabled it by default for all new projects. Completed in Q4 2024 Integrate Angular Language Service with Sc... | 12 | 800 | 2026-03-23T10:54:15.506658 |
2.38.0 | git | https://git-scm.com/docs/git-merge/2.38.0 | devops | bash | left behind in the old directory. If set to "true", directory rename detection is enabled, meaning that such new files will be moved into the new directory. If set to "conflict", a conflict will be reported for such paths. If merge.renames is false, merge.directoryRenames is ignored and treated as false. Defaults to "c... | 41 | 793 | 2026-03-23T11:16:53.647665 |
flask | flask | https://flask.palletsprojects.com/errorhandling/ | framework | python | -HTTP exceptions only return render_template ( "500_generic.html" , e = e ), 500 Error handlers still respect the exception class hierarchy. If you register handlers for both HTTPException and Exception , the Exception handler will not handle HTTPException subclasses because the HTTPException handler is more specific. ... | 10 | 800 | 2026-03-23T10:55:58.887901 |
add | terraform | https://developer.hashicorp.com/terraform/cloud-docs/registry/add | devops | hcl | er Credentials for more details. To enable no-code provisioning: Verify that the module meets the requirements for no-code provisioning . Click the module to view its details. Select Enable no-code provisioning from the Manage Module for Organization dropdown. Your module’s details page now has a No-Code Ready badge to... | 4 | 800 | 2026-03-23T11:16:32.390901 |
?s=thousandeyes | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=thousandeyes | devops | python | 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/opampextension v0.148.0 v0.148.0 Version Collector Language Extension Component Apache 2.0 License Packa... | 70 | 799 | 2026-03-23T11:23:10.675316 |
exceptions.html | python | https://docs.python.org/3/c-api/exceptions.html | language | python | ecursionError . Added in version 3.6: PyExc_ModuleNotFoundError . Added in version 3.11: PyExc_BaseExceptionGroup . OSError aliases ¶ The following are a compatibility aliases to PyExc_OSError . Changed in version 3.3: These aliases used to be separate exception types. C name Python name Notes PyObject * PyExc_Environm... | 56 | 799 | 2026-03-23T11:33:38.149308 |
spec-draft | dart | https://dart.dev/to/spec-draft | language | dart | ׁ� տ���T���� ����aX�8udk�:����X��0��������r��i���ٿ��4(ɣk(`�͜a/���'��'��+ �s���y~'p0� �7�շ���1 ��+��0��R��N[�h�]2p]~P�-�7��F�1���0�ð�[�b�p�����D�G#�� ,��s�4�(h'%�=���G���F�pE�w�i4��>�8og��+ݪ��<}\| *i�7@n�f � ������Л�2�u�@ ��k|�5�=��z��Q0�_y>�Ĕ����^���DY?�����#2< �c����}�o�� w�z;��jL��ay�$�,?|�|�ᐛѳ��Ui� CS�G<��^�hɜZ2 f�m... | 1,242 | 800 | 2026-03-23T11:06:06.481521 |
native-image | electron | https://www.electronjs.org/docs/latest/api/native-image | desktop | javascript | olean - Whether the image is empty. image.getSize([scaleFactor]) scaleFactor Number (optional) - Defaults to 1.0. Returns Size . If scaleFactor is passed, this will return the size corresponding to the image representation most closely matching the passed value. image.setTemplateImage(option) option boolean Marks the i... | 11 | 790 | 2026-03-23T10:51:24.146778 |
changelog.html | python | https://docs.python.org/3/whatsnew/changelog.html | language | python | alcobjsize to calculate size of PyUnicode structs. sys.getsizeof() may return different size when string has UTF-8 memory. gh-90473 : WASI does not have a chmod(2) syscall. os.chmod() is now a dummy function on WASI. Skip all tests that depend on working os.chmod() . gh-90473 : Skip tests on WASI that require symlinks ... | 899 | 800 | 2026-03-23T10:57:25.353873 |
2.2.html | python | https://docs.python.org/3/whatsnew/2.2.html | language | python | officially deprecated. Two new wrapper functions, PyOS_snprintf() and PyOS_vsnprintf() were added to provide cross-platform implementations for the relatively new snprintf() and vsnprintf() C lib APIs. In contrast to the standard sprintf() and vsprintf() functions, the Python versions check the bounds of the buffer use... | 58 | 796 | 2026-03-23T11:22:20.676571 |
tfe-provider-run-triggers | terraform | https://developer.hashicorp.com/terraform/tutorials/automation/tfe-provider-run-triggers | devops | hcl | r respective workspaces. Update the email address for all the csv files in the assets directory. The following command will replace the existing email address for all files with your email. Replace EMAIL_ADDRESS with your email address. This email address must already be a user in your HCP Terraform organization. Alter... | 9 | 799 | 2026-03-23T11:06:47.859584 |
redis | redis | https://redis.io/docs/latest/commands/cluster-forget/ | database | bash | with Redis 7.2.0, the ban-list is included in cluster gossip ping/pong messages. This means that CLUSTER FORGET doesn't need to be sent to all nodes in a cluster. You can run the command on one or more nodes, after which it will be propagated to the rest of the nodes in most cases. Details on why the ban-list is needed... | 4 | 800 | 2026-03-23T11:38:01.418333 |
llms-components.txt | chakra_ui | https://chakra-ui.com/llms-components.txt | library | javascript | ers submit in the edit mode: - "enter" - Trigger submit when the enter key is pressed - "blur" - Trigger submit when the editable is blurred - "none" - No action will trigger submit. You need to use the submit button - "both" - Pressing `Enter` and blurring the input will trigger submit | | colorPalette | gray | `'gray... | 374 | 800 | 2026-03-23T10:52:18.208848 |
app | electron | https://www.electronjs.org/docs/latest/api/app | desktop | javascript | n-created' 'second-instance' Methods quit exit relaunch isReady whenReady focus hide isHidden show setAppLogsPath getAppPath getPath getFileIcon setPath getVersion getName setName getLocale getLocaleCountryCode getSystemLocale getPreferredSystemLanguages addRecentDocument clearRecentDocuments getRecentDocuments setAsDe... | 81 | 800 | 2026-03-23T10:50:00.328347 |
text-to-speech | tanstack_start | https://tanstack.com/ai/latest/docs/guides/text-to-speech | framework | typescript | ob(result.audio) const bytes = new Uint8Array(audioData.length) for (let i = 0; i < audioData.length; i++) { bytes[i] = audioData.charCodeAt(i) } const blob = new Blob([bytes], { type: result.contentType }) const url = URL.createObjectURL(blob) const audio = new Audio(url) audio.play() audio.onended = () => URL.revokeO... | 15 | 694 | 2026-03-23T11:07:14.150499 |
buffer-to-string | bun | https://bun.sh/docs/guides/binary/buffer-to-string | runtime | javascript | .meta.path Check entrypoint Get entrypoint path Ecosystem & Frameworks Astro with Bun Discord.js with Bun Docker with Bun Drizzle with Bun Gel with Bun Elysia with Bun Express with Bun Hono with Bun Mongoose with Bun Neon Drizzle with Bun Neon Serverless Postgres with Bun Next.js with Bun Nuxt with Bun PM2 with Bun Pri... | 1 | 799 | 2026-03-23T11:15:47.340868 |
setup | firebase | https://firebase.google.com/docs/ios/setup | database | javascript | s if you're new to Firebase or Google Cloud . You can also follow these steps if you want to create a wholly new Firebase project (and its underlying Google Cloud project). Sign into the Firebase console . Click the button to create a new Firebase project. In the text field, enter a project name . If you're part of a G... | 2 | 750 | 2026-03-23T10:56:33.155643 |
kubernetes | kubernetes | https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/ | devops | yaml | A20_POLY1305_SHA256. Insecure values: TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_RC4_128_SHA, TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA256, TLS_R... | 65 | 800 | 2026-03-23T11:05:01.082588 |
?s=dynatrace | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=dynatrace | devops | python | cally discovers K8s resources (pods), extracts metadata from them and adds the extracted metadata to the relevant spans, metrics and logs. go 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-tele... | 84 | 800 | 2026-03-23T11:36:56.523513 |
?s=mistral | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=mistral | devops | python | P Exporter by 🔭 OpenTelemetry Authors 🔭 This library allows exporting telemetry data in the OpenTelemetry Protocol (OTLP) format to the OpenTelemetry Collector and OTLP-compliant backends/receivers. php exporter Quick Install To install this exporter run: composer require open-telemetry/exporter-otlp 1.4.0 Version PH... | 183 | 800 | 2026-03-23T11:27:38.004148 |
cond | tensorflow | https://www.tensorflow.org/api_docs/python/tf/cond | ml | python | turn z fun1 ( tf . constant ( 7 ), tf . constant ( 3 )) . numpy () 4 @tf . function def fun2 ( x , y ): pred = x > 0 true_fn = lambda : y + 1 false_fn = lambda : y - 1 return tf . cond ( pred , true_fn , false_fn ) # Use tf.cond() explicitly. fun1 ( tf . constant ( 7 ), tf . constant ( 3 )) . numpy () 4 For more inform... | 1 | 800 | 2026-03-23T10:57:00.233697 |
?s=confmap | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=confmap | devops | python | simou Kotel is an instrumentation plugin for the franz-go Kafka client. It provides tracing and metrics options. go instrumentation kafka franz-go tracing metrics Go Language Instrumentation Component BSD-3-Clause License Repository Labstack Echo instrumentation by 🔭 OpenTelemetry Authors 🔭 Go contrib plugin for the ... | 226 | 800 | 2026-03-23T11:13:12.754078 |
parallax-scrolling | flutter | https://docs.flutter.dev/cookbook/effects/parallax-scrolling | mobile | dart | er.key}); @override Widget build(BuildContext context) { return MaterialApp( theme: ThemeData.dark().copyWith(scaffoldBackgroundColor: darkBlue), debugShowCheckedModeBanner: false, home: const Scaffold(body: Center(child: ExampleParallax())), ); } } class ExampleParallax extends StatelessWidget { const ExampleParallax(... | 21 | 646 | 2026-03-23T11:32:54.090828 |
2.27.0 | git | https://git-scm.com/docs/git-fetch/2.27.0 | devops | bash | ption may be a glob on ref names, a ref, or the (possibly abbreviated) SHA-1 of a commit. Specifying a glob is equivalent to specifying this option multiple times, one for each matching ref name. See also the fetch.negotiationAlgorithm configuration variable documented in git-config[1] . --dry-run Show what would be do... | 8 | 800 | 2026-03-23T11:08:59.802500 |
gitlab_ci | gitlab_ci | https://docs.gitlab.com/ci/components/ | devops | yaml | access to credentials and tokens : Audit the component’s source code to verify that any credentials or tokens are only used to perform actions that you expect and authorize. Use minimally scoped access tokens. Avoid using long-lived access tokens or credentials. Audit use of credentials and tokens used by CI/CD compone... | 40 | 800 | 2026-03-23T10:50:13.241035 |
redis | redis | https://redis.io/docs/latest/commands/sadd/ | database | bash | ); System . out . println ( sAddResult1 ); // >>> 1 long sAddResult2 = jedis . sadd ( "myset" , "World" ); System . out . println ( sAddResult2 ); // >>> 1 long sAddResult3 = jedis . sadd ( "myset" , "World" ); System . out . println ( sAddResult3 ); // >>> 0 Set < String > sAddResult4 = jedis . smembers ( "myset" ); S... | 12 | 799 | 2026-03-23T11:39:00.203187 |
trace-with-vercel-ai-sdk | langchain | https://docs.langchain.com/langsmith/trace-with-vercel-ai-sdk | ai | python | ic setup Import and wrap AI SDK methods, then use them as you normally would: Copy import { openai } from "@ai-sdk/openai" ; import * as ai from "ai" ; import { wrapAISDK } from "langsmith/experimental/vercel" ; const { generateText , streamText , generateObject , streamObject } = wrapAISDK (ai) ; await generateText ( ... | 3 | 800 | 2026-03-23T11:04:41.276687 |
postgres | planetscale | https://planetscale.com/postgres | database | sql | iability of Postgres with PlanetScale's expertise in running databases at scale. Our architecture is designed for extreme fault tolerance and performance. High availability architecture When you create an HA Postgres cluster on PlanetScale, you automatically get a highly-available cluster distributed across three avail... | 3 | 800 | 2026-03-23T10:50:27.104001 |
?s=cats-effect | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=cats-effect | devops | python | IT License Repository OddDotNet: Test Harness for OpenTelemetry by Tyler Kenna OddDotNet is a Test Harness for OpenTelemetry that works for any language, built in .NET. It is a container image that accepts OpenTelemetry signals over gRPC, and it includes a query language for verifying and validating those signals. OddD... | 366 | 800 | 2026-03-23T11:29:01.637920 |
llms-full.txt | chakra_ui | https://chakra-ui.com/llms-full.txt | library | javascript | mport { LuMinus, LuPlus } from "react-icons/lu" export const NumberInputWithStepper = () => { return ( ) } ``` ### Mouse Wheel Pass the `allowMouseWheel` prop to the `NumberInput.Root` component to enable or disable the mouse wheel to change ```tsx import { NumberInput } from "@chakra-ui/react" export const NumberInput... | 683 | 794 | 2026-03-23T10:52:11.339113 |
gitlab_ci | gitlab_ci | https://docs.gitlab.com/ci/secrets/hashicorp_vault/ | devops | yaml | icate signed by unknown authority You have two options to solve this error: Add the self-signed certificate to the GitLab Runner server’s CA store. If you deployed GitLab Runner using the Helm chart , you have to create your own GitLab Runner image. Use the VAULT_CACERT environment variable to configure GitLab Runner t... | 9 | 799 | 2026-03-23T10:56:57.603879 |
?s=golang | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=golang | devops | python | on to track requests through OpenTelemetry. java instrumentation Java Language Instrumentation Component Apache 2.0 License Repository AWS SDK Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library provides a AWS SDK instrumentation to track requests through OpenTelemetry. java instrumentation aws aws-sdk sqs sns ... | 241 | 800 | 2026-03-23T11:11:31.323082 |
v0.14.html | scikit_learn | https://scikit-learn.org/stable/whats_new/v0.14.html | ml | python | produces multiclass probability estimates when trained under log loss or modified Huber loss. Hyperlinks to documentation in example code on the website by Martin Luessi . Fixed bug in preprocessing.MinMaxScaler causing incorrect scaling of the features for non-default feature_range settings. By Andreas Müller . max_fe... | 4 | 799 | 2026-03-23T10:56:28.292132 |
llms-full.txt | pydantic_ai | https://ai.pydantic.dev/llms-full.txt | ai | python | Pydantic. Args: path: The path to save the image to. infer_name: Whether to infer the graph name from the calling frame. **kwargs: Additional arguments to pass to `mermaid.save_image`. """ if infer_name and self.name is None: self._infer_name(inspect.currentframe()) if 'title' not in kwargs and self.name: kwargs['title... | 5,424 | 663 | 2026-03-23T10:51:26.922284 |
optim.html | pytorch | https://pytorch.org/docs/stable/optim.html | ml | python | function in the given total_iters. lr_scheduler.CosineAnnealingLR Set the learning rate of each parameter group using a cosine annealing schedule. lr_scheduler.ChainedScheduler Chains a list of learning rate schedulers. lr_scheduler.SequentialLR Contains a list of schedulers expected to be called sequentially during th... | 17 | 799 | 2026-03-23T11:03:06.519377 |
?s=angular | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=angular | devops | python | ls (packagist) Repository OpenTelemetry Laravel auto-instrumentation by 🔭 OpenTelemetry Authors 🔭 Instrumentation Library for Laravel laravel instrumentation php Quick Install To install this instrumentation library run: composer require open-telemetry/opentelemetry-auto-laravel 1.4.0 Version PHP Language Instrumenta... | 309 | 800 | 2026-03-23T11:16:36.728604 |
git-fast-import | git | https://git-scm.com/docs/git-fast-import | devops | bash | ad. This can be used to tell fast-import to finish early. If the --done command-line option or feature done command is in use, the done command is mandatory and marks the end of the stream. RESPONSES TO COMMANDS New objects written by fast-import are not available immediately. Most fast-import commands have no visible ... | 61 | 798 | 2026-03-23T10:52:55.767673 |
redis | redis | https://redis.io/docs/latest/develop/data-types/sorted-sets/ | database | bash | >>> 2 $res13 = $r -> zadd ( 'racer_scores' , [ 'Norem' => 0 , 'Sam-Bodden' => 0 , 'Royce' => 0 , 'Ford' => 0 , 'Prickett' => 0 , 'Castilla' => 0 , ]); echo $res13 . PHP_EOL ; // >>> 3 $res14 = $r -> zrange ( 'racer_scores' , 0 , - 1 ); echo json_encode ( $res14 ) . PHP_EOL ; // >>> ["Castilla","Ford","Norem","Prickett"... | 66 | 799 | 2026-03-23T11:05:31.572936 |
2.33.0 | git | https://git-scm.com/docs/git-push/2.33.0 | devops | bash | f no remote is configured for the current branch). git push origin Without additional configuration, pushes the current branch to the configured upstream ( branch. <name> .merge configuration variable) if it has the same name as the current branch, and errors out without pushing otherwise. The default behavior of this ... | 38 | 799 | 2026-03-23T10:59:34.885705 |
sdk | dart | https://dart.dev/tools/sdk | language | dart | iers for API maintainers Reference Concurrency expand_more Overview Asynchronous programming Isolates Null safety expand_more Sound null safety Understanding null safety Dart keywords Language versioning Core libraries expand_more Overview dart:core dart:async dart:math dart:convert dart:io dart:js_interop Iterable col... | 1 | 799 | 2026-03-23T10:53:03.226167 |
?s=grpc | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=grpc | devops | python | tef 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/stefexporter v0.148.0 v0.148.0 Version Collector Language Exporter Component Apache 2.0 Licens... | 53 | 800 | 2026-03-23T11:38:56.254675 |
llms-full.txt | pydantic_ai | https://ai.pydantic.dev/llms-full.txt | ai | python | return self._stream_response.get() else: raise ValueError('No stream response or run result provided') # pragma: no cover @property def metadata(self) -> dict[str, Any] | None: """Metadata associated with this agent run, if configured.""" if self._run_result is not None: return self._run_result.metadata elif self._stre... | 3,329 | 636 | 2026-03-23T10:51:26.918442 |
?s=generator | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=generator | devops | python | Apache 2.0 License Repository OTLP Exporter by 🔭 OpenTelemetry Authors 🔭 This library allows to export data to the OpenTelemetry Collector using the OpenTelemetry Protocol. c++ exporter C++ Language Exporter Component Apache 2.0 License Documentation Repository Prometheus Exporter by 🔭 OpenTelemetry Authors 🔭 The O... | 168 | 799 | 2026-03-23T11:11:58.624296 |
?s=b3 | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=b3 | devops | python | Autoinjection deprecated by 🔭 OpenTelemetry Authors 🔭 Deprecated This browser extension is permanently deprecated. Other browser extensions are available that provide similar functionality . This browser extension allows you to inject OpenTelemetry instrumentation in any web page. It uses the Web SDK and can export d... | 377 | 799 | 2026-03-23T11:20:37.875816 |
environment-variables | tanstack_router | https://tanstack.com/start/latest/docs/framework/react/guide/environment-variables | framework | typescript | time object. Without static replacement, code like this would remain in your production server bundle: typescript if (process.env.NODE_ENV === 'development') { // This code would NOT be eliminated without static replacement enableDevTools() logDebugInfo() } With static replacement enabled (the default), the bundler see... | 18 | 764 | 2026-03-23T11:22:28.137900 |
preview-mode | nextjs | https://nextjs.org/docs/pages/guides/preview-mode | framework | javascript | ity Example ( Demo ) Sitecore XM Cloud Example ( Demo ) Storyblok Example ( Demo ) Strapi Example ( Demo ) TakeShape Example ( Demo ) Tina Example ( Demo ) Umbraco Example ( Demo ) Umbraco Heartcore Example ( Demo ) Webiny Example ( Demo ) WordPress Example ( Demo ) Blog Starter Example ( Demo ) In the Pages documentat... | 1 | 799 | 2026-03-23T11:15:13.456802 |
llms-full.txt | pydantic_ai | https://ai.pydantic.dev/llms-full.txt | ai | python | elif isinstance(item, ImageUrl): detail = 'auto' image_url = item.url if metadata := item.vendor_metadata: detail = metadata.get('detail', 'auto') if item.force_download: downloaded = await download_item(item, data_format='base64_uri', type_format='extension') image_url = downloaded['data'] return ResponseInputImageCon... | 4,471 | 573 | 2026-03-23T10:51:26.920051 |
?s=bullmq | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=bullmq | devops | python | metry SDK, reporting data to an OpenTelemetry Collector. sandbox rust kubewarden Rust Language Application integration Component Apache-2.0 License Website Documentation rustup native by The Rust Project Developers The feature otel can be used when building rustup to turn on OpenTelemetry tracing with an OTLP gRPC expo... | 18 | 800 | 2026-03-23T11:22:42.087879 |
?s=python | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=python | devops | python | r you can add this receiver to the manifest file like the following: receivers : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkenterprisereceiver v0.148.0 v0.148.0 Version Collector Language Receiver Component Apache 2.0 License Package Details (go-collector) Repository SQL Query Re... | 155 | 799 | 2026-03-23T11:27:43.914987 |
llms-full.txt | inngest | https://www.inngest.com/llms-full.txt | devops | typescript | ayload](/docs/events#event-payload-format) to a future timestamp (milliseconds since the Unix epoch). Unlike `step.sleep()` or `step.sleepUntil()` which add delays _within_ a function, the `ts` field delays the _start_ of the function run itself. For example, to schedule a function to run 5 minutes from now: ```typescr... | 552 | 782 | 2026-03-23T10:50:47.948470 |
?s=deltatocumulative | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=deltatocumulative | devops | python | ) Repository zPages Collector Extension by 🔭 OpenTelemetry Authors 🔭 The zPages Extension for the OpenTelemetry Collector serves zPages, an HTTP endpoint that provides live data for debugging different components that were properly instrumented for such. go extension collector Collector Language Extension Component A... | 74 | 800 | 2026-03-23T11:36:53.632908 |
useful-packages | dart | https://dart.dev/resources/useful-packages | language | dart | ter and web development, consult the following sections. Flutter packages # To learn more about Flutter packages, consult Using packages in the Flutter documentation or search the pub.dev site for Flutter packages . Web packages # To learn more about web packages, consult Web libraries and packages or search the pub.de... | 9 | 680 | 2026-03-23T10:55:56.834717 |
feed.atom | planetscale | https://planetscale.com/blog/feed.atom | database | sql | extreme-fault-tolerance 2025-07-03T09:00:00.000Z 2025-07-03T09:00:00.000Z Max Englander Announcing PlanetScale for Postgres https://planetscale.com/blog/planetscale-for-postgres 2025-07-01T09:00:00.000Z 2025-07-01T09:00:00.000Z Sam Lambert Postgres v13, as well as automatic Postgres version updates without downtime. Ad... | 14 | 800 | 2026-03-23T11:03:06.264048 |
gitlab_ci | gitlab_ci | https://docs.gitlab.com/user/group/settings/group_access_tokens/ | devops | yaml | and find your group. Select Settings > Access tokens . For the relevant token, select Rotate ( retry ). In the confirmation dialog, select Rotate . Revoke a group access token History Ability to view expired and revoked tokens introduced in GitLab 17.3 with a flag named retain_resource_access_token_user_after_revoke . ... | 11 | 799 | 2026-03-23T11:12:46.145666 |
kubernetes | kubernetes | https://kubernetes.io/docs/reference/kubectl/generated/kubectl_completion/ | devops | yaml | checked for validity. This will make your HTTPS connections insecure --kubeconfig string Path to the kubeconfig file to use for CLI requests. --kuberc string Path to the kuberc file to use for preferences. This can be disabled by exporting KUBECTL_KUBERC=false feature gate or turning off the feature KUBERC=off. --match... | 5 | 787 | 2026-03-23T11:26:10.016605 |
gitlab_ci | gitlab_ci | https://docs.gitlab.com/ci/yaml/ | devops | yaml | merge together. If the pipeline has default:hooks defined, and the job also has hooks , the job configuration takes precedence and the default configuration is not used. Keyword type : Job keyword. You can use it only as part of a job or in the default section . Supported values : A hash of hooks and their commands. Av... | 108 | 800 | 2026-03-23T10:51:59.387029 |
Magicoder-Evol-Instruct-110K | transformers | https://huggingface.co/datasets/ise-uiuc/Magicoder-Evol-Instruct-110K | ai | python | 90501', '20200809', bar_interval = 60) # for hourly data ``` Remember to replace 'start_date' and 'end_date' with your desired dates in the `pdblp` example, and '20190501' and '20200809' in the `xbbg` example. Note: You need a paid Bloomberg subscription to access its API services. Also, ensure that the Bloomberg Termi... | 137 | 726 | 2026-03-23T11:25:33.069164 |
streaming-data-from-server-functions | tanstack_start | https://tanstack.com/start/latest/docs/framework/react/guide/streaming-data-from-server-functions | framework | typescript | Streaming Data from Server Functions | TanStack Start React Docs TanStack Start v0 v0 New TanStack Intent Search... K Auto Log In Start RC Start RC Router Router Query Query Table Table DB beta DB beta AI alpha AI alpha Form new Form new Virtual Virtual Pacer beta Pacer beta Hotkeys alpha Hotkeys alpha Store alpha Stor... | 0 | 800 | 2026-03-23T11:00:32.681761 |
?s=remix | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=remix | devops | python | 2.0 License Package Details (go-collector) Repository Apache Spark Receiver by 🔭 OpenTelemetry Authors 🔭 This receiver fetches metrics for an Apache Spark cluster through the Apache Spark REST API apache spark receiver collector Quick Install When building a custom collector you can add this receiver to the manifest ... | 98 | 798 | 2026-03-23T11:33:59.676565 |
?s=remix | opentelemetry | https://opentelemetry.io/ecosystem/registry//?s=remix | devops | python | list of dependencies in mix.exs : def deps do [ { :opentelemetry_ecto , "~> 1.2.0" } ] 1.2.0 Version Erlang Language Instrumentation Component Apache 2.0 License Package Details (hex) Repository Elli Instrumentation by 🔭 OpenTelemetry Authors 🔭 Instrumentation for Erlang HTTP server Elli. erlang http instrumentation ... | 216 | 800 | 2026-03-23T11:33:59.676656 |
redis | redis | https://redis.io/docs/latest/develop/data-types/timeseries/ | database | bash | panic ( err ) } fmt . Println ( res3 [ "totalSamples" ]) // >>> 0 res4 , err := rdb . TSAddWithArgs ( ctx , "thermometer:2" , 1 , 10.8 , & redis . TSOptions { Retention : 100 , }, ). Result () if err != nil { panic ( err ) } fmt . Println ( res4 ) // >>> 1 res5 , err := rdb . TSInfo ( ctx , "thermometer:2" ). Result ()... | 1,182 | 799 | 2026-03-23T10:54:53.791706 |
trace-with-google-adk | langchain | https://docs.langchain.com/langsmith/trace-with-google-adk | ai | python | ion_id = "session_456" , ) runner = Runner ( agent = pipeline , app_name = "pipeline_app" , session_service = session_service , ) events = runner . run_async ( user_id = "user_123" , session_id = session . id , new_message = types . Content ( role = "user" , parts = [ types . Part ( text = "Quelle est la plus haute tou... | 8 | 731 | 2026-03-23T11:05:42.201837 |
result-2022-08-10.json | qdrant | https://qdrant.tech/benchmarks/result-2022-08-10.json | database | python | 4.730771084, "p95_time": 0.0101844035, "rps": 238.32656627, "parallel": 2, "p99_time": 0.0117392251, "mean_time": 0.0082196469, "mean_precisions": 0.981502, "engine_params": { "search_params": { "hnsw_ef": 128 } } }, { "engine_name": "qdrant", "setup_name": "qdrant-m-16-ef-128", "dataset_name": "deep-image-96-angular",... | 473 | 569 | 2026-03-23T11:15:13.615184 |
redis | redis | https://redis.io/docs/latest/develop/data-types/lists/ | database | bash | tLeftPush ( "bikes:repairs" , "bike:important_bike" ); Console . WriteLine ( res17 ); // >>> 3 RedisValue [] res18 = db . ListRange ( "bikes:repairs" , 0 , - 1 ); Console . WriteLine ( string . Join ( ", " , res18 )); // >>> "bike:important_bike, bike:1, bike:2" db . KeyDelete ( "bikes:repairs" ); long res19 = db . Lis... | 160 | 800 | 2026-03-23T11:05:26.645165 |
hot-reload | flutter | https://docs.flutter.dev/tools/hot-reload | mobile | dart | Hot reload Skip to main content docs.flutter.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic. Learn more OK, got it asterisk Guides play_lesson Learn api Reference list On this page chevron_right Hot reload vertical_align_top Hot reload Flutter 3.41 is live! Check ... | 0 | 691 | 2026-03-23T10:52:39.636663 |
stringify | javascript | https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify | language | javascript | ed, function () {}, Symbol("")] })); // Expected output: '{"x":[10,null,null,null]}' console.log(JSON.stringify(new Date(2006, 0, 2, 15, 4, 5))); // Expected output: '"2006-01-02T15:04:05.000Z"' Syntax js JSON.stringify(value) JSON.stringify(value, replacer) JSON.stringify(value, replacer, space) Parameters value The v... | 1 | 800 | 2026-03-23T11:08:45.947420 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.