Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,367 for continueCh (0.28 sec)

  1. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/continue.txt

    expression: CONTINUE
    text: continue
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 62 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/continue.kt

    fun test(b: Boolean) {
        while (true) {
            if (b) {
                break
            } else {
                <expr>continue</expr>
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 145 bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildContinueOnSingleFailureIntegrationTest.groovy

            assertTaskExecutedOnce(":buildB", ":succeeds")
            assertTaskNotExecuted(":", ":delegate")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/2520")
        def "continues build when delegated task fails when run with --continue"() {
            when:
            buildA.buildFile << """
        task delegateWithFailure {
            dependsOn gradle.includedBuild('buildB').task(':fails')
        }
        task delegateWithSuccess {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/link/internal/benchmark/bench.go

    	}
    	fmt.Fprintf(w, "%s 1 %d ns/op\n", makeBenchString("total time"+gcString), totTime.Nanoseconds())
    }
    
    // Start marks the beginning of a new measurement phase.
    // Once a metric is started, it continues until either a Report is issued, or another Start is called.
    func (m *Metrics) Start(name string) {
    	if m == nil {
    		return
    	}
    	m.closeMark()
    	m.curMark = &mark{name: name}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. 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)
Back to top