Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 297 for Thresholds (0.31 sec)

  1. platforms/jvm/jacoco/src/testFixtures/groovy/org/gradle/testing/jacoco/plugins/fixtures/JacocoCoverage.groovy

                    return filter(cutoff.value)
                }
            }
            return filter(JacocoVersion.SUPPORTS_JDK_8)
        }
    
        private static List<String> filter(JacocoVersion threshold) {
            ALL.findAll { new JacocoVersion(it) >= threshold }.asImmutable()
        }
    
        private static class JacocoVersion implements Comparable<JacocoVersion> {
            // Release notes: https://www.jacoco.org/jacoco/trunk/doc/changes.html
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:50:44 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. 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)
  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. pkg/kubelet/pleg/pleg.go

    type PodLifeCycleEventType string
    
    type RelistDuration struct {
    	// The period for relisting.
    	RelistPeriod time.Duration
    	// The relisting threshold needs to be greater than the relisting period +
    	// the relisting time, which can vary significantly. Set a conservative
    	// threshold to avoid flipping between healthy and unhealthy.
    	RelistThreshold time.Duration
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/compile/internal/inline/inlheur/testdata/dumpscores.go

    	return noninl(-x)
    }
    
    //go:noinline
    func noninl(x int) int {
    	return x + 1
    }
    
    func tooLargeToInline(x int) int {
    	if x > 101 {
    		// Drive up the cost of inlining this func over the
    		// regular threshold.
    		return big(big(big(big(big(G + x)))))
    	}
    	if x < 100 {
    		// make sure this callsite is scored properly
    		G += inlinable(101, inlinable2)
    		if G == 101 {
    			return 0
    		}
    		panic(inlinable2(3))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 14:26:26 UTC 2023
    - 794 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/unfold_large_splat_constant.cc

    namespace mlir {
    namespace TFL {
    namespace {
    #define GEN_PASS_DEF_UNFOLDLARGESPLATCONSTANTPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // The threshold of constant bits to be unfolded (1Mb). If there is a splat
    // constant with size equal or greater to this threshold, then it will be
    // unfolded back to a regular `tfl.fill` operation.
    constexpr int64_t kConstantSizeThresholdInBits = 1e+6;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. 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)
  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. 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)
Back to top