Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,194 for unse (0.06 sec)

  1. android/guava/src/com/google/common/collect/CompactHashSet.java

        int minimumTableSize = CompactHashing.tableSize(size);
        int mask = hashTableMask();
        if (minimumTableSize < mask) { // smaller table size will always be less than current mask
          resizeTable(mask, minimumTableSize, UNSET, UNSET);
        }
      }
    
      @Override
      public void clear() {
        if (needsAllocArrays()) {
          return;
        }
        incrementModCount();
        Set<E> delegate = delegateOrNull();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor.h

    typedef struct SP_DeviceFns {
      size_t struct_size;
      void* ext;  // reserved for future use
    
      // [Optional]
      // Returns the NUMA node associated with this device, for use in
      // determining socket locality. If the NUMA node could not be determined, -1
      // is returned.
      // Negative values are treated as "unset".
      int32_t (*get_numa_node)(const SP_Device* device);
    
      // [Optional]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/policy_applier.go

    // namespace-level, which is preferred over mesh-level).
    // - When there are more than one policy in the same scope (i.e workload-level), the oldest one win.
    // - UNSET will be replaced with the setting from the parent. I.e UNSET port-level config will be
    // replaced with config from workload-level, UNSET in workload-level config will be replaced with
    // one in namespace-level and so on.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    				paramKind.String())
    		}
    	}
    
    	// Find params to use with policy
    	switch {
    	case paramKind == nil:
    		// ParamKind is unset. Ignore any globalParamRef or namespaceParamRef
    		// setting.
    		return []runtime.Object{nil}, nil
    	case paramRef == nil:
    		// Policy ParamKind is set, but binding does not use it.
    		// Validate with nil params
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CompactHashSet.java

        int minimumTableSize = CompactHashing.tableSize(size);
        int mask = hashTableMask();
        if (minimumTableSize < mask) { // smaller table size will always be less than current mask
          resizeTable(mask, minimumTableSize, UNSET, UNSET);
        }
      }
    
      @Override
      public void clear() {
        if (needsAllocArrays()) {
          return;
        }
        incrementModCount();
        Set<E> delegate = delegateOrNull();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/Configuration.java

         * Property <tt>jcifs.encoding</tt> (string, default <tt>Cp850</tt>)
         * 
         * @return OEM encoding to use
         */
        String getOemEncoding ();
    
    
        /**
         * @return local timezone
         */
        TimeZone getLocalTimezone ();
    
    
        /**
         * @return Process id to send, randomized if unset
         */
        int getPid ();
    
    
        /**
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. hack/make-rules/test.sh

    KUBE_COVERMODE=${KUBE_COVERMODE:-atomic}
    # The directory to save test coverage reports to, if generating them. If unset,
    # a semi-predictable temporary directory will be used.
    KUBE_COVER_REPORT_DIR="${KUBE_COVER_REPORT_DIR:-}"
    # How many 'go test' instances to run simultaneously when running tests in
    # coverage mode.
    KUBE_COVERPROCS=${KUBE_COVERPROCS:-4}
    # use KUBE_RACE="" to disable the race detector
    # this is defaulted to "-race" in make test as well
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"selector":    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/values.yaml

        # If set, `istiod` will allow connections from trusted node proxy ztunnels
        # in the provided namespace.
        # If unset, `istiod` will assume the trusted node proxy ztunnel resides
        # in the same namespace as itself.
        trustedZtunnelNamespace: ""
      sidecarInjectorWebhook:
        # You can use the field called alwaysInjectSelector and neverInjectSelector which will always inject the sidecar or
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/helpers_linux.go

    	}
    	return
    }
    
    // MilliCPUToShares converts the milliCPU to CFS shares.
    func MilliCPUToShares(milliCPU int64) uint64 {
    	if milliCPU == 0 {
    		// Docker converts zero milliCPU to unset, which maps to kernel default
    		// for unset: 1024. Return 2 here to really match kernel default for
    		// zero milliCPU.
    		return MinShares
    	}
    	// Conceptually (milliCPU / milliCPUToCPU) * sharesPerCPU, but factored to improve rounding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top