Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for rerun (0.03 sec)

  1. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

    1. class RerunFlakyTest(os: Os, arch: Arch = Arch.AMD64) : BuildType({
    2. val id = "Util_RerunFlakyTest${os.asName()}${arch.asName()}"
    3. name = "Rerun Flaky Test - ${os.asName()} ${arch.asName()}"
    4. description = "Allows you to rerun a selected flaky test 10 times"
    5. id(id)
    6. val testJvmVendorParameter = "testJavaVendor"
    7. val testJvmVersionParameter = "testJavaVersion"
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Sep 24 06:22:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

    1. PULL_REQUEST_FEEDBACK("Pull Request Feedback", "Run various functional tests", "PullRequestFeedback"),
    2. READY_FOR_NIGHTLY("Ready for Nightly", "Rerun tests in different environments / 3rd party components", "ReadyforNightly"),
    3. READY_FOR_RELEASE("Ready for Release", "Once a day: Rerun tests in more environments", "ReadyforRelease"),
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Oct 16 06:14:14 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/Gradleception.kt

    1. // If SanityCheck fails, Gradleception will definitely fail because the last build step is also sanityCheck
    2. dependsOn(RelativeId(SanityCheck.buildTypeId(model)))
    3. }
    4.  
    5. /*
    6. To avoid unnecessary rerun, what we do here is a bit complicated:
    7.  
    8. 1. Build a Gradle distribution with a fixed timestamp and hash it, but never use this distribution.
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 08 12:58:46 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

    1. }
    2.  
    3. @Internal
    4. protected
    5. fun getContributorsFromPullRequests(): Set<GitHubUser> {
    6. if (!milestone.isPresent) {
    7. error("Milestone not set: please rerun the task with `--milestone <milestone>`")
    8. }
    9. val prs: MutableList<GitHubPullRequest> = mutableListOf()
    10. for (page in 1..10) {
    11. val prPage = getMergedContributorPullRequests(page)
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Jun 28 08:29:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. cni/pkg/install/install.go

    1. throttle := newInstallationThrottle(in)
    2. for {
    3. throttle.Throttle(ctx)
    4. // if sleepWatchInstall yields without error, that means the config might have been modified in some fashion.
    5. // so we rerun `install`, which will update the modified config if it has fallen out of sync with
    6. // our desired state
    7. err := in.sleepWatchInstall(ctx, installedBins)
    8. if err != nil {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Aug 09 21:33:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Ordering.java

    1. * than this method, and this method in turn generally performs better than copying the list and
    2. * calling {@link Collections#sort(List)}.
    3. */
    4. // TODO(kevinb): rerun benchmarks including new options
    5. public <E extends T> List<E> sortedCopy(Iterable<E> elements) {
    6. @SuppressWarnings("unchecked") // does not escape, and contains only E's
    7. E[] array = (E[]) Iterables.toArray(elements);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Ordering.java

    1. * than this method, and this method in turn generally performs better than copying the list and
    2. * calling {@link Collections#sort(List)}.
    3. */
    4. // TODO(kevinb): rerun benchmarks including new options
    5. public <E extends T> List<E> sortedCopy(Iterable<E> elements) {
    6. @SuppressWarnings("unchecked") // does not escape, and contains only E's
    7. E[] array = (E[]) Iterables.toArray(elements);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

    1. * than MEDIUM. And so on. These constants are set to conservative values, but even so, if
    2. * there is ever any doubt, they can all be increased in one spot to rerun tests on slower
    3. * platforms.
    4. * <li>All threads generated must be joined inside each test case method (or {@code fail} to do
    5. * so) before returning from the method. The {@code joinPool} method can be used to do this
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 02:42:09 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

    1. * than MEDIUM. And so on. These constants are set to conservative values, but even so, if
    2. * there is ever any doubt, they can all be increased in one spot to rerun tests on slower
    3. * platforms.
    4. * <li>All threads generated must be joined inside each test case method (or {@code fail} to do
    5. * so) before returning from the method. The {@code joinPool} method can be used to do this
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 02:42:09 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    1. if strings.Contains(stderr, "unrecognized command line option") {
    2. // We're using an old version of GCC that doesn't understand
    3. // -fdiagnostics-color. Those versions can't print color anyway,
    4. // so just rerun without that option.
    5. stderr = p.gccErrors(b.Bytes())
    6. }
    7. if stderr == "" {
    8. fatalf("%s produced no output\non input:\n%s", gccBaseCmd[0], b.Bytes())
    9. }
    10.  
    11. completed := false
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 18 15:07:34 UTC 2024
    - 97.1K bytes
    - Viewed (0)
Back to top