Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 336 for aloop (0.35 sec)

  1. src/encoding/base32/base32.go

    func (enc *Encoding) Encode(dst, src []byte) {
    	if len(src) == 0 {
    		return
    	}
    	// enc is a pointer receiver, so the use of enc.encode within the hot
    	// loop below means a nil check at every operation. Lift that nil check
    	// outside of the loop to speed up the encoder.
    	_ = enc.encode
    
    	di, si := 0, 0
    	n := (len(src) / 5) * 5
    	for si < n {
    		// Combining two 32 bit loads allows the same code to be used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. src/text/template/doc.go

    		of the array, slice, or map and T1 is executed.
    
    	{{break}}
    		The innermost {{range pipeline}} loop is ended early, stopping the
    		current iteration and bypassing all remaining iterations.
    
    	{{continue}}
    		The current iteration of the innermost {{range pipeline}} loop is
    		stopped, and the loop starts the next iteration.
    
    	{{template "name"}}
    		The template with the specified name is executed with nil data.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/import.go

    				return err == nil && !fi.IsDir()
    			})
    
    			if haveGoMod {
    				return "", false, nil
    			}
    			parent := filepath.Dir(d)
    			if parent == d {
    				// Break the loop, as otherwise we'd loop
    				// forever if d=="." and mdir=="".
    				break
    			}
    			d = parent
    		}
    	}
    
    	// Now committed to returning dir (not "").
    
    	// Are there Go source files in the directory?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/controllermanager.go

    		Long: `The Kubernetes controller manager is a daemon that embeds
    the core control loops shipped with Kubernetes. In applications of robotics and
    automation, a control loop is a non-terminating loop that regulates the state of
    the system. In Kubernetes, a controller is a control loop that watches the shared
    state of the cluster through the apiserver and makes changes attempting to move the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    }
    
    // NewDesiredStateOfWorldPopulator returns a new instance of
    // DesiredStateOfWorldPopulator.
    //
    // kubeClient - used to fetch PV and PVC objects from the API server
    // loopSleepDuration - the amount of time the populator loop sleeps between
    // successive executions
    //
    // podManager - the kubelet podManager that is the source of truth for the pods
    // that exist on this host
    //
    // desiredStateOfWorld - the cache to populate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    }
    
    func newETCD3Check(c storagebackend.Config, timeout time.Duration, stopCh <-chan struct{}) (func() error, error) {
    	// constructing the etcd v3 client blocks and times out if etcd is not available.
    	// retry in a loop in the background until we successfully create the client, storing the client or error encountered
    
    	lock := sync.RWMutex{}
    	var prober *etcd3ProberMonitor
    	clientErr := fmt.Errorf("etcd client connection not yet established")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/cmd/doc/main.go

    	telemetry.CountFlags("doc/flag:", *flag.CommandLine)
    	if chdir != "" {
    		if err := os.Chdir(chdir); err != nil {
    			return err
    		}
    	}
    	var paths []string
    	var symbol, method string
    	// Loop until something is printed.
    	dirs.Reset()
    	for i := 0; ; i++ {
    		buildPackage, userPath, sym, more := parseArgs(flagSet.Args())
    		if i > 0 && !more { // Ignore the "more" bit on the first iteration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/inlheur/scoring.go

    //	                              }
    //
    // Function 'foo' above on the left has no interesting properties,
    // thus as a result the most we'll adjust any call to is the value for
    // "call in loop". If the calculated cost of the function is 150, and
    // the in-loop adjustment is 5 (for example), then there is not much
    // point treating it as inlinable. On the other hand "bar" has a param
    // property (parameter "x" feeds unmodified to an "if" statement") and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/order.go

    			}
    
    			n.X = o.copyExpr(r)
    
    		case k == types.TMAP:
    			if isMapClear(n) {
    				// Preserve the body of the map clear pattern so it can
    				// be detected during walk. The loop body will not be used
    				// when optimizing away the range loop to a runtime call.
    				orderBody = false
    				break
    			}
    
    			// copy the map value in case it is a map literal.
    			// TODO(rsc): Make tmp = literal expressions reuse tmp.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	ELIBBAD         = syscall.Errno(0x50)
    	ELIBEXEC        = syscall.Errno(0x53)
    	ELIBMAX         = syscall.Errno(0x52)
    	ELIBSCN         = syscall.Errno(0x51)
    	ELNRNG          = syscall.Errno(0x30)
    	ELOOP           = syscall.Errno(0x28)
    	EMEDIUMTYPE     = syscall.Errno(0x7c)
    	EMSGSIZE        = syscall.Errno(0x5a)
    	EMULTIHOP       = syscall.Errno(0x48)
    	ENAMETOOLONG    = syscall.Errno(0x24)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top