Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 299 for flavor (0.27 sec)

  1. src/net/http/httputil/reverseproxy_test.go

    		w.Header().Set("Upgrade", "foo")
    		w.Header().Set(fakeHopHeader, "foo")
    		w.Header().Add("X-Multi-Value", "foo")
    		w.Header().Add("X-Multi-Value", "bar")
    		http.SetCookie(w, &http.Cookie{Name: "flavor", Value: "chocolateChip"})
    		w.WriteHeader(backendStatus)
    		w.Write([]byte(backendResponse))
    		w.Header().Set("X-Trailer", "trailer_value")
    		w.Header().Set(http.TrailerPrefix+"X-Unannounced-Trailer", "unannounced_trailer_value")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    If the type-safe task accessor `tasks.jar` isn't available, see the <<#configuring-plugins,configuring plugins>> section above, you can fallback to using the `tasks` container API. The Kotlin flavor of the following sample is strictly equivalent to the one using the type-safe accessor above:
    
    .Using the `tasks` container API
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    				// curl -H "Metadata-Flavor: Google" 169.254.169.254/computeMetadata/v1/instance/service-accounts/default/identity
    				opts := echo.CallOptions{
    					Address: "169.254.169.254",
    					Port:    echo.Port{ServicePort: 80},
    					Scheme:  scheme.HTTP,
    					HTTP: echo.HTTP{
    						// TODO: detect which platform?
    						Headers: headers.New().With("Metadata-Flavor", "Google").Build(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * Captures an object to be closed when a {@link ClosingFuture} pipeline is done.
         *
         * <p>For users of the {@code -jre} flavor of Guava, the object can be any {@code
         * AutoCloseable}. For users of the {@code -android} flavor, the object must be a {@code
         * Closeable}. (For more about the flavors, see <a
         * href="https://github.com/google/guava#adding-guava-to-your-build">Adding Guava to your
         * build</a>.)
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * Captures an object to be closed when a {@link ClosingFuture} pipeline is done.
         *
         * <p>For users of the {@code -jre} flavor of Guava, the object can be any {@code
         * AutoCloseable}. For users of the {@code -android} flavor, the object must be a {@code
         * Closeable}. (For more about the flavors, see <a
         * href="https://github.com/google/guava#adding-guava-to-your-build">Adding Guava to your
         * build</a>.)
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-env'" 2>/dev/null
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${KUBE_MASTER}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-master-certs'" 2>/dev/null
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/flavors/tests/flavors.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 31 bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    function Get_IpAliasRange {
      $url = ("http://${GCE_METADATA_SERVER}/computeMetadata/v1/instance/" +
              "network-interfaces/0/ip-aliases/0")
      $client = New-Object Net.WebClient
      $client.Headers.Add('Metadata-Flavor', 'Google')
      return ($client.DownloadString($url)).Trim()
    }
    
    # Retrieves the pod CIDR and sets it in $env:POD_CIDR.
    function Set-PodCidr {
      while($true) {
        $pod_cidr = Get_IpAliasRange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/go/ast/filter_test.go

    func (t1) f2() {}
    
    func (t2) f1() {}
    func (t2) f2() {}
    func (x *t2) f2() {}
    `
    
    // Calling ast.MergePackageFiles with ast.FilterFuncDuplicates
    // keeps a duplicate entry with attached documentation in favor
    // of one without, and it favors duplicate entries appearing
    // later in the source over ones appearing earlier. This is why
    // (*t2).f2 is kept and t2.f2 is eliminated in this test case.
    const golden = `package p
    
    type t1 struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            and:
            executable(flavors.dir.file("build/exe/main/english/main")).assertExists()
            sharedLibrary(flavors.dir.file("build/libs/hello/shared/english/hello")).assertExists()
    
            and:
            installation(flavors.dir.file("build/install/main/english")).exec().out == "Hello world!\n"
    
            when:
            sample flavors
            run "installMainFrenchExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top