Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,030 for continueCh (0.23 sec)

  1. src/go/types/stmt.go

    		}
    		switch s.Tok {
    		case token.BREAK:
    			if ctxt&breakOk == 0 {
    				check.error(s, MisplacedBreak, "break not in for, switch, or select statement")
    			}
    		case token.CONTINUE:
    			if ctxt&continueOk == 0 {
    				check.error(s, MisplacedContinue, "continue not in for statement")
    			}
    		case token.FALLTHROUGH:
    			if ctxt&fallthroughOk == 0 {
    				var msg string
    				switch {
    				case ctxt&finalSwitchCase != 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/meta/priority_test.go

    		}
    		if len(tc.err) == 0 && actualErr == nil {
    			continue
    		}
    		if len(tc.err) == 0 && actualErr != nil {
    			t.Errorf("%s: unexpected err: %v", tc.name, actualErr)
    			continue
    		}
    		if len(tc.err) > 0 && actualErr == nil {
    			t.Errorf("%s: missing expected err: %v", tc.name, tc.err)
    			continue
    		}
    		if !strings.Contains(actualErr.Error(), tc.err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 06 15:24:58 UTC 2018
    - 13.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/parse.go

    	t := *s
    	for n := 0; n < max; n++ {
    		if t.spaces > 0 {
    			t.spaces--
    			continue
    		}
    		if t.i >= len(t.text) && eolOK {
    			continue
    		}
    		if t.i < len(t.text) {
    			switch t.text[t.i] {
    			case '\t':
    				t.spaces = 4 - (t.i-t.tab)&3 - 1
    				t.i++
    				t.tab = t.i
    				continue
    			case ' ':
    				t.i++
    				continue
    			}
    		}
    		if n >= min {
    			break
    		}
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/path/match.go

    				if ok {
    					// if we're the last chunk, make sure we exhausted the name
    					if len(pattern) == 0 && len(t) > 0 {
    						continue
    					}
    					name = t
    					continue Pattern
    				}
    				if err != nil {
    					return false, err
    				}
    			}
    		}
    		// Before returning false with no error,
    		// check that the remainder of the pattern is syntactically valid.
    		for len(pattern) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  6. internal/kms/kms.go

    		Enclave:    c.enclave,
    		Prefix:     req.Prefix,
    		ContinueAt: req.ContinueAt,
    		Limit:      req.Limit,
    	})
    	if err != nil {
    		return nil, "", errListingKeysFailed(err)
    	}
    
    	names := make([]string, 0, len(resp.Items))
    	for _, item := range resp.Items {
    		names = append(names, item.Name)
    	}
    	return names, resp.ContinueAt, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__rbac.authorization.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
    - 352.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/list.go

    		item := item.(*Item)
    		if len(item.Blocks) == 0 {
    			continue
    		}
    		var text *Text
    		switch b := item.Blocks[0].(type) {
    		default:
    			continue
    		case *Paragraph:
    			text = b.Text
    		case *Text:
    			text = b
    		}
    		if len(text.Inline) < 1 {
    			continue
    		}
    		pl, ok := text.Inline[0].(*Plain)
    		if !ok {
    			continue
    		}
    		s := pl.Text
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/stmt.go

    		}
    		switch s.Tok {
    		case syntax.Break:
    			if ctxt&breakOk == 0 {
    				check.error(s, MisplacedBreak, "break not in for, switch, or select statement")
    			}
    		case syntax.Continue:
    			if ctxt&continueOk == 0 {
    				check.error(s, MisplacedContinue, "continue not in for statement")
    			}
    		case syntax.Fallthrough:
    			if ctxt&fallthroughOk == 0 {
    				var msg string
    				switch {
    				case ctxt&finalSwitchCase != 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top