Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 35 for Vendored (0.07 seconds)

  1. src/README.vendor

    ===============================
    
    Applying changes to packages that are vendored follows the considerations
    written down at go.dev/s/release.
    
    When the Go tree is open for development, a specific change may be pulled in
    at any time that it is needed. During the release freeze, the bar for changes
    in vendored packages is the same as it is for changes in non-vendored packages.
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Jan 26 20:37:19 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  2. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/precommit/LicenseHeadersTask.java

            // Generated resources
            matchers.add(subStringMatcher("GEN  ", "Generated", "ANTLR GENERATED CODE"));
            // Vendored Code
            matchers.add(subStringMatcher("VEN  ", "Vendored", "@notice"));
            // Dual SSPLv1 and Elastic
            matchers.add(subStringMatcher("DUAL", "SSPL+Elastic License", "the Elastic License 2.0 or the Server"));
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 09 18:53:35 GMT 2021
    - 10.6K bytes
    - Click Count (0)
  3. src/cmd/README.vendor

    See src/README.vendor for information on loading vendored packages
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu May 09 17:11:16 GMT 2019
    - 102 bytes
    - Click Count (0)
  4. src/cmd/api/main_test.go

    			//   extra care when printing them - ignore since it is not
    			//   going to change w/o a language change.
    			// - Internal and vendored packages do not contribute to our
    			//   API surface. (If we are running within the "std" module,
    			//   vendored dependencies appear as themselves instead of
    			//   their "vendor/" standard-library copies.)
    			// - 'go list std' does not include commands, which cannot be
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Mar 02 13:20:41 GMT 2026
    - 31.4K bytes
    - Click Count (0)
  5. fastapi/routing.py

        return app
    
    
    _T = TypeVar("_T")
    
    
    # Vendored from starlette.routing to avoid importing private symbols
    class _AsyncLiftContextManager(AbstractAsyncContextManager[_T]):
        """
        Wraps a synchronous context manager to make it async.
    
        This is vendored from Starlette to avoid importing private symbols.
        """
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.7.md

    * Bugfix: OpenAPI models may not get group-version-kind extension if kubernetes is vendored in another project (e.g. minikube). Kubectl 1.8 needs this extension to work with those projects. ([#53152](https://github.com/kubernetes/kubernetes/pull/53152), [@mbohlool](https://github.com/mbohlool))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 308.7K bytes
    - Click Count (1)
  7. CHANGELOG/CHANGELOG-1.9.md

    *   `conversion-gen` is now usable in a context without a vendored k8s.io/kubernetes. The Kubernetes core API is removed from `default extra-peer-dirs`. ([#54394](https://github.com/kubernetes/kubernetes/pull/54394),[ @sttts](https://github.com/sttts))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Tue Nov 16 10:46:27 GMT 2021
    - 313.7K bytes
    - Click Count (0)
  8. CHANGELOG/CHANGELOG-1.16.md

    - kube-scheduler won't be able to report scheduling Events if `events.k8s.io/v1beta1` API is disabled. We are targeting the fix for v1.16.2 ([#83203](https://github.com/kubernetes/kubernetes/issues/83203))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Oct 23 20:13:20 GMT 2024
    - 345.2K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/entity/ChatMessage.java

            return ROLE_ASSISTANT.equals(role);
        }
    
        /**
         * Gets the HTML-rendered content.
         *
         * @return the HTML content, or null if not rendered
         */
        public String getHtmlContent() {
            return htmlContent;
        }
    
        /**
         * Sets the HTML-rendered content.
         *
         * @param htmlContent the HTML content
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 04:52:31 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java

         */
        public abstract DirectoryProperty getStagingRoot();
    
        /**
         * The final location to place all rendered documentation.
         */
        public abstract DirectoryProperty getDocumentationRenderedRoot();
    
        /**
         * The collection of rendered documentation.  This is everything laid out as it would be deployed/packaged.
         */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Aug 20 14:11:17 GMT 2024
    - 4.4K bytes
    - Click Count (0)
Back to Top