Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 156 for leastOf (0.35 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	//   is interpreted as "data at least as new as the provided `resourceVersion`"
    	//   and the bookmark event is send when the state is synced
    	//   to a `resourceVersion` at least as fresh as the one provided by the ListOptions.
    	//   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
    	//   bookmark event is send when the state is synced at least to the moment
    	//   when request started being processed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                             TF::StatefulPartitionedCallOp& caller) {
      const std::string name = "start_step_0";
    
      AddAssertion(builder, loc, cond_value,
                   "[StartStep0] Auto-pipelining requires at least two steps.");
      auto insertion_point = builder.saveInsertionPoint();
    
      func::FuncOp orig_parent_func =
          callers.backward->getParentOfType<func::FuncOp>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	// ensure that we scavenge at least minPages each time, aligned
    	// to minPages*pageSize.
    	minPages := physPageSize / pageSize
    	if minPages < 1 {
    		minPages = 1
    	}
    
    	lock(p.mheapLock)
    	if p.summary[len(p.summary)-1][ci].max() >= uint(minPages) {
    		// We only bother looking for a candidate if there at least
    		// minPages free pages at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// h->mapcache needs no init
    
    	for i := range h.central {
    		h.central[i].mcentral.init(spanClass(i))
    	}
    
    	h.pages.init(&h.lock, &memstats.gcMiscSys, false)
    }
    
    // reclaim sweeps and reclaims at least npage pages into the heap.
    // It is called before allocating npage pages to keep growth in check.
    //
    // reclaim implements the page-reclaimer half of the sweeper.
    //
    // h.lock must NOT be held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	if len(storedVersions) == 0 {
    		return field.ErrorList{field.Invalid(fldPath, storedVersions, "must have at least one stored version")}
    	}
    	allErrs := field.ErrorList{}
    	storedVersionsMap := map[string]int{}
    	for i, v := range storedVersions {
    		storedVersionsMap[v] = i
    	}
    	for _, v := range versions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/Futures.java

       * that accepts zero or more arguments, all of type {@code String} or {@code Throwable}
       * (preferring constructors with at least one {@code String}, then preferring constructors with at
       * least one {@code Throwable}) and calling the constructor via reflection. If the exception did
       * not already have a cause, one is set by calling {@link Throwable#initCause(Throwable)} on it.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    		p.gcAssistTime = 0
    		p.gcFractionalMarkTime = 0
    	}
    
    	if trigger.kind == gcTriggerTime {
    		// During a periodic GC cycle, reduce the number of idle mark workers
    		// required. However, we need at least one dedicated mark worker or
    		// idle GC worker to ensure GC progress in some scenarios (see comment
    		// on maxIdleMarkWorkers).
    		if dedicatedMarkWorkersNeeded > 0 {
    			c.setMaxIdleMarkWorkers(0)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    // are used, spills registers only when necessary, and spills the
    // value whose next use is farthest in the future.
    //
    // The register allocator requires that a block is not scheduled until
    // at least one of its predecessors have been scheduled. The most recent
    // such predecessor provides the starting register state for a block.
    //
    // It also requires that there are no critical edges (critical =
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. cmd/xl-storage_test.go

    		// Expecting to fail with `errInvalidArgument`.
    		{
    			srcVol:      "ab",
    			destVol:     "dest-vol-non-existent",
    			srcPath:     "file4",
    			destPath:    "new-path/",
    			expectedErr: errVolumeNotFound,
    		},
    		// TestXLStorage case - 13.
    		// TestXLStorage case with invalid destination volume name. Length should be at least 3.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation.go

    	}
    	valuesPath := onExitCodesPath.Child("values")
    	if len(onExitCode.Values) == 0 {
    		allErrs = append(allErrs, field.Invalid(valuesPath, onExitCode.Values, "at least one value is required"))
    	} else if len(onExitCode.Values) > maxPodFailurePolicyOnExitCodesValues {
    		allErrs = append(allErrs, field.TooMany(valuesPath, len(onExitCode.Values), maxPodFailurePolicyOnExitCodesValues))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top