Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,637 for cheese (0.17 sec)

  1. cluster/get-kube-binaries.sh

    #
    # We automatically choose the correct client binaries to download.
    #
    # Options:
    #  Set KUBERNETES_SERVER_ARCH to choose the server (Kubernetes cluster)
    #  architecture to download:
    #    * amd64 [default]
    #    * arm
    #    * arm64
    #    * ppc64le
    #    * s390x
    #
    #  Set KUBERNETES_CLIENT_OS to choose the client OS to download:
    #    * current OS [default]
    #    * linux
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/io/ioutil/tempfile.go

    // replaces the last "*".
    // If dir is the empty string, TempFile uses the default directory
    // for temporary files (see [os.TempDir]).
    // Multiple programs calling TempFile simultaneously
    // will not choose the same file. The caller can use f.Name()
    // to find the pathname of the file. It is the caller's responsibility
    // to remove the file when no longer needed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. test/chan/select5.go

    // Code for enumerating all possible paths through
    // some logic.  The logic should call choose(n) when
    // it wants to choose between n possibilities.
    // On successive runs through the logic, choose(n)
    // will return 0, 1, ..., n-1.  The helper maybe() is
    // similar but returns true and then false.
    //
    // Given a function gen that generates an output
    // using choose and maybe, code can generate all
    // possible outputs using
    //
    //	for next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10K bytes
    - Viewed (0)
  4. src/cmd/cover/testdata/main.go

    		fmt.Fprintf(os.Stderr, "bad after panic")
    		PASS = false
    	}
    }
    
    // count returns the count and index for the counter at the specified line.
    func count(line uint32) (uint32, int) {
    	// Linear search is fine. Choose perfect fit over approximate.
    	// We can have a closing brace for a range on the same line as a condition for an "else if"
    	// and we don't want that brace to steal the count for the condition on the "if".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 16:40:40 UTC 2016
    - 3K bytes
    - Viewed (0)
  5. 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)
  6. src/internal/cpu/cpu_loong64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build loong64
    
    package cpu
    
    // CacheLinePadSize is used to prevent false sharing of cache lines.
    // We choose 64 because Loongson 3A5000 the L1 Dcache is 4-way 256-line 64-byte-per-line.
    const CacheLinePadSize = 64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:17:08 UTC 2022
    - 398 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/net/http/jar.go

    // goroutines.
    //
    // The net/http/cookiejar package provides a CookieJar implementation.
    type CookieJar interface {
    	// SetCookies handles the receipt of the cookies in a reply for the
    	// given URL.  It may or may not choose to save the cookies, depending
    	// on the jar's policy and implementation.
    	SetCookies(u *url.URL, cookies []*Cookie)
    
    	// Cookies returns the cookies to send in a request for the given URL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 900 bytes
    - Viewed (0)
  10. 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)
Back to top