Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,013 for _Gwaiting (0.12 sec)

  1. releasenotes/notes/35059.yaml

    kind: feature
    area: traffic-management
    issue:
      - 34855
    releaseNotes:
      - |
        **Added** support for envoy to track active connections during drain and quit if active connections become zero 
                  instead of waiting for entire drain duration. This is disabled by default and can be enabled by setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 08 06:31:19 UTC 2021
    - 396 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	result := &example.PodList{}
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if err := cacher.ready.wait(context.Background()); err != nil {
    			t.Fatalf("unexpected error waiting for the cache to be ready")
    		}
    	}
    
    	// Inject error to underlying layer and check if cacher is not bypassed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. src/syscall/forkpipe2.go

    	// Number of goroutines currently forking, and thus the
    	// number of goroutines holding a conceptual write lock
    	// on ForkLock.
    	forking int
    )
    
    // hasWaitingReaders reports whether any goroutine is waiting
    // to acquire a read lock on rw. It is defined in the sync package.
    func hasWaitingReaders(rw *sync.RWMutex) bool
    
    // acquireForkLock acquires a write lock on ForkLock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 10 19:19:59 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaRetriesIntegTest.groovy

            expectPublication()
    
            ExecutionResult result = run "publish", '--info'
    
            then:
            verifyPublications()
            outputContains("Waiting 1000ms before next retry, 2 retries left")
            outputContains("Waiting 2000ms before next retry, 1 retries left")
            outputContains("after 2 retries")
        }
    
    
        def expectPublication() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/CrossVersionToolingApiSpecificationRetryTest.groovy

            then:
            true
        }
    
        @TargetGradleVersion(">=3.0")
        def "does not retry for 3.0 or later"() {
            given:
            iteration++
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

                    Thread.State.WAITING);
    
            public ThreadHandleImpl(Thread thread) {
                this.thread = thread;
            }
    
            @Override
            public ThreadHandle waitFor() {
                Date expiry = new Date(System.currentTimeMillis() + 2 * MAX_WAIT_TIME);
                if (!waitUntil(expiry)) {
                    throw new RuntimeException("timeout waiting for test thread to stop.");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

                    def stopFile = file("stop")
                    def existsFile = file("exists")
                    task('watch') {
                        doLast {
                            println "waiting for stop file"
                            long sanityCheck = System.currentTimeMillis() + 120000L
                            while (!stopFile.exists()) {
                                sleep 100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/robustio/robustio_windows.go

    package robustio
    
    import (
    	"errors"
    	"internal/syscall/windows"
    	"syscall"
    )
    
    const errFileNotFound = syscall.ERROR_FILE_NOT_FOUND
    
    // isEphemeralError returns true if err may be resolved by waiting.
    func isEphemeralError(err error) bool {
    	var errno syscall.Errno
    	if errors.As(err, &errno) {
    		switch errno {
    		case syscall.ERROR_ACCESS_DENIED,
    			syscall.ERROR_FILE_NOT_FOUND,
    			windows.ERROR_SHARING_VIOLATION:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 26 15:28:04 UTC 2019
    - 615 bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/BuildStatusRendererTest.groovy

            then:
            statusBar.display == '<-------------> 0% INITIALIZING [0ms]'
    
            when:
            renderer.onOutput(complete(1, 'WAITING'))
            renderer.onOutput(updateNow())
    
            then:
            statusBar.display == '<-------------> 0% WAITING'
        }
    
        def "formats build"() {
            given:
            def event1 = startRootBuildOperation(1)
    
            when:
            renderer.onOutput(event1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. releasenotes/notes/iptables-lock.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 15:20:31 UTC 2023
    - 245 bytes
    - Viewed (0)
Back to top