Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,145 for continueCh (0.25 sec)

  1. src/internal/types/testdata/check/labels.go

    	if x == 0 {
    		for {
    			continue L1 /* ERROR "invalid continue label L1" */
    		}
    	}
    }
    
    func f3() {
    L1:
    L2:
    L3:
    	for {
    		break L1 /* ERROR "invalid break label L1" */
    		break L2 /* ERROR "invalid break label L2" */
    		break L3
    		continue L1 /* ERROR "invalid continue label L1" */
    		continue L2 /* ERROR "invalid continue label L2" */
    		continue L3
    		goto L1
    		goto L2
    		goto L3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/text/template/parse/parse.go

    	}
    	return t.newBreak(pos, line)
    }
    
    // Continue:
    //
    //	{{continue}}
    //
    // Continue keyword is past.
    func (t *Tree) continueControl(pos Pos, line int) Node {
    	if token := t.nextNonSpace(); token.typ != itemRightDelim {
    		t.unexpected(token, "{{continue}}")
    	}
    	if t.rangeDepth == 0 {
    		t.errorf("{{continue}} outside {{range}}")
    	}
    	return t.newContinue(pos, line)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/positions.go

    			if n.Values != nil {
    				m = n.Values
    				continue
    			}
    			if n.Type != nil {
    				m = n.Type
    				continue
    			}
    			if l := len(n.NameList); l > 0 {
    				m = n.NameList[l-1]
    				continue
    			}
    			return n.Pos()
    		case *TypeDecl:
    			m = n.Type
    		case *VarDecl:
    			if n.Values != nil {
    				m = n.Values
    				continue
    			}
    			if n.Type != nil {
    				m = n.Type
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  5. pkg/apis/core/fuzzer/fuzzer.go

    			j.FieldPath = c.RandString()
    		},
    		func(j *core.PodExecOptions, c fuzz.Continue) {
    			j.Stdout = true
    			j.Stderr = true
    		},
    		func(j *core.PodAttachOptions, c fuzz.Continue) {
    			j.Stdout = true
    			j.Stderr = true
    		},
    		func(j *core.PodPortForwardOptions, c fuzz.Continue) {
    			if c.RandBool() {
    				j.Ports = make([]int32, c.Intn(10))
    				for i := range j.Ports {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritegeneric.go

    			if v_0.Op != OpLsh16x64 {
    				continue
    			}
    			_ = v_0.Args[1]
    			x := v_0.Args[0]
    			z := v_0.Args[1]
    			if z.Op != OpConst64 {
    				continue
    			}
    			c := auxIntToInt64(z.AuxInt)
    			if v_1.Op != OpRsh16Ux64 {
    				continue
    			}
    			_ = v_1.Args[1]
    			if x != v_1.Args[0] {
    				continue
    			}
    			v_1_1 := v_1.Args[1]
    			if v_1_1.Op != OpConst64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  7. src/net/dnsclient_unix.go

    		var p dnsmessage.Parser
    		// Ignore invalid responses as they may be malicious
    		// forgery attempts. Instead continue waiting until
    		// timeout. See golang.org/issue/13281.
    		h, err := p.Start(b[:n])
    		if err != nil {
    			continue
    		}
    		q, err := p.Question()
    		if err != nil || !checkResponse(id, query, h, q) {
    			continue
    		}
    		return p, h, nil
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.s

    TEXT ·kimd(SB), NOFRAME|NOSPLIT, $0-40
    	MOVD function+0(FP), R0
    	MOVD chain+8(FP), R1
    	LMG  src+16(FP), R2, R3 // R2=base, R3=len
    
    continue:
    	WORD $0xB93E0002 // KIMD --, R2
    	BVS  continue    // continue if interrupted
    	MOVD $0, R0      // reset R0 for pre-go1.8 compilers
    	RET
    
    // func klmd(function code, chain *[200]byte, dst, src []byte)
    TEXT ·klmd(SB), NOFRAME|NOSPLIT, $0-64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 957 bytes
    - Viewed (0)
  9. cmd/admin-bucket-handlers.go

    				continue
    			}
    
    			bucketPolicyBytes, err := io.ReadAll(io.LimitReader(reader, sz))
    			if err != nil {
    				rpt.SetStatus(bucket, fileName, err)
    				continue
    			}
    
    			bucketPolicy, err := policy.ParseBucketPolicyConfig(bytes.NewReader(bucketPolicyBytes), bucket)
    			if err != nil {
    				rpt.SetStatus(bucket, fileName, err)
    				continue
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. src/internal/poll/fd_unix.go

    		}
    		switch err {
    		case syscall.EINTR:
    			continue
    		case syscall.EAGAIN:
    			if fd.pd.pollable() {
    				if err = fd.pd.waitRead(fd.isFile); err == nil {
    					continue
    				}
    			}
    		case syscall.ECONNABORTED:
    			// This means that a socket on the listen
    			// queue was closed before we Accept()ed it;
    			// it's a silly error, so try again.
    			continue
    		}
    		return -1, nil, errcall, err
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top