Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,128 for continues (0.2 sec)

  1. 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)
  2. src/go/doc/testdata/testing.1.golden

    	func (c *B) Error(args ...any)
    
    	// Errorf is equivalent to Logf() followed by Fail(). 
    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typeset_test.go

    		"{E}; type E interface{}":           "𝓤",
    		"{E}; type E interface{int;string}": "∅",
    		"{E}; type E interface{comparable}": "{comparable}",
    	} {
    		// parse
    		errh := func(error) {} // dummy error handler so that parsing continues in presence of errors
    		src := "package p; type T interface" + body
    		file, err := syntax.Parse(nil, strings.NewReader(src), errh, nil, 0)
    		if err != nil {
    			t.Fatalf("%s: %v (invalid test case)", body, err)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 07 21:37:14 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/ExclusiveCacheAccessingWorkerTest.groovy

            then:
            result == 2
    
            when:
            cacheAccessWorker.stop()
    
            then:
            def e = thrown(RuntimeException)
            e == failure
        }
    
        def "continues on failed operations collecting only the first failure"() {
            given:
            def counter = 0
            def failure = new RuntimeException()
            start(cacheAccessWorker)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperLoggingIntegrationTest.groovy

            then:
            outputContains("Welcome to Gradle $wrapperExecuter.distribution.version.version!")
        }
    
        @Requires(UnitTestPreconditions.NotWindows)
        def "wrapper logs and continues when there is a problem setting permissions"() {
            given: "malformed distribution"
            // Repackage distribution with bin/gradle removed so permissions cannot be set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/MD4.java

            context[2] = 0x98BADCFE;
            context[3] = 0x10325476;
            count = 0L;
            for (int i = 0; i < BLOCK_LENGTH; i++)
                buffer[i] = 0;
        }
    
        /**
         * Continues an MD4 message digest using the input byte.
         */
        public void engineUpdate (byte b) {
            // compute number of bytes still unhashed; ie. present in buffer
            int i = (int)(count % BLOCK_LENGTH);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top