Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 129 for Thresholds (4.07 sec)

  1. 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 (1)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. plugin/pkg/auth/authorizer/node/graph_test.go

    			t.Errorf("expected index:\n%s\ngot:\n%s", string(e), string(a))
    		}
    	}
    
    	for i := 1; i <= g.destinationEdgeThreshold; i++ {
    		addPod(i, i)
    		if i < g.destinationEdgeThreshold {
    			// if we're under the threshold, no index expected
    			expectIndex(map[string][]string{})
    		}
    	}
    	expectGraph(map[string][]string{
    		"node:node1":            {},
    		"node:node2":            {},
    		"node:node3":            {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  8. src/runtime/proc_test.go

    		go matmult(done1, A, B, C, i0, i1, j0, mj, k0, k1, threshold)
    		matmult(nil, A, B, C, i0, i1, mj, j1, k0, k1, threshold)
    		<-done1
    	} else if dk >= threshold {
    		// divide in two by "k" axis
    		// deliberately not parallel because of data races
    		mk := k0 + dk/2
    		matmult(nil, A, B, C, i0, i1, j0, j1, k0, mk, threshold)
    		matmult(nil, A, B, C, i0, i1, j0, j1, mk, k1, threshold)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/mock_threshold_notifier_test.go

    	return m.recorder
    }
    
    // NewCgroupNotifier mocks base method.
    func (m *MockNotifierFactory) NewCgroupNotifier(path, attribute string, threshold int64) (CgroupNotifier, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "NewCgroupNotifier", path, attribute, threshold)
    	ret0, _ := ret[0].(CgroupNotifier)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. pkg/kubelet/images/image_gc_manager.go

    		return err
    	}
    
    	// If over the max threshold, free enough to place us at the lower threshold.
    	usagePercent := 100 - int(available*100/capacity)
    	if usagePercent >= im.policy.HighThresholdPercent {
    		amountToFree := capacity*int64(100-im.policy.LowThresholdPercent)/100 - available
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top