Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for chancap (0.26 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		numClaimsWithStatusInfo+len(claimsWithBuiltinController) == numDelayedAllocationPending && len(claimsWithBuiltinController) < numDelayedAllocationPending {
    		// TODO: can we increase the chance that the scheduler picks
    		// the same node as before when allocation is on-going,
    		// assuming that that node still fits the pod?  Picking a
    		// different node may lead to some claims being allocated for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    func KeyctlString(cmd int, id int) (string, error) {
    	// We must loop as the string data may change in between the syscalls.
    	// We could allocate a large buffer here to reduce the chance that the
    	// syscall needs to be called twice; however, this is unnecessary as
    	// the performance loss is negligible.
    	var buffer []byte
    	for {
    		// Try to fill the buffer with data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	// If a test timeout is finite, set our kill timeout
    	// to that timeout plus one minute. This is a backup alarm in case
    	// the test wedges with a goroutine spinning and its background
    	// timer does not get a chance to fire.
    	// Don't set this if fuzzing, since it should be able to run
    	// indefinitely.
    	if testTimeout > 0 && testFuzz == "" {
    		// The WaitDelay for the test process depends on both the OS I/O and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    				//  changes to be refreshed when key events happen (killPod, sync->terminating).
    				//  Improving this latency also reduces the possibility that a terminated
    				//  container's status is garbage collected before we have a chance to update the
    				//  API server (thus losing the exit code).
    				status, err = p.podCache.GetNewerThan(update.Options.Pod.UID, lastSyncTime)
    
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // This allows the user on one hand, to adjust generator parameters in order
    // to dynamically determine a set of tests to run and on the other hand,
    // give the user a chance to inspect the generated tests with Google Test
    // reflection API before RUN_ALL_TESTS() is executed.
    //
    // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc
    // for more examples.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // This allows the user on one hand, to adjust generator parameters in order
    // to dynamically determine a set of tests to run and on the other hand,
    // give the user a chance to inspect the generated tests with Google Test
    // reflection API before RUN_ALL_TESTS() is executed.
    //
    // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc
    // for more examples.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    // sub symbol for the specified outer symbol.
    func (l *Loader) SortSub(s Sym) Sym {
    
    	if s == 0 || l.sub[s] == 0 {
    		return s
    	}
    
    	// Sort symbols using a slice first. Use a stable sort on the off
    	// chance that there's more than once symbol with the same value,
    	// so as to preserve reproducible builds.
    	sl := []symWithVal{}
    	for ss := l.sub[s]; ss != 0; ss = l.sub[ss] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top