Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 299 for flavor (0.16 sec)

  1. src/runtime/sys_darwin.go

    	// 	mach_vm_address_t *address,
    	// 	mach_vm_size_t *size,
    	// 	vm_region_flavor_t flavor,
    	// 	vm_region_info_t info,
    	// 	mach_msg_type_number_t *infoCnt,
    	// 	mach_port_t *object_name);
    	var count machMsgTypeNumber = _VM_REGION_BASIC_INFO_COUNT_64
    	var object_name machPort
    	args := struct {
    		address     *uint64
    		size        *uint64
    		flavor      machVMRegionFlavour
    		info        unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/RegularImmutableMap.java

     * implementations exist for particular cases, like {@link ImmutableTable} views and hash flooding.
     * (This doc discusses {@link ImmutableMap} subclasses only for the JRE flavor; the Android flavor
     * differs.)
     *
     * @author Jesse Wilson
     * @author Kevin Bourrillion
     * @author Gregory Kick
     */
    @GwtCompatible(serializable = true, emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. cluster/gce/windows/configure.ps1

      )
    
      $url = ("http://metadata.google.internal/computeMetadata/v1/instance/" +
              "attributes/$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 {
          Write-Host "Failed to retrieve value for $Key."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. cluster/get-kube.sh

        fi
    
        echo "Installation successful!"
      )
    }
    
    function valid-storage-scope {
      curl "${GCE_METADATA_INTERNAL}/service-accounts/default/scopes" -H "Metadata-Flavor: Google" -s | grep -E "auth/devstorage|auth/cloud-platform"
    }
    
    if [[ -n "${KUBERNETES_SKIP_DOWNLOAD-}" ]]; then
      create_cluster
      exit 0
    fi
    
    if [[ -d "./kubernetes" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure.sh

      # shellcheck disable=SC2086
      curl ${CURL_FLAGS} \
        -H "Metadata-Flavor: Google" \
        "${GCE_METADATA_INTERNAL}/service-accounts/default/token" \
      | python3 -c 'import sys; import json; print(json.loads(sys.stdin.read())["access_token"])'
    }
    
    function valid-storage-scope {
      # shellcheck disable=SC2086
      curl ${CURL_FLAGS} \
        -H "Metadata-Flavor: Google" \
        "${GCE_METADATA_INTERNAL}/service-accounts/default/scopes" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  6. src/internal/coverage/decodecounter/decodecounterfile.go

    					return 0, err
    				}
    				if n != 4 {
    					return 0, io.EOF
    				}
    				return binary.LittleEndian.Uint32(cdr.u32b), nil
    			}
    		}
    	} else {
    		panic("internal error: unknown counter flavor")
    	}
    
    	// Alternative/experimental path: one way we could handling writing
    	// out counter data would be to just memcpy the counter segment
    	// out to a file, meaning that a region in the counter memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

         * Fallback to {@literal javax.xml.bind.DatatypeConverter} from JAXB which is available starting with Java 6 but is not anymore in Java 9.
         * Fortunately, both of these two Base64 encoders implement the right Base64 flavor, the one that does not split the output in multiple lines.
         *
         * @param userInfo user info
         * @return Base64 encoded user info
         * @throws RuntimeException if no public Base64 encoder is available on this JVM
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            then:
            failure.assertHasDescription("Could not determine the dependencies of task ':linkMainExecutable'.")
            failure.assertHasCause("No shared library binary available for library 'hello' with [flavor: 'default', platform: 'one', buildType: 'debug']")
        }
    
        @Issue("GRADLE-3499")
        @ToBeFixedForConfigurationCache(because = ":components")
        def "can create a binary which name contains dots"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                        byConstraint()
                        byConflictResolution("between versions 1.1 and 1.0")
                    }
                }
            }
        }
    
        // We only need to test one flavor
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  10. helm-releases/minio-5.1.0.tgz

    /oauth_callback" # Can leave empty claimPrefix: "" comment: "" displayName: "" networkPolicy: enabled: false # Specifies whether the policies created will be standard Network Policies (flavor: kubernetes) # or Cilium Network Policies (flavor: cilium) flavor: kubernetes allowExternal: true # only when using flavor: cilium egressEntities: - kube-apiserver ## PodDisruptionBudget settings ## ref: https://kubernetes.io/docs/concepts/workloads/pods/disruptions/ ## podDisruptionBudget: enabled: false maxUnavailable:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 18:49:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top