Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 96 for aloop (0.09 sec)

  1. cmd/kubelet/app/server.go

    	hostnameOverridden bool,
    	nodeName types.NodeName,
    	nodeIPs []net.IP) (k kubelet.Bootstrap, err error) {
    	// TODO: block until all sources have delivered at least one update to the channel, or break the sync loop
    	// up into "per source" synchronizations
    
    	k, err = kubelet.NewMainKubelet(&kubeServer.KubeletConfiguration,
    		kubeDeps,
    		&kubeServer.ContainerRuntimeOptions,
    		hostname,
    		hostnameOverridden,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	// start the first one
    	if !isPreviouslyInitialized {
    		changes.InitContainersToStart = append(changes.InitContainersToStart, 0)
    	}
    
    	// reverse the InitContainersToStart, as the above loop iterated through the
    	// init containers backwards, but we want to start them as per the order in
    	// the pod spec.
    	l := len(changes.InitContainersToStart)
    	for i := 0; i < l/2; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/types.go

    	// - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:
    	//	  "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if",
    	//	  "import", "let", "loop", "package", "namespace", "return".
    	// Examples:
    	//   - Expression accessing a property named "namespace": {"Expression": "object.__namespace__ > 0"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    	// buffer when long path support is enabled. The current directory may also
    	// change between subsequent calls of GetCurrentDirectory. As a result, we
    	// need to retry the call in a loop until the current directory fits, each
    	// time with a bigger buffer.
    	for {
    		n, e := GetCurrentDirectory(uint32(len(b)), &b[0])
    		if e != nil {
    			return "", e
    		}
    		if int(n) <= len(b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // 	  "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if",
      // 	  "import", "let", "loop", "package", "namespace", "return".
      // Examples:
      //   - Expression accessing a property named "namespace": {"Expression": "object.__namespace__ > 0"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                element_shape_acquired = true;
              } else if (TF::WhileOp while_op =
                             llvm::dyn_cast<TF::WhileOp>(use.getOwner())) {
                // Tensorlist is passed into a while loop, check inside the body
                // function.
                auto inside_uses = while_op.body_function()
                                       .getArgument(use.getOperandNumber())
                                       .getUses();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Futures.java

       *       RuntimeException} ({@code get} implementations are discouraged from throwing such
       *       exceptions).
       * </ul>
       *
       * <p>The overall principle is to eliminate all checked exceptions: to loop to avoid {@code
       * InterruptedException}, to pass through {@code CancellationException}, and to wrap any exception
       * from the underlying computation in an {@code UncheckedExecutionException} or {@code
       * ExecutionError}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	}
    	importcfg := pathf("%s/importcfg", workdir)
    	if err := os.WriteFile(importcfg, buf.Bytes(), 0666); err != nil {
    		fatalf("cannot write importcfg file: %v", err)
    	}
    
    	var archive string
    	// The next loop will compile individual non-Go files.
    	// Hand the Go files to the compiler en masse.
    	// For packages containing assembly, this writes go_asm.h, which
    	// the assembly files will need.
    	pkgName := pkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // 	  "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if",
      // 	  "import", "let", "loop", "package", "namespace", "return".
      // Examples:
      //   - Expression accessing a property named "namespace": {"Expression": "object.__namespace__ > 0"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/net/http/httputil/reverseproxy_test.go

    		t.Errorf("response X-Modified header = %q; want %q", got, want)
    	}
    
    	if _, err := io.WriteString(rwc, "Hello\n"); err != nil {
    		t.Fatalf("Failed to write first message: %v", err)
    	}
    
    	// Read loop.
    
    	br := bufio.NewReader(rwc)
    	for {
    		line, err := br.ReadString('\n')
    		switch {
    		case line == terminalMsg: // this case before "err == io.EOF"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top