Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 223 for outcomes (0.33 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

            println "> Expecting ${outcomes.size()} tasks with outcomes:"
            outcomes.values().groupBy { it }.sort().forEach { outcome, instances -> println "> - $outcome: ${instances.size()}" }
    
            def outcomesWithMatchingTasks = outcomes.findAll { result.task(it.key) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ChainingHttpHandler.java

            lock.lock();
            RequestOutcome outcome;
            try {
                outcome = new RequestOutcome(lock, httpExchange.getRequestMethod(), httpExchange.getRequestURI().getPath());
                outcomes.add(outcome);
            } finally {
                lock.unlock();
            }
            return outcome;
        }
    
        private void requestFailed(RequestOutcome outcome, Throwable t) {
            lock.lock();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. src/mime/quotedprintable/reader_test.go

    				}
    			case <-time.After(5 * time.Second):
    				t.Logf("qprint timeout on %q", s)
    			}
    		}
    		res["OK"]++
    	})
    	var outcomes []string
    	for k, v := range res {
    		outcomes = append(outcomes, fmt.Sprintf("%v: %d", k, v))
    	}
    	slices.Sort(outcomes)
    	got := strings.Join(outcomes, "\n")
    	want := `OK: 28934
    invalid bytes after =: 3949
    quotedprintable: invalid hex byte 0x0d: 2048
    unexpected EOF: 194`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. testing/precondition-tester/src/test/groovy/org/gradle/test/precondition/PreconditionProbingTest.groovy

    import org.junit.jupiter.api.Assumptions
    import spock.lang.Specification
    
    /**
     * This class executes a special test suite, checking all the allowed precondition combinations.
     *
     * <p>
     * Each combination can have three outcomes:
     * <ul>
     *     <li><b>Successful:</b> the precondition combination could be satisfied.</li>
     *     <li>
     *         <b>Skipped:</b> the precondition combination could <i>not</i> be satisfied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/JUnitXmlReport.java

         * instead of {@code <failure>}, within one {@code <testcase>}.
         * This can be important for build tooling that uses this XML to understand test results,
         * and where distinguishing such passed-on-retry outcomes is important.
         * This is the case for the Jenkins CI server and its Flaky Test Handler plugin.
         *
         * This value defaults to {@code false}, causing each test execution to be a discrete {@code <testcase>}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    This is how Gradle lets us know that inputs and outputs have not changed and therefore some tasks did not re-run.
    
    == Step 4. Understanding Outcome Labels
    There are four labels that developers can use to view task outcomes when verbose mode is turned on:
    
    |===
    |Outcome Label |Description
    
    |UP-TO-DATE
    |Task that has been already executed and hasn't changed (incremental build feature)
    
    |SKIPPED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    Any direct modification or reading of another project's object creates coupling between the projects.
    Coupling during configuration can result in flawed build outcomes when using 'configuration on demand', while coupling during execution can affect parallel execution.
    
    One common source of coupling is configuration injection, such as using `allprojects{}` or `subprojects{}` in build scripts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    image::remote-debug-gradle.gif[]
    
    === Adding and changing logging
    
    In addition to <<command_line_interface.adoc#sec:command_line_logging,controlling logging verbosity>>, you can also control display of task outcomes (e.g. “UP-TO-DATE”) in lifecycle logging using the <<command_line_interface.adoc#sec:command_line_customizing_log_format,`--console=verbose` flag>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

              isGuarded(method)
                  ? (isTryEnter(method) || isEnterIf(method) ? Outcome.FAILURE : Outcome.HANG)
                  : Outcome.SUCCESS);
          addTests(
              suite,
              method,
              Scenario.SATISFIED_AND_OCCUPIED_BEFORE_ENTERING,
              TimeoutsToUse.FINITE,
              isBoolean(method) ? Outcome.FAILURE : Outcome.HANG);
          addTests(
              suite,
              method,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    // assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()).
    //
    // Don't inherit from TestPartResult as its destructor is not virtual.
    class GTEST_API_ TestPartResult {
     public:
      // The possible outcomes of a test part (i.e. an assertion or an
      // explicit SUCCEED(), FAIL(), or ADD_FAILURE()).
      enum Type {
        kSuccess,          // Succeeded.
        kNonFatalFailure,  // Failed but the test can continue.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top