Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 376 for timeEnd (0.37 sec)

  1. pkg/controlplane/controller/kubernetesservice/controller.go

    // Start begins the core controller loops that must exist for bootstrapping
    // a cluster.
    func (c *Controller) Start(stopCh <-chan struct{}) {
    	if !cache.WaitForCacheSync(stopCh, c.serviceSynced) {
    		runtime.HandleError(fmt.Errorf("timed out waiting for caches to sync"))
    		return
    	}
    	// Reconcile during first run removing itself until server is ready.
    	endpointPorts := createEndpointPortSpec(c.PublicServicePort, "https")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/nettest/conntest.go

    		}
    		checkForTimeoutError(t, err)
    		if len(deadlineSet) == 0 {
    			t.Error("Read timed out before deadline is set")
    		}
    	}()
    	go func() {
    		defer wg.Done()
    		var err error
    		for err == nil {
    			_, err = c1.Write(make([]byte, 1024))
    		}
    		checkForTimeoutError(t, err)
    		if len(deadlineSet) == 0 {
    			t.Error("Write timed out before deadline is set")
    		}
    	}()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. pkg/config/mesh/watcher_test.go

    	m.IngressClass = "foo"
    	writeMessage(t, path, m)
    
    	select {
    	case <-doneCh:
    		assert.Equal(t, newM, m)
    		assert.Equal(t, w.Mesh(), newM)
    		break
    	case <-time.After(time.Second * 5):
    		t.Fatal("timed out waiting for update")
    	}
    }
    
    func newWatcher(t testing.TB, filename string, multi bool) mesh.Watcher {
    	t.Helper()
    	w, err := mesh.NewFileWatcher(filewatcher.NewWatcher(), filename, multi)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_amd64.s

    	SYSCALL
    	RET
    
    TEXT runtime·timer_create(SB),NOSPLIT,$0-28
    	MOVL	clockid+0(FP), DI
    	MOVQ	sevp+8(FP), SI
    	MOVQ	timerid+16(FP), DX
    	MOVL	$SYS_timer_create, AX
    	SYSCALL
    	MOVL	AX, ret+24(FP)
    	RET
    
    TEXT runtime·timer_settime(SB),NOSPLIT,$0-28
    	MOVL	timerid+0(FP), DI
    	MOVL	flags+4(FP), SI
    	MOVQ	new+8(FP), DX
    	MOVQ	old+16(FP), R10
    	MOVL	$SYS_timer_settime, AX
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/util/traffic/generator.go

    	select {
    	case <-g.stopped:
    		t.Stop()
    		if g.result.TotalRequests == 0 {
    			g.t.Fatal("no requests completed before stopping the traffic generator")
    		}
    		return g.result
    	case <-t.C:
    		g.t.Fatal("timed out waiting for result")
    	}
    	// Can never happen, but the compiler doesn't know that Fatal terminates
    	return Result{}
    }
    
    func fillInDefaults(cfg *Config) {
    	if cfg.Interval == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 22:50:35 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/wrap.go

    			}
    			// This call can have different handlers, but the default chain rate limits. Call it after the metrics are updated
    			// in case the rate limit delays it.  If you outrun the rate for this one timed out requests, something has gone
    			// seriously wrong with your server, but generally having a logging signal for timeouts is useful.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

            val testFileText = FileUtil.loadFile(File(filePath))
            val fileTextWithoutSymbolsData = testFileText.substringBeforeLast(SYMBOLS_TAG).trimEnd()
            appendLine(fileTextWithoutSymbolsData)
            appendLine()
            appendLine(SYMBOLS_TAG)
            append(rendered)
        }
    
        private const val SYMBOLS_TAG = "// SYMBOLS:"
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_386.s

    TEXT runtime·timer_create(SB),NOSPLIT,$0-16
    	MOVL	$SYS_timer_create, AX
    	MOVL	clockid+0(FP), BX
    	MOVL	sevp+4(FP), CX
    	MOVL	timerid+8(FP), DX
    	INVOKE_SYSCALL
    	MOVL	AX, ret+12(FP)
    	RET
    
    TEXT runtime·timer_settime(SB),NOSPLIT,$0-20
    	MOVL	$SYS_timer_settime, AX
    	MOVL	timerid+0(FP), BX
    	MOVL	flags+4(FP), CX
    	MOVL	new+8(FP), DX
    	MOVL	old+12(FP), SI
    	INVOKE_SYSCALL
    	MOVL	AX, ret+16(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/MoreExecutors.java

          ListeningExecutorService executorService,
          Collection<? extends Callable<T>> tasks,
          boolean timed,
          Duration timeout)
          throws InterruptedException, ExecutionException, TimeoutException {
        return invokeAnyImpl(
            executorService, tasks, timed, toNanosSaturated(timeout), TimeUnit.NANOSECONDS);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    				if plugin.SocketPath == socketPath && plugin.Timestamp.After(previousTimestamp) {
    					return true, nil
    				}
    			}
    			return false, nil
    		},
    	)
    	if err != nil {
    		t.Fatalf("Timed out waiting for plugin to be registered:\n%s.", socketPath)
    	}
    }
    
    func waitForUnregistration(
    	t *testing.T,
    	socketPath string,
    	asw cache.ActualStateOfWorld) {
    	err := retryWithExponentialBackOff(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top