Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,022 for continueCh (0.25 sec)

  1. hack/conformance/check_conformance_test_requirements.go

    	files, err := os.ReadDir(e2ePath)
    	if err != nil {
    		return fmt.Errorf("Failed to read dir %s: %w", e2ePath, err)
    	}
    	for _, file := range files {
    		if file.IsDir() {
    			continue
    		}
    		if !regGoFile.MatchString(file.Name()) {
    			continue
    		}
    		e2eFile := fmt.Sprintf("%s/%s", e2ePath, file.Name())
    		err = checkAllProviders(e2eFile)
    		if err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 29 06:30:57 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonCommandExecution.java

         * <p>May be null if no action has set the result yet.
         */
        public Object getResult() {
            return this.result;
        }
    
        /**
         * Continues (or starts) execution.
         * <p>
         * Each action should call this method if it determines that execution should continue.
         *
         * @return true if execution did occur, false if this execution has already occurred.
         */
        public boolean proceed() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/path/filepath/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
    				}
    			}
    		}
    		return false, nil
    	}
    	return len(name) == 0, nil
    }
    
    // scanChunk gets the next segment of pattern, which is a non-star string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/ContinueIntegrationTest.groovy

    class ContinueIntegrationTest extends AbstractIntegrationSpec {
    
        def "--continue flag PRESENT"() {
            given:
            buildScript()
    
            when:
            args("--continue")
            fails(":failTask", ":successTask")
    
            then:
            output.contains("2 actionable tasks: 2 executed")
        }
    
        def "--continue flag MISSING"() {
            given:
            buildScript()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/ssa_test.go

    			fd, ok := d.(*ast.FuncDecl)
    			if !ok {
    				continue
    			}
    			if !strings.HasPrefix(fd.Name.Name, "Test") {
    				continue
    			}
    			if fd.Recv != nil {
    				continue
    			}
    			if fd.Type.Results != nil {
    				continue
    			}
    			if len(fd.Type.Params.List) != 1 {
    				continue
    			}
    			p := fd.Type.Params.List[0]
    			if len(p.Names) != 1 {
    				continue
    			}
    			s, ok := p.Type.(*ast.StarExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. 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)
Back to top