Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 471 for Initial (0.29 sec)

  1. cmd/kubeadm/app/constants/constants.go

    	// KubeletBaseConfigurationConfigMap specifies in what ConfigMap in the kube-system namespace the initial remote configuration of kubelet should be stored
    	KubeletBaseConfigurationConfigMap = "kubelet-config"
    
    	// KubeletBaseConfigurationConfigMapKey specifies in what ConfigMap key the initial remote configuration of kubelet should be stored
    	KubeletBaseConfigurationConfigMapKey = "kubelet"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

    namespace mlir {
    namespace quant {
    namespace {
    
    constexpr int32_t kBiasMax = std::numeric_limits<int32_t>::max() / 2;
    
    // Uses the type of `value` to set the initial state of the index-th result if
    // `as_result` is true or index-th operand if `as_result` is false. The state
    // is immutable if the type is a quantized type. Returns the index of this
    // new state in the state vector.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

            // if we don't special-case this, we would get storedPermits == NaN, below
            storedPermits = 0.0;
          } else {
            storedPermits =
                (oldMaxPermits == 0.0)
                    ? maxPermits // initial state is cold
                    : storedPermits * maxPermits / oldMaxPermits;
          }
        }
    
        @Override
        long storedPermitsToWaitTime(double storedPermits, double permitsToTake) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  4. src/runtime/runtime1.go

    }
    
    // Holds variables parsed from GODEBUG env var,
    // except for "memprofilerate" since there is an
    // existing int var for that value, which may
    // already have an initial value.
    var debug struct {
    	cgocheck                 int32
    	clobberfree              int32
    	disablethp               int32
    	dontfreezetheworld       int32
    	efence                   int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/gradients.cc

      Status AddGradients();
    
      static Output NoGradient() { return Output(nullptr, -1); }
    
     private:
      Status Initialize();
    
      // For each forward edge from `src` to `dst` in the initial/forward graph:
      // propagates gradients `dst_grad` backwards along the edge from `src`
      // to `dst` in the graph. This will add `dst_grad` to the list of pending
      // gradients for the node associated with `src`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. pkg/kubelet/certificate/kubelet.go

    		GetUsages:  certificate.DefaultKubeletClientGetUsages,
    		// For backwards compatibility, the kubelet supports the ability to
    		// provide a higher privileged certificate as initial data that will
    		// then be rotated immediately. This code path is used by kubeadm on
    		// the masters.
    		BootstrapCertificatePEM: bootstrapCertData,
    		BootstrapKeyPEM:         bootstrapKeyData,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

            // if we don't special-case this, we would get storedPermits == NaN, below
            storedPermits = 0.0;
          } else {
            storedPermits =
                (oldMaxPermits == 0.0)
                    ? maxPermits // initial state is cold
                    : storedPermits * maxPermits / oldMaxPermits;
          }
        }
    
        @Override
        long storedPermitsToWaitTime(double storedPermits, double permitsToTake) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent_test.go

    func expectFileChanged(t *testing.T, files ...string) {
    	t.Helper()
    	initials := [][]byte{}
    	for _, f := range files {
    		initials = append(initials, testutil.ReadFile(t, f))
    	}
    	retry.UntilSuccessOrFail(t, func() error {
    		for i, f := range files {
    			now, err := os.ReadFile(f)
    			if err != nil {
    				return err
    			}
    			if reflect.DeepEqual(initials[i], now) {
    				return fmt.Errorf("file is unchanged")
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/HashBiMap.java

          int expectedSize) {
        return new HashBiMap<>(expectedSize);
      }
    
      /**
       * Constructs a new bimap containing initial values from {@code map}. The bimap is created with an
       * initial capacity sufficient to hold the mappings in the specified map.
       */
      public static <K extends @Nullable Object, V extends @Nullable Object> HashBiMap<K, V> create(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

                    }
                }
            """
    
            when:
            run("impl:${language.compileTaskName}") //initial run
            then:
            file("impl/classpath.txt").text == wrapClassDirs("mockito-core-1.9.5.jar, junit-4.13.jar, hamcrest-core-1.3.jar, objenesis-1.0.jar")
    
            when: //project dependency changes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top