Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 105 for Trailing (0.37 sec)

  1. src/runtime/mgcscavenge.go

    	var slept int64
    	if s.sleepStub == nil {
    		// Set the timer.
    		//
    		// This must happen here instead of inside gopark
    		// because we can't close over any variables without
    		// failing escape analysis.
    		start := nanotime()
    		s.timer.reset(start+sleepTime, 0)
    
    		// Mark ourselves as asleep and go to sleep.
    		s.parked = true
    		goparkunlock(&s.lock, waitReasonSleep, traceBlockSleep, 2)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

        class now defines equality by value rather than by reference.
     *  New: Handle 408 responses by retrying the request. This allows servers to
        direct clients to retry rather than failing permanently.
     *  New: Expose the framed protocol in `Connection`. Previously this would
        return the application-layer protocol (HTTP/1.1 or HTTP/1.0); now it always
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    This is effectively the reporting produced by the link:https://maven.apache.org/components/surefire/maven-surefire-plugin/examples/rerun-failing-tests.html[surefire plugin of Apache Maven™] when enabling reruns.
    If your CI server understands this format, it will indicate that the test was flaky.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// due to insufficient quota, limit ranges, pod security policy, node selectors, etc. or deleted
    	// due to kubelet being down or finalizers are failing.
    	ReplicaSetReplicaFailure ReplicaSetConditionType = "ReplicaFailure"
    )
    
    // ReplicaSetCondition describes the state of a replica set at a certain point.
    type ReplicaSetCondition struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // compiler and generates a warning in Sun Studio.  The Nokia Symbian
    // and the IBM XL C/C++ compiler try to instantiate a copy constructor
    // for objects passed through ellipsis (...), failing for uncopyable
    // objects.  We define this to ensure that only POD is passed through
    // ellipsis on these systems.
    #if defined(__SYMBIAN32__) || defined(__IBMCPP__) || defined(__SUNPRO_CC)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    				// watch remained established successfully
    			}
    		})
    	}
    }
    
    func TestWatchNotHangingOnStartupFailure(t *testing.T) {
    	// Configure cacher so that it can't initialize, because of
    	// constantly failing lists to the underlying storage.
    	dummyErr := fmt.Errorf("dummy")
    	backingStorage := &dummyStorage{err: dummyErr}
    	cacher, _, err := newTestCacherWithoutSyncing(backingStorage)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // compiler and generates a warning in Sun Studio.  The Nokia Symbian
    // and the IBM XL C/C++ compiler try to instantiate a copy constructor
    // for objects passed through ellipsis (...), failing for uncopyable
    // objects.  We define this to ensure that only POD is passed through
    // ellipsis on these systems.
    #if defined(__SYMBIAN32__) || defined(__IBMCPP__) || defined(__SUNPRO_CC)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    the TF2 Embedding API. This is designed for applications that have an
    embedding lookup on the SparseCore, followed by one or more dense layers on
    TensorCores, optionally followed by a backward pass (training update) with
    more ops on the SparseCore. Ops are broken up into:
      1. SC forward pass
      2. TC forward/backward pass
      3. SC backward pass
      4. non-TPU loop counter updates
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. src/sync/atomic/atomic_test.go

    		}
    	}()
    	f()
    }
    
    func TestUnaligned64(t *testing.T) {
    	// Unaligned 64-bit atomics on 32-bit systems are
    	// a continual source of pain. Test that on 32-bit systems they crash
    	// instead of failing silently.
    	if !arch32 {
    		t.Skip("test only runs on 32-bit systems")
    	}
    
    	x := make([]uint32, 4)
    	p := (*uint64)(unsafe.Pointer(&x[1])) // misaligned
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    		// the pod may still be setting up at this point.
    		return status.IsTerminationRequested()
    	}
    	// an unknown pod is considered not to be terminating (use ShouldPodContainersBeTerminating in
    	// cleanup loops to avoid failing to cleanup pods that have already been removed from config)
    	return false
    }
    
    func (p *podWorkers) ShouldPodContainersBeTerminating(uid types.UID) bool {
    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top