Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for covers (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    			exceedBudget:             false,
    			testRuntimeCELCostBudget: 10,
    			expectRemainingBudget:    pointer.Int64(4), // 10 - 6
    		},
    		{
    			name: "test RuntimeCELCostBudge exactly covers",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "oldObject != null",
    				},
    				&condition{
    					Expression: "object.subsets.size() > 2",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    	// stwStoppingTimeGC/Other are distributions of stop-the-world stopping
    	// latencies, defined as the time taken by stopTheWorldWithSema to get
    	// all Ps to stop. stwStoppingTimeGC covers all GC-related STWs,
    	// stwStoppingTimeOther covers the others.
    	stwStoppingTimeGC    timeHistogram
    	stwStoppingTimeOther timeHistogram
    
    	// stwTotalTimeGC/Other are distributions of stop-the-world total
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

         *
         * Generates random UUID string based versions and tries to sort them. While this test is not as reliable
         * as {@link #testCompareUuidVersionStringStream()}, it covers broader range and in case it fails it records
         * the failed array, so we can investigate more.
         */
        @Test
        void testCompareUuidRandom() {
            for (int j = 0; j < 32; j++) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            "executable"     | "over java extension"        | null     | null         | "other"        | "current"         | "other"
            "java home"      | "over java extension"        | null     | "other"      | null           | "current"         | "other"
            "assigned tool"  | "over java extension"        | "other"  | null         | null           | "current"         | "other"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    			// offset, then this mapping comes from a different segment, fixes
    			// b/179920361.
    			alignedSegOffset := uint64(0)
    			if p.Off > (p.Vaddr & pageOffsetMask) {
    				alignedSegOffset = p.Off - (p.Vaddr & pageOffsetMask)
    			}
    			if mapOff < alignedSegOffset {
    				continue
    			}
    			// If the mapping starts in the middle of the segment, it covers less than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/fit.go

    		handle:                          h,
    		resourceAllocationScorer:        *scorePlugin(args),
    	}, nil
    }
    
    // computePodResourceRequest returns a framework.Resource that covers the largest
    // width in each resource dimension. Because init-containers run sequentially, we collect
    // the max in each dimension iteratively. In contrast, we sum the resource vectors for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. docs/en/docs/python-types.md

    By declaring types for your variables, editors and tools can give you better support.
    
    This is just a **quick tutorial / refresher** about Python type hints. It covers only the minimum necessary to use them with **FastAPI**... which is actually very little.
    
    **FastAPI** is all based on these type hints, they give it many advantages and benefits.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSet.java

      public static <E> Collector<E, ?, ImmutableSet<E>> toImmutableSet() {
        return CollectCollectors.toImmutableSet();
      }
    
      /**
       * Returns the empty immutable set. Preferred over {@link Collections#emptySet} for code
       * consistency, and because the return type conveys the immutability guarantee.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	}
    	ci := newCacheInterval(w.startIndex+first, w.endIndex, indexerFunc, w.indexValidator, w.RWMutex.RLocker())
    	return ci, nil
    }
    
    // getIntervalFromStoreLocked returns a watchCacheInterval
    // that covers the entire storage state.
    // This function assumes to be called under the watchCache lock.
    func (w *watchCache) getIntervalFromStoreLocked(key string, matchesSingle bool) (*watchCacheInterval, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    TIP: For a hands-on approach to learning how to use the build cache, start with reading through the <<build_cache_use_cases.adoc#use_cases_cache,use cases for the build cache>> and the follow up sections.
    It covers the different scenarios that caching can improve and has detailed discussions of the different caveats you need to be aware of when enabling caching for a build.
    
    [[sec:build_cache_enable]]
    == Enable the Build Cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top