Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 139 for Thresholds (0.14 sec)

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

          // uncheckedCastNullableTToT is safe because bufferSize > 0.
          if (comparator.compare(elem, uncheckedCastNullableTToT(threshold)) > 0) {
            threshold = elem;
          }
          // uncheckedCastNullableTToT is safe because bufferSize > 0.
        } else if (comparator.compare(elem, uncheckedCastNullableTToT(threshold)) < 0) {
          // Otherwise, we can ignore elem; we've seen k better elements.
          buffer[bufferSize++] = elem;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. pkg/controller/podgc/gc_controller_test.go

    				{name: "c", phase: v1.PodFailed},
    			},
    			threshold:                     1,
    			deletedPodNames:               sets.New("a", "b"),
    			enablePodDisruptionConditions: true,
    		},
    		{
    			name: "threshold = 0, disables terminated pod deletion",
    			pods: []nameToPhase{
    				{name: "a", phase: v1.PodFailed},
    				{name: "b", phase: v1.PodSucceeded},
    			},
    			threshold: 0,
    			// threshold = 0 disables terminated pod deletion
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  3. istioctl/pkg/wait/wait.go

    				return fmt.Errorf("--for must be 'delete' or 'distribution', got: %s", forFlag)
    			}
    			if proxyFlag != "" && threshold != 1 {
    				printVerbosef(cmd, "both the proxy and threshold options were provided; the threshold option is being ignored.")
    				threshold = 1
    			}
    			var w *watcher
    			ctx, cancel := context.WithTimeout(context.Background(), timeout)
    			defer cancel()
    			if generation == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/node_container_manager_linux_test.go

    	for idx, tc := range cpuMemCases {
    		nc := NodeConfig{
    			NodeAllocatableConfig: NodeAllocatableConfig{
    				KubeReserved:   tc.kubeReserved,
    				SystemReserved: tc.systemReserved,
    				HardEvictionThresholds: []evictionapi.Threshold{
    					{
    						Signal:   evictionapi.SignalMemoryAvailable,
    						Operator: evictionapi.OpLessThan,
    						Value:    tc.hardThreshold,
    					},
    				},
    			},
    		}
    		cm := &containerManagerImpl{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 12.1K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprog/gc.go

    	// physical page. Assume the worst case: a full physical page out of each
    	// allocation.
    	threshold := 0.1 + float64(pageSize)/float64(allocChunk)
    	if overuse <= threshold {
    		fmt.Println("OK")
    		return
    	}
    	// Physical memory utilization exceeds the threshold, so heap-growth scavenging
    	// did not operate as expected.
    	//
    	// In the context of this test, this indicates a large amount of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

       */
      @VisibleForTesting transient long[] entries;
    
      /** The load factor. */
      private transient float loadFactor;
    
      /** When we have this many elements, resize the hashtable. */
      private transient int threshold;
    
      /** Constructs a new empty instance of {@code ObjectCountHashMap}. */
      ObjectCountHashMap() {
        init(DEFAULT_SIZE, DEFAULT_LOAD_FACTOR);
      }
    
      ObjectCountHashMap(ObjectCountHashMap<? extends K> map) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

        primaryCredentials(PasswordCredentials){
            username = 'uname'
            password = 'hunter2'
        }
    
        nullCredentials(PasswordCredentials) { }
        numbers(Numbers){
            value = 5
            threshold = 0.8
        }
        unsetNumbers(Numbers) { }
    }
    
    """
            buildFile
            when:
            run "model"
    
            then:
            ModelReportOutput.from(output).hasNodeStructure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/ArrayMap.java

            }
        }
    
        @Override
        public Object clone() {
            final ArrayMap<K, V> copy = new ArrayMap<>();
            copy.threshold = threshold;
            copy.mapTable = Arrays.copyOf(mapTable, size);
            copy.listTable = Arrays.copyOf(listTable, size);
            copy.size = size;
            return copy;
        }
    
        /**
         * エントリのインデックスを返します。
         *
         * @param entry
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    		},
    		{
    			// Pod: gcr.io/4000 gcr.io/10
    
    			// Node1
    			// Image: gcr.io/4000:latest 2000MB
    			// Score: 100 (4000 * 1/2 >= 1000M * 2, max-threshold)
    
    			// Node2
    			// Image: gcr.io/10:latest 10MB
    			// Score: 0 (10M/2 < 23M, min-threshold)
    			pod:          &v1.Pod{Spec: testMinMax},
    			nodes:        []*v1.Node{makeImageNode("node1", node400030), makeImageNode("node2", node25010)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

            llvm::cl::desc(
                "Lower threshold of the constant size for unfreezing. Constants "
                "smaller than this value will not be converted to variables."));
      }
    
      void getDependentDialects(DialectRegistry& registry) const override {
        registry.insert<TF::TensorFlowDialect,
                        tf_saved_model::TensorFlowSavedModelDialect>();
      }
    
      // Lower-bound threshold for the size of the constant in bytes. Constants
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top