Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 331 for flavor (0.13 sec)

  1. cluster/gce/upgrade.sh

    #   ZONE
    function get-node-env() {
      # TODO(zmerlynn): Make this more reliable with retries.
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${NODE_NAMES[0]}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-env'" 2>/dev/null
    }
    
    # Read os distro information from /os/release on node.
    # $1: The name of node
    #
    # Assumed vars:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. cluster/gce/windows/common.psm1

        [parameter(Mandatory=$false)] [string]$Default
      )
    
      $url = "http://metadata.google.internal/computeMetadata/v1/instance/$Key"
      try {
        $client = New-Object Net.WebClient
        $client.Headers.Add('Metadata-Flavor', 'Google')
        return ($client.DownloadString($url)).Trim()
      }
      catch [System.Net.WebException] {
        if ($Default) {
          return $Default
        }
        else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  3. src/runtime/sys_darwin_arm64.s

    	RET
    
    // mach_vm_region_trampoline calls mach_vm_region from libc.
    TEXT runtimeĀ·mach_vm_region_trampoline(SB),NOSPLIT,$0
    	MOVD	0(R0), R1	// address
    	MOVD	8(R0), R2	// size
    	MOVW	16(R0), R3	// flavor
    	MOVD	24(R0), R4	// info
    	MOVD	32(R0), R5	// count
    	MOVD	40(R0), R6  // object_name
    	MOVD	$libc_mach_task_self_(SB), R0
    	MOVW	0(R0), R0
    	BL	libc_mach_vm_region(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. src/runtime/sys_darwin_amd64.s

    	RET
    
    // mach_vm_region_trampoline calls mach_vm_region from libc.
    TEXT runtimeĀ·mach_vm_region_trampoline(SB),NOSPLIT,$0
    	MOVQ	0(DI), SI // address
    	MOVQ	8(DI), DX // size
    	MOVL	16(DI), CX // flavor
    	MOVQ	24(DI), R8 // info
    	MOVQ	32(DI), R9 // count
    	MOVQ	40(DI), R10 // object_name
    	MOVQ	$libc_mach_task_self_(SB), DI
    	MOVL	0(DI), DI
    	CALL	libc_mach_vm_region(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.BuildType</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.Flavor</td>
                </tr>
                <tr>
                    <td>org.gradle.language.assembler.AssemblerSourceSet</td>
                </tr>
                <tr>
                    <td>org.gradle.language.c.CSourceSet</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top