Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 320 for timeEnd (0.13 sec)

  1. pkg/kubelet/prober/results/results_manager_test.go

    		select {
    		case u := <-m.Updates():
    			if expected != u {
    				t.Errorf("Expected update %v, received %v: %s", expected, u, msg)
    			}
    		case <-time.After(wait.ForeverTestTimeout):
    			t.Errorf("Timed out waiting for update %v: %s", expected, msg)
    		}
    	}
    
    	expectNoUpdate := func(msg string) {
    		// NOTE: Since updates are accumulated asynchronously, this method is not guaranteed to fail
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 02 10:55:41 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    		}
    	}
    
    	if len(relevantHooks) == 0 {
    		// no matching hooks
    		return nil
    	}
    
    	// Check if the request has already timed out before spawning remote calls
    	select {
    	case <-ctx.Done():
    		// parent context is canceled or timed out, no point in continuing
    		return apierrors.NewTimeoutError("request did not complete within requested timeout", 0)
    	default:
    	}
    
    	wg := sync.WaitGroup{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultIncomingConnectionHandler.java

                if (finished != null) {
                    LOGGER.debug("Received finished message: {}", finished);
                } else {
                    LOGGER.warn(String.format("Timed out waiting for finished message from client %s. Discarding connection.", connection));
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. src/runtime/netpoll_epoll.go

    	if errno != 0 {
    		if errno != _EINTR {
    			println("runtime: epollwait on fd", epfd, "failed with", errno)
    			throw("runtime: netpoll failed")
    		}
    		// If a timed sleep was interrupted, just return to
    		// recalculate how long we should sleep now.
    		if waitms > 0 {
    			return gList{}, 0
    		}
    		goto retry
    	}
    	var toRun gList
    	delta := int32(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/net/http/responsecontroller_test.go

    	if err == nil {
    		t.Errorf("client reading from truncated request body: got nil error, want non-nil")
    	}
    	err = <-errc // io.Copy error
    	if !errors.Is(err, os.ErrDeadlineExceeded) {
    		t.Errorf("server timed out writing request body: got err %v; want os.ErrDeadlineExceeded", err)
    	}
    }
    
    func TestResponseControllerSetPastReadDeadline(t *testing.T) {
    	run(t, testResponseControllerSetPastReadDeadline)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:20:31 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. pkg/controller/tainteviction/timed_workers.go

    	delay := fireAt.Sub(createdAt)
    	logger := klog.FromContext(ctx)
    	fWithErrorLogging := func() {
    		err := f(ctx, fireAt, args)
    		if err != nil {
    			logger.Error(err, "TaintEvictionController: timed worker failed")
    		}
    	}
    	if delay <= 0 {
    		go fWithErrorLogging()
    		return nil
    	}
    	timer := clock.AfterFunc(delay, fWithErrorLogging)
    	return &TimedWorker{
    		WorkItem:  args,
    		CreatedAt: createdAt,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. src/runtime/os_darwin.go

    // handler: the sigsend function. The signal handler code does not require
    // all the features of notes: it does not need to do a timed wait.
    // This is a separate implementation of notes, based on a pipe, that does
    // not support timed waits but is async-signal-safe.
    func sigNoteSetup(*note) {
    	if sigNoteRead != 0 || sigNoteWrite != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

                                    System.exit(1)
                                }
                                if (System.currentTimeMillis() > sanityCheck) {
                                    println "timed out waiting for stop file, failing"
                                    throw new RuntimeException("It seems the stop file was never created")
                                }
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyHttpRepoResolveIntegrationTest.groovy

            then:
            fails 'checkDeps'
            failureHasCause("Could not resolve group:projectA:1.0")
            failureHasCause("Could not GET '$repo1.uri/group/projectA/1.0/ivy-1.0.xml'")
            failureHasCause('Read timed out')
    
            when:
            server.resetExpectations()
            module1.ivy.expectGetMissing()
            module2.ivy.expectGet()
            module2.jar.expectDownload()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. pkg/util/filesystem/util_windows.go

    				"filePath", filePath, "err", lastSocketErr, "socketDialRetryPeriod",
    				socketDialRetryPeriod)
    			return false, nil
    		})
    
    	// PollImmediate will return "timed out waiting for the condition" if the function it
    	// invokes never returns true
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top