Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 553 for delay (0.07 sec)

  1. pkg/kubelet/prober/worker_test.go

    		expectContinue(t, w, w.doProbe(ctx), "during initial delay")
    		// Default value depends on probe, Success for liveness, Failure for readiness, Unknown for startup
    		switch probeType {
    		case liveness:
    			expectResult(t, w, results.Success, "during initial delay")
    		case readiness:
    			expectResult(t, w, results.Failure, "during initial delay")
    		case startup:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. pkg/controller/podgc/gc_controller_test.go

    				testutil.NewNode("existing1"),
    				testutil.NewNode("existing2"),
    			},
    			delay: 2 * quarantineTime,
    			pods: []*v1.Pod{
    				makePod("a", "existing1", v1.PodRunning),
    				makePod("b", "existing2", v1.PodFailed),
    				makePod("c", "existing2", v1.PodSucceeded),
    			},
    			itemsInQueue: 2,
    		},
    		{
    			name:  "no nodes",
    			delay: 2 * quarantineTime,
    			pods: []*v1.Pod{
    				makePod("a", "deleted", v1.PodFailed),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/testers/AbstractListTester.java

       */
      @Override
      protected void expectContents(Collection<E> expectedCollection) {
        List<E> expectedList = Helpers.copyToList(expectedCollection);
        // Avoid expectEquals() here to delay reason manufacture until necessary.
        if (getList().size() != expectedList.size()) {
          fail("size mismatch: " + reportContext(expectedList));
        }
        for (int i = 0; i < expectedList.size(); i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/runtime/proc_test.go

    				<-start
    				for i := 0; i < b.N; i++ {
    					// sender
    					spin(delay + wakeDelay)
    					ping <- struct{}{}
    					// receiver
    					spin(delay)
    					<-pong
    				}
    				done <- struct{}{}
    			}()
    			go func() {
    				for i := 0; i < b.N; i++ {
    					// receiver
    					spin(delay)
    					<-ping
    					// sender
    					spin(delay + wakeDelay)
    					pong <- struct{}{}
    				}
    				done <- struct{}{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller_test.go

    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay:   200 * time.Millisecond,
    					podName: "pod0",
    					podIP:   "10.0.0.0",
    				},
    				{
    					delay:   100 * time.Millisecond,
    					podName: "pod1",
    					podIP:   "10.0.0.1",
    				},
    				{
    					delay:   100 * time.Millisecond,
    					podName: "pod2",
    					podIP:   "10.0.0.2",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. cmd/batch-job-common-types_gen.go

    		case "Attempts":
    			z.Attempts, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "Attempts")
    				return
    			}
    		case "Delay":
    			z.Delay, err = dc.ReadDuration()
    			if err != nil {
    				err = msgp.WrapError(err, "Delay")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  7. 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,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. cmd/batch-expire_test.go

        token: Bearer xxxxx # optional authentication token for the notification endpoint
      
      retry:
        attempts: 10 # number of retries for the job before giving up
        delay: 500ms # least amount of delay between each retry
    `
    	var job BatchJobRequest
    	err := yaml.UnmarshalStrict([]byte(expireYaml), &job)
    	if err != nil {
    		t.Fatal("Failed to parse batch-job-expire yaml", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. samples/guide/src/main/java/okhttp3/recipes/CancelCall.java

      private final OkHttpClient client = new OkHttpClient();
    
      public void run() throws Exception {
        Request request = new Request.Builder()
            .url("http://httpbin.org/delay/2") // This URL is served with a 2 second delay.
            .build();
    
        final long startNanos = System.nanoTime();
        final Call call = client.newCall(request);
    
        // Schedule a job to cancel the call in 1 second.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 12 03:31:36 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  10. releasenotes/notes/envoy-eds-cache.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Enabled** the configuration to use endpoint cache at Envoy when there is a delay
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 09:51:48 UTC 2024
    - 233 bytes
    - Viewed (0)
Back to top