Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for flavor (0.14 sec)

  1. 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)
  2. src/cmd/link/internal/ld/data.go

    // past the end of dodata().
    type dodataState struct {
    	// Link context
    	ctxt *Link
    	// Data symbols bucketed by type.
    	data [sym.SXREF][]loader.Sym
    	// Max alignment for each flavor of data symbol.
    	dataMaxAlign [sym.SXREF]int32
    	// Overridden sym type
    	symGroupType []sym.SymKind
    	// Current data size so far.
    	datsize int64
    }
    
    // A note on symType/setSymType below:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

    # duplicated there as well.
    function get-metadata-value {
      local default="${2:-}"
    
      local status
      # shellcheck disable=SC2086
      curl ${CURL_FLAGS} \
        -H 'Metadata-Flavor: Google' \
        "http://metadata/computeMetadata/v1/${1}" \
      || status="$?"
      status="${status:-0}"
    
      if [[ "${status}" -eq 0 || -z "${default}" ]]; then
        return "${status}"
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

     * If the {@code is}-getter is generated, and the {@code get}-getter is not ignored explicitly, then the generated
     * {@code is}-getter is automatically ignored in favor of the {@code get}-getter.
     * </p>
     */
    @ServiceScope(Scope.Global.class)
    public interface TypeAnnotationMetadataStore {
        TypeAnnotationMetadata getTypeAnnotationMetadata(Class<?> type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/internal/reflectlite/value.go

    	flagIndir       flag = 1 << 7
    	flagAddr        flag = 1 << 8
    	flagMethod      flag = 1 << 9
    	flagMethodShift      = 10
    	flagRO          flag = flagStickyRO | flagEmbedRO
    )
    
    func (f flag) kind() Kind {
    	return Kind(f & flagKindMask)
    }
    
    func (f flag) ro() flag {
    	if f&flagRO != 0 {
    		return flagStickyRO
    	}
    	return 0
    }
    
    func (v Value) typ() *abi.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/reduce_type_precision.cc

    // checking if all values within that tensor are within the range.
    // This pass is added to aid conversion of models that involve types not
    // available in TF such as INT4, and ideally should be removed in favor of
    // stronger type propagation.
    
    #include <cstdint>
    #include <memory>
    #include <utility>
    
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/values.yaml

        # Custom annotations on pod level, if you need them
        podAnnotations: {}
    
        # Deploy the config files as plugin chain (value "true") or as standalone files in the conf dir (value "false")?
        # Some k8s flavors (e.g. OpenShift) do not support the chain approach, set to false if this is the case
        chained: true
    
        # Custom configuration happens based on the CNI provider.
        # Possible values: "default", "multus"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

       * very flexible regarding wildcard rules, but this flexibility is not something currently used
       * in practice. To simplify the implementation, we've avoided implementing the flexible rules in
       * favor of supporting what's actually used in practice. That means if these assertions ever fail,
       * the implementation will need to be revisited to support a more flexible rule.
       */
      private fun assertWildcardRule(rule: String) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/features/features.go

    			" v1beta4 supports a new option 'ClusterConfiguration.EncryptionAlgorithm'.",
    	},
    	RootlessControlPlane: {FeatureSpec: featuregate.FeatureSpec{Default: false, PreRelease: featuregate.Alpha},
    		DeprecationMessage: "Deprecated in favor of the core kubelet feature UserNamespacesSupport which is beta since 1.30." +
    			" Once UserNamespacesSupport graduates to GA, kubeadm will start using it and RootlessControlPlane will be removed.",
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/internal/reflectlite/export_test.go

    	}
    	field := &tt.Fields[i]
    	typ := field.Typ
    
    	// Inherit permission bits from v, but clear flagEmbedRO.
    	fl := v.flag&(flagStickyRO|flagIndir|flagAddr) | flag(typ.Kind())
    	// Using an unexported field forces flagRO.
    	if !field.Name.IsExported() {
    		if field.Embedded() {
    			fl |= flagEmbedRO
    		} else {
    			fl |= flagStickyRO
    		}
    	}
    	// Either flagIndir is set and v.ptr points at struct,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top