Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,850 for continues (0.14 sec)

  1. src/cmd/compile/internal/syntax/branches.go

    package syntax
    
    import "fmt"
    
    // checkBranches checks correct use of labels and branch
    // statements (break, continue, fallthrough, goto) in a function body.
    // It catches:
    //   - misplaced breaks, continues, and fallthroughs
    //   - bad labeled breaks and continues
    //   - invalid, unused, duplicate, and missing labels
    //   - gotos jumping over variable declarations and into blocks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            1 * actionFactory1.createAction(!null, !null) >> { throw failure }
            1 * executionListener.onFailure(failure)
            0 * executionListener._
        }
    
        def "continues on failure to parse logging configuration"() {
            when:
            def commandLineExecution = factory.convert(["--logging=broken"])
            commandLineExecution.execute(executionListener)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java

     *
     * <p>The execution of tasks is done by one thread as long as there are tasks left in the queue.
     * When a task is {@linkplain Thread#interrupt interrupted}, execution of subsequent tasks
     * continues. See {@link QueueWorker#workOnQueue} for details.
     *
     * <p>{@code RuntimeException}s thrown by tasks are simply logged and the executor keeps trucking.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/SequentialExecutor.java

     *
     * <p>The execution of tasks is done by one thread as long as there are tasks left in the queue.
     * When a task is {@linkplain Thread#interrupt interrupted}, execution of subsequent tasks
     * continues. See {@link QueueWorker#workOnQueue} for details.
     *
     * <p>{@code RuntimeException}s thrown by tasks are simply logged and the executor keeps trucking.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. cmd/bucket-listobjects-handlers.go

    // criteria to return a subset of the objects in a bucket.
    //
    // NOTE: It is recommended that this API to be used for application development.
    // MinIO continues to support ListObjectsV1 and V2 for supporting legacy tools.
    func (api objectAPIHandlers) ListObjectsV2MHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "ListObjectsV2M")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // that matches regex.
    # define ASSERT_EXIT(statement, predicate, regex) \
        GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
    
    // Like ASSERT_EXIT, but continues on to successive tests in the
    // test case, if any:
    # define EXPECT_EXIT(statement, predicate, regex) \
        GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsIntegrationTest.groovy

            when:
            executer.usingInitScript(initScript)
            run("thing")
    
            then:
            outputContains("EVENT: finish :thing UP-TO-DATE")
        }
    
        def "reports failure to handle event and continues with task execution"() {
            loggingListener()
            brokenListener()
            buildFile << """
                import ${BuildEventsListenerRegistry.name}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // that matches regex.
    # define ASSERT_EXIT(statement, predicate, regex) \
        GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
    
    // Like ASSERT_EXIT, but continues on to successive tests in the
    // test case, if any:
    # define EXPECT_EXIT(statement, predicate, regex) \
        GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/html/template/escape.go

    }
    
    // rangeContext holds information about the current range loop.
    type rangeContext struct {
    	outer     *rangeContext // outer loop
    	breaks    []context     // context at each break action
    	continues []context     // context at each continue action
    }
    
    // makeEscaper creates a blank escaper for the given set.
    func makeEscaper(n *nameSpace) escaper {
    	return escaper{
    		n,
    		map[string]context{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
Back to top