Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,242 for cheese (0.16 sec)

  1. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    == Running `multirepo-app` with dependencies from included builds
    
    In the first instance, all of the required dependencies are present as builds in the `modules` directory. In a real-world example, these could well be clones of different Git repositories.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptor.java

         * The return value of this method becomes the result of the intercepted call.
         * The implementation may throw, and the exception will be propagated to the caller.
         * The implementation may choose to delegate to the original Groovy implementation by returning the value of {@code invocation.callOriginal()}.
         *
         * @param invocation the arguments supplied by the caller
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    Consider a situation where your library supports MySQL, Postgres and MongoDB, but that it's only allowed to choose _one_ of those at the same time.
    We can model this restriction by ensuring each feature also provides the same capability, thus making it impossible for these features to be used together in the same graph.
    
    .A producer of multiple features that are mutually exclusive
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. src/os/tempfile.go

    // If dir is the empty string, CreateTemp uses the default directory for temporary files, as returned by [TempDir].
    // Multiple programs or goroutines calling CreateTemp simultaneously will not choose the same file.
    // The caller can use the file's Name method to find the pathname of the file.
    // It is the caller's responsibility to remove the file when it is no longer needed.
    func CreateTemp(dir, pattern string) (*File, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/kotlin/src/einstein.txt

    Intellectual growth should commence at birth and cease only at death....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 70 bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ParamsMatchingConstructorSelector.java

                    if (match == null) {
                        // We had no previous match, so choose this candidate
                        match = constructor;
                    } else if (parameterTypes.length < match.getParameterTypes().length) {
                        // We had a previous match, if this candidate has fewer parameters, choose it as the best match
                        match = constructor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. ci/official/README.md

    #   "rbe", if you have set up your system to use RBE (see further below).
    #
    # Here is how to choose your TFCI value:
    # 1. A Python version must come first, because other scripts reference it.
    #      Ex. py39  -- Python 3.9
    #      Ex. py310 -- Python 3.10
    #      Ex. py311 -- Python 3.11
    #      Ex. py312 -- Python 3.12
    # 2. Choose the platform, which corresponds to the version of TensorFlow to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/groovy/src/einstein.txt

    Intellectual growth should commence at birth and cease only at death....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 70 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/workerApi/md5CustomTask/groovy/src/einstein.txt

    Intellectual growth should commence at birth and cease only at death....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 70 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/lookup_test.go

    // BenchmarkLookupFieldOrMethod measures types.LookupFieldOrMethod performance.
    // LookupFieldOrMethod is a performance hotspot for both type-checking and
    // external API calls.
    func BenchmarkLookupFieldOrMethod(b *testing.B) {
    	// Choose an arbitrary, large package.
    	path := filepath.Join(runtime.GOROOT(), "src", "net", "http")
    
    	files, err := pkgFiles(path)
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	conf := Config{
    		Importer: defaultImporter(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 15:31:35 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top