Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 676 for aloop (0.14 sec)

  1. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    	clock clock.Clock
    
    	// used to lock the observedRecord
    	observedRecordLock sync.Mutex
    
    	metrics leaderMetricsAdapter
    }
    
    // Run starts the leader election loop. Run will not return
    // before leader election loop is stopped by ctx or it has
    // stopped holding the leader lease
    func (le *LeaderElector) Run(ctx context.Context) {
    	defer runtime.HandleCrash()
    	defer func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/branches.go

    				case _Break:
    					if t := ctxt.breaks; t != nil {
    						s.Target = t
    					} else {
    						ls.err(s.Pos(), "break is not in a loop, switch, or select")
    					}
    				case _Continue:
    					if t := ctxt.continues; t != nil {
    						s.Target = t
    					} else {
    						ls.err(s.Pos(), "continue is not in a loop")
    					}
    				case _Fallthrough:
    					msg := "fallthrough statement out of place"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/status/server_test.go

    					},
    				},
    			},
    			statusCode: http.StatusOK,
    		},
    		{
    			name:      "redirect loop",
    			probePath: "app-health/redirect-loop/livez",
    			config: KubeAppProbers{
    				"/app-health/redirect-loop/livez": &Prober{
    					HTTPGet: &apimirror.HTTPGetAction{
    						Path: "redirect-loop",
    						Port: apimirror.IntOrString{IntVal: int32(appPort)},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. test/live_regabi.go

    // The old algorithm treated x as live on all code that
    // could flow to a return statement, so it included the
    // function entry and code above the declaration of x
    // but would not include an indirect use of x in an infinite loop.
    // Check that these cases are handled correctly.
    
    func f4(b1, b2 bool) { // x not live here
    	if b2 {
    		printint(0) // x not live here
    		return
    	}
    	var z **int
    	x := new(int) // ERROR "stack object x \*int$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. src/runtime/memmove_amd64.s

    	CMPQ	BX, $256
    	JBE	move_129through256
    
    	TESTB	$1, runtime·useAVXmemmove(SB)
    	JNZ	avxUnaligned
    
    /*
     * check and set for backwards
     */
    	CMPQ	SI, DI
    	JLS	back
    
    /*
     * forward copy loop
     */
    forward:
    	CMPQ	BX, $2048
    	JLS	move_256through2048
    
    	// If REP MOVSB isn't fast, don't use it
    	CMPB	internal∕cpu·X86+const_offsetX86HasERMS(SB), $1 // enhanced REP MOVSB/STOSB
    	JNE	fwdBy8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  6. src/net/mail/message.go

    func (p *addrParser) consumeAtom(dot bool, permissive bool) (atom string, err error) {
    	i := 0
    
    Loop:
    	for {
    		r, size := utf8.DecodeRuneInString(p.s[i:])
    		switch {
    		case size == 1 && r == utf8.RuneError:
    			return "", fmt.Errorf("mail: invalid utf-8 in address: %q", p.s)
    
    		case size == 0 || !isAtext(r, dot):
    			break Loop
    
    		default:
    			i += size
    
    		}
    	}
    
    	if i == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. src/math/big/natdiv.go

    		*temps[depth] = temps[depth].make(B + 1)
    	}
    
    	// Compute each wide digit of the quotient.
    	//
    	// TODO(rsc): Change the loop to be
    	//	for j := (m+B-1)/B*B; j > 0; j -= B {
    	// which will make the final step a regular step, letting us
    	// delete what amounts to an extra copy of the loop body below.
    	j := m
    	for j > B {
    		// Divide u[j-B:j+n] (3 wide digits) by v (2 wide digits).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  8. src/encoding/xml/read.go

    	recurse := false
    Loop:
    	for i := range tinfo.fields {
    		finfo := &tinfo.fields[i]
    		if finfo.flags&fElement == 0 || len(finfo.parents) < len(parents) || finfo.xmlns != "" && finfo.xmlns != start.Name.Space {
    			continue
    		}
    		for j := range parents {
    			if parents[j] != finfo.parents[j] {
    				continue Loop
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Removes unused results from WhileRegion ops.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateRemoveUnusedWhileResultsPass();
    
    // Hoists loop invariant ops to the outside of the loop.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateHoistLoopInvariantPass();
    
    // Creates VarHandleOps right next to the operations that use them.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    	nodeutil "k8s.io/kubernetes/pkg/util/node"
    	"k8s.io/kubernetes/pkg/util/taints"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
    )
    
    // Reconciler runs a periodic loop to reconcile the desired state of the world with
    // the actual state of the world by triggering attach detach operations.
    // Note: This is distinct from the Reconciler implemented by the kubelet volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top