Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 361 for flavor (0.1 sec)

  1. src/strconv/eisel_lemire.go

    	// https://nigeltao.github.io/blog/2020/eisel-lemire.html blog post.
    	//
    	// That blog post discusses the float64 flavor (11 exponent bits with a
    	// -1023 bias, 52 mantissa bits) of the algorithm, but the same approach
    	// applies to the float32 flavor (8 exponent bits with a -127 bias, 23
    	// mantissa bits). The computation here happens with 64-bit values (e.g.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 41.4K bytes
    - Viewed (0)
  2. helm/minio/README.md

    ```
    kubectl annotate namespace default "net.beta.kubernetes.io/network-policy={\"ingress\":{\"isolation\":\"DefaultDeny\"}}"
    ```
    
    When using `Cilium` as a CNI in your cluster, please edit the `flavor` field to `cilium`.
    
    With NetworkPolicy enabled, traffic will be limited to just port 9000.
    
    For more precise policy, set `networkPolicy.allowExternal=true`. This will
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    ----
    
    == Making different flavors of a library available through capabilities
    
    Because it is difficult to model <<feature_variants.adoc#feature_variants,optional feature variants>> as separate jars with pom metadata, libraries sometimes compose different jars with a different feature set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableMap.java

       * Map.getOrDefault}</a>.
       *
       * @since 23.5 (but since 21.0 in the JRE <a
       *     href="https://github.com/google/guava#guava-google-core-libraries-for-java">flavor</a>).
       *     Note, however, that Java 8+ users can call this method with any version and flavor of
       *     Guava.
       */
      // @Override under Java 8 / API Level 24
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableMap.java

      /**
       * @since 21.0 (but only since 23.5 in the Android <a
       *     href="https://github.com/google/guava#guava-google-core-libraries-for-java">flavor</a>).
       *     Note, however, that Java 8+ users can call this method with any version and flavor of
       *     Guava.
       */
      @Override
      @CheckForNull
      public final V getOrDefault(@CheckForNull Object key, @CheckForNull V defaultValue) {
        /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top