Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for stay (0.07 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	"k8s.io/kubernetes/pkg/scheduler/util"
    	"k8s.io/utils/clock"
    )
    
    const (
    	// DefaultPodMaxInUnschedulablePodsDuration is the default value for the maximum
    	// time a pod can stay in unschedulablePods. If a pod stays in unschedulablePods
    	// for longer than this value, the pod will be moved from unschedulablePods to
    	// backoffQ or activeQ. If this value is empty, the default value (5min)
    	// will be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[sec:java_testing_modular_patching]]
    === Whitebox test execution with module patching
    
    Another approach for whitebox testing is to stay in the module world by _patching_ the tests into the module under test.
    This way, module boundaries stay in place, but the tests themselves become part of the module under test and can then access the module's internals.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    			}
    			if RootMode == NeedRoot {
    				base.Fatal(ErrNoModRoot)
    			}
    			if !mustUseModules {
    				// GO111MODULE is 'auto', and we can't find a module root.
    				// Stay in GOPATH mode.
    				return
    			}
    		} else if search.InDir(modRoot, os.TempDir()) == "." {
    			// If you create /tmp/go.mod for experimenting,
    			// then any tests that create work directories under /tmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/MapMakerInternalMap.java

            return;
          }
    
          /*
           * Reclassify nodes in each list to new Map. Because we are using power-of-two expansion, the
           * elements from each bin must either stay at same index, or move with a power of two offset.
           * We eliminate unnecessary node creation by catching cases where old nodes can be reused
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

            return;
          }
    
          /*
           * Reclassify nodes in each list to new Map. Because we are using power-of-two expansion, the
           * elements from each bin must either stay at same index, or move with a power of two offset.
           * We eliminate unnecessary node creation by catching cases where old nodes can be reused
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    **Note:** The `@Classpath` annotation was introduced in Gradle 3.2. To stay compatible with earlier Gradle versions, classpath properties should also be annotated with `@InputFiles`.
    
    | `@link:{javadocPath}/org/gradle/api/tasks/CompileClasspath.html[CompileClasspath]`
    | `Iterable<File>`*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    			multiPointEnabled.insert(ep.Name)
    		}
    
    		// Reorder plugins. Here is the expected order:
    		// - part 1: overridePlugins. Their order stay intact as how they're specified in regular extension point.
    		// - part 2: multiPointEnabled - i.e., plugin defined in multipoint but not in regular extension point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2.go

    // function shouldn't be further extended to update immutable
    // values such as ErasureInfo, ChecksumInfo.
    //
    // Metadata is only updated to new values, existing values
    // stay as is, if you wish to update all values you should
    // update all metadata freshly before calling this function
    // in-case you wish to clear existing metadata.
    func (x *xlMetaV2) UpdateObjectVersion(fi FileInfo) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    		prof.cycles += cycles
    		return
    	}
    
    	if prev := prof.cycles; prev > 0 {
    		// We can only store one call stack for runtime-internal lock contention
    		// on this M, and we've already got one. Decide which should stay, and
    		// add the other to the report for runtime._LostContendedRuntimeLock.
    		prevScore := uint64(cheaprand64()) % uint64(prev)
    		thisScore := uint64(cheaprand64()) % uint64(cycles)
    		if prevScore > thisScore {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    	}
    	if !podWorkers.ShouldPodContentBeRemoved(types.UID("abc")) {
    		t.Errorf("Expected pod to be suitable for removal (does not exist and synced at least once)")
    	}
    
    	// verify workers that are not terminated stay open even if config no longer
    	// sees them
    	podWorkers.SyncKnownPods(nil)
    	drainAllWorkers(podWorkers)
    	if len(podWorkers.podUpdates) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top