Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 120 for sweep (0.06 sec)

  1. hack/local-up-cluster.sh

      local interval_time=2
      local coredns_wait_time=300
    
      # kick the coredns pods to be recreated
      ${KUBECTL} --kubeconfig="${CERT_DIR}/admin.kubeconfig" -n kube-system delete pods -l k8s-app=kube-dns
      sleep 30
    
      local coredns_pods_ready="${KUBECTL} --kubeconfig '${CERT_DIR}/admin.kubeconfig' wait --for=condition=Ready --timeout=60s pods -l k8s-app=kube-dns -n kube-system"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		ust.uss.t.Logf("%s: %d, %d, %d executing; width1=%d", execStart.Format(nsTimeFmt), ust.i, ust.j, k, ust.uc.initialSeats)
    		ust.uss.clk.EventAfterDuration(ust.genCallK(k+1), ust.uc.execDuration+ust.uc.thinkDuration)
    		ust.uss.clk.Sleep(ust.uc.execDuration)
    		ust.execSeatsIntegrator.Add(-float64(ust.uc.initialSeats))
    		ust.uss.clk.EventAfterDuration(returnSeatDemand, ust.uc.padDuration)
    		returnTime = ust.uss.clk.Now()
    	})
    	now := ust.uss.clk.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    }
                } else if (logger.isDebugEnabled()) {
                    logger.debug("[{}] Failed to access to Fesen ({})", i, SystemUtil.getSearchEngineHttpAddress(), cause);
                }
                ThreadUtil.sleep(1000L);
            }
            final String message =
                    "Fesen (" + SystemUtil.getSearchEngineHttpAddress() + ") is not available. Check the state of your Fesen cluster ("
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. cmd/iam.go

    		if err := saveIAMFormat(retryCtx, sys.store); err != nil {
    			if configRetriableErrors(err) {
    				logger.Info("Waiting for all MinIO IAM sub-system to be initialized.. possible cause (%v)", err)
    				time.Sleep(time.Duration(r.Float64() * float64(time.Second)))
    				continue
    			}
    			iamLogIf(ctx, fmt.Errorf("IAM sub-system is partially initialized, unable to write the IAM format: %w", err), logger.WarningKind)
    			return
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			if err != nil {
    				t.Fatalf("failed to update PVC %q", getPVCName(scenario.apiPVC))
    			}
    		}
    
    		if scenario.delayFunc != nil {
    			go func(scenario scenarioType) {
    				time.Sleep(5 * time.Second)
    				// Sleep a while to run after bindAPIUpdate in BindPodVolumes
    				logger.V(5).Info("Running delay function")
    				scenario.delayFunc(t, ctx, testEnv, pod, scenario.initPVs, scenario.initPVCs)
    			}(scenario)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. plugin/pkg/admission/limitranger/admission_test.go

    			value.Namespace = action.GetNamespace()
    			limitRangeList.Items = append(limitRangeList.Items, value)
    		}
    		// make the handler slow so concurrent calls exercise the singleflight
    		time.Sleep(time.Second)
    		return true, limitRangeList, nil
    	})
    
    	handler, _, err := newHandlerForTest(mockClient)
    	if err != nil {
    		t.Errorf("unexpected error initializing handler: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. pkg/controller/disruption/disruption_test.go

    			go dc.Run(tCtx)
    			if _, err := dc.coreClient.CoreV1().Pods(tc.pod.Namespace).Create(tCtx, tc.pod, metav1.CreateOptions{}); err != nil {
    				t.Fatalf("Failed to create pod: %v", err)
    			}
    			dc.clock.Sleep(tc.timePassed)
    			if err := dc.informerFactory.Core().V1().Pods().Informer().GetIndexer().Add(tc.pod); err != nil {
    				t.Fatalf("Failed adding pod to indexer: %v", err)
    			}
    			diff := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_attacher_test.go

    			if tc.trigerWatchEventTime > 0 && tc.trigerWatchEventTime < tc.timeout {
    				wg.Add(1)
    				go func() {
    					defer wg.Done()
    					time.Sleep(trigerWatchEventTime)
    					attachment := makeTestAttachment(attachID, nodeName, pvName)
    					attachment.Status.Attached = finalAttached
    					attachment.Status.AttachError = finalAttachErr
    					fakeWatcher.Modify(attachment)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	var secrem uint32
    	var nsecrem uint32
    	total := time.Sec*1000000000 + time.Nsec
    	elapsed := runtime.Nanotime1() - t0
    	var rv int32
    	var rc int32
    	var err error
    	// repeatedly sleep for 1 second until less than 1 second left
    	for total-elapsed > 1000000000 {
    		rv, rc, _ = BpxCondTimedWait(uint32(1), uint32(0), uint32(CW_CONDVAR), &secrem, &nsecrem)
    		if rv != 0 && rc != 112 { // 112 is EAGAIN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			name:   "pre-execute panic",
    			filter: preExecutePanicingFilter,
    		},
    		{
    			name:   "post-execute panic",
    			filter: postExecutePanicingFilter,
    		},
    	}
    
    	onExecuteFunc := func() {
    		time.Sleep(5 * time.Second)
    	}
    	postExecuteFunc := func() {}
    
    	for _, test := range testCases {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top