Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for continueCh (0.48 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpPPC64MOVDconst {
    				continue
    			}
    			m := auxIntToInt64(v_0.AuxInt)
    			if v_1.Op != OpPPC64ROTLWconst {
    				continue
    			}
    			r := auxIntToInt64(v_1.AuxInt)
    			x := v_1.Args[0]
    			if !(isPPC64WordRotateMask(m)) {
    				continue
    			}
    			v.reset(OpPPC64RLWINM)
    			v.AuxInt = int64ToAuxInt(encodePPC64RotateMask(r, m, 32))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    			s.condBranch(n.Cond, bBody, bEnd, 1)
    		} else {
    			b := s.endBlock()
    			b.Kind = ssa.BlockPlain
    			b.AddEdgeTo(bBody)
    		}
    
    		// set up for continue/break in body
    		prevContinue := s.continueTo
    		prevBreak := s.breakTo
    		s.continueTo = bIncr
    		s.breakTo = bEnd
    		var lab *ssaLabel
    		if sym := n.Label; sym != nil {
    			// labeled for loop
    			lab = s.label(sym)
    			lab.continueTarget = bIncr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    				write: &http2writeGoAway{
    					maxStreamID: sc.maxClientStreamID,
    					code:        sc.goAwayCode,
    				},
    			})
    			continue
    		}
    		if sc.needToSendSettingsAck {
    			sc.needToSendSettingsAck = false
    			sc.startFrameWrite(http2FrameWriteRequest{write: http2writeSettingsAck{}})
    			continue
    		}
    		if !sc.inGoAway || sc.goAwayCode == http2ErrCodeNo {
    			if wr, ok := sc.writeSched.Pop(); ok {
    				if wr.isControl() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    save(e,t){let r=t.prop,n=[];for(let a in t._autoprefixerValues){let s=t._autoprefixerValues[a];if(s===t.value)continue;let o,u=K2.prefix(r);if(u==="-pie-")continue;if(u===a){o=t.value=s,n.push(o);continue}let c=e.prefixed(r,a),f=t.parent;if(!f.every(b=>b.prop!==c)){n.push(o);continue}let d=s.replace(/\s+/," ");if(f.some(b=>b.prop===t.prop&&b.value.replace(/\s+/," ")===d)){n.push(o);continue}let m=this.clone(t,{value:s});o=t.parent.insertBefore(t,m),n.push(o)}return n}check(e){let t=e.value;return ...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  6. pkg/apis/core/validation/validation.go

    	}
    
    	// If the old object had an invalid API group in the data source or data source reference, continue to allow it in the new object
    	opts.AllowInvalidAPIGroupInDataSourceOrRef = allowInvalidAPIGroupInDataSourceOrRef(&oldPvc.Spec)
    
    	if oldPvc.Spec.VolumeAttributesClassName != nil {
    		// If the old object had a volume attributes class, continue to validate it in the new object.
    		opts.EnableVolumeAttributesClass = true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. doc/go_spec.html

    		}
    	}
    </pre>
    
    <h3 id="Continue_statements">Continue statements</h3>
    
    <p>
    A "continue" statement begins the next iteration of the
    innermost enclosing <a href="#For_statements">"for" loop</a>
    by advancing control to the end of the loop block.
    The "for" loop must be within the same function.
    </p>
    
    <pre class="ebnf">
    ContinueStmt = "continue" [ Label ] .
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  8. CHANGELOG/CHANGELOG-1.29.md

      When `sendInitialEvents ListOption` is set together with `watch=true`, it begins the watch stream with synthetic init events followed by a synthetic `Bookmark`, after which the server continues streaming events. ([#119557](https://github.com/kubernetes/kubernetes/pull/119557), [@p0lyn0mial](https://github.com/p0lyn0mial))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - If `kubeadm reset` finds no etcd member ID for the peer it removes during the `remove-etcd-member` phase, it continues immediately to other phases, instead of retrying the phase for up to 3 minutes before continuing. ([#117948](https://github.com/kubernetes/kubernetes/pull/117948), [@dlipovetsky](https://github.com/dlipovetsky)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    		if rule.Jump == nil {
    			continue
    		}
    
    		if !tracer.ruleMatches(rule, sourceIP, protocol, destIP, destPort) {
    			continue
    		}
    		// record the matched rule for debugging purposes
    		tracer.matches = append(tracer.matches, rule.Raw)
    
    		switch rule.Jump.Value {
    		case "KUBE-MARK-MASQ":
    			tracer.markMasq = true
    			continue
    
    		case "ACCEPT", "REJECT", "DROP":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
Back to top