Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for causing (0.26 sec)

  1. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        assertValue("b", "bb", "bbbb")
        assertValue("c", "c", "c")
    
        // Causing the size to grow to 10 should evict nothing.
        set("d", "d", "d")
        cache.flush()
        assertThat(cache.size()).isEqualTo(10)
        assertAbsent("a")
        assertValue("b", "bb", "bbbb")
        assertValue("c", "c", "c")
        assertValue("d", "d", "d")
    
        // Causing the size to grow to 18 should evict 'B' and 'C'.
        set("e", "eeee", "eeee")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            def lib05 = mavenRepo.module('org', 'lib', '0.5').publish()
    
            mavenRepo.module('org', 'direct', '1.0')
            // endorsing dependency that will cause a reselection of the parent again causing a reselection of other children
            // ("looping back" if a another child is the same as the one that was endorsed)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    //
    // isSweepDone should be the result of calling isSweepDone(),
    // unless we're testing or we know we're executing during a GC cycle.
    //
    // This depends on gcPercent, gcController.heapMarked, and
    // gcController.heapLive. These must be up to date.
    //
    // Callers must call gcControllerState.revise after calling this
    // function if the GC is enabled.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/BUILD

    # This target is only used for parsing the symbols to be exported in tensorflow.dll.
    # Do NOT depend on it.
    tf_native_cc_binary(
        name = "tf_custom_op_library_additional_deps.dll",
        linkshared = 1,
        linkstatic = 1,
        deps = tf_custom_op_library_additional_deps_impl(),
    )
    
    # Get a DEF file generated by parsing all object files
    # of tf_custom_op_library_additional_deps.so
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:intro]]
    == Introduction
    
    The configuration cache is a feature that significantly improves build performance by caching the result of the <<build_lifecycle#build_lifecycle,configuration phase>> and reusing this for subsequent builds.
    Using the configuration cache, Gradle can skip the configuration phase entirely when nothing that affects the build configuration, such as build scripts, has changed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    type uniformClient struct {
    	hash     uint64
    	nThreads int
    	nCalls   int
    	// duration for a simulated synchronous call
    	execDuration time.Duration
    	// duration for simulated "other work".  This can be negative,
    	// causing a request to be launched a certain amount of time
    	// before the previous one finishes.
    	thinkDuration time.Duration
    	// padDuration is additional time during which this request occupies its seats.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // it has sanity checks to ensure that we do not write events that can abuse our masters.
    // in particular, it ensures that a containerID never appears in an event message as that
    // is prone to causing a lot of distinct events that do not count well.
    // it replaces any reference to a containerID with the containerName which is stable, and is what users know.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p><b>Warning:</b> {@code Range}s always represent a range of values using the values' natural
       * ordering. {@code NavigableSet} on the other hand can specify a custom ordering via a {@link
       * Comparator}, which can violate the natural ordering. Using this method (or in general using
       * {@code Range}) with unnaturally-ordered sets can lead to unexpected and undefined behavior.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    			proposed = periodStartReplicas + policy.Value
    		} else if policy.Type == autoscalingv2.PercentScalingPolicy {
    			// the proposal has to be rounded up because the proposed change might not increase the replica count causing the target to never scale up
    			proposed = int32(math.Ceil(float64(periodStartReplicas) * (1 + float64(policy.Value)/100)))
    		}
    		result = selectPolicyFn(result, proposed)
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    	return
    
    Error:
    	// We have an offending operand errOp and possibly an error cause.
    	if cause == "" {
    		if isTypeParam(x.typ) || isTypeParam(y.typ) {
    			// TODO(gri) should report the specific type causing the problem, if any
    			if !isTypeParam(x.typ) {
    				errOp = y
    			}
    			cause = check.sprintf("type parameter %s is not comparable with %s", errOp.typ, op)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top