- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for rerun (0.03 sec)
-
.teamcity/src/main/kotlin/util/RerunFlakyTest.kt
- class RerunFlakyTest(os: Os, arch: Arch = Arch.AMD64) : BuildType({
- val id = "Util_RerunFlakyTest${os.asName()}${arch.asName()}"
- name = "Rerun Flaky Test - ${os.asName()} ${arch.asName()}"
- description = "Allows you to rerun a selected flaky test 10 times"
- id(id)
- val testJvmVendorParameter = "testJavaVendor"
- 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) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
- PULL_REQUEST_FEEDBACK("Pull Request Feedback", "Run various functional tests", "PullRequestFeedback"),
- READY_FOR_NIGHTLY("Ready for Nightly", "Rerun tests in different environments / 3rd party components", "ReadyforNightly"),
- 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) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
- // If SanityCheck fails, Gradleception will definitely fail because the last build step is also sanityCheck
- dependsOn(RelativeId(SanityCheck.buildTypeId(model)))
- }
- /*
- To avoid unnecessary rerun, what we do here is a bit complicated:
- 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) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt
- }
- @Internal
- protected
- fun getContributorsFromPullRequests(): Set<GitHubUser> {
- if (!milestone.isPresent) {
- error("Milestone not set: please rerun the task with `--milestone <milestone>`")
- }
- val prs: MutableList<GitHubPullRequest> = mutableListOf()
- for (page in 1..10) {
- 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) -
cni/pkg/install/install.go
- throttle := newInstallationThrottle(in)
- for {
- throttle.Throttle(ctx)
- // if sleepWatchInstall yields without error, that means the config might have been modified in some fashion.
- // so we rerun `install`, which will update the modified config if it has fallen out of sync with
- // our desired state
- err := in.sleepWatchInstall(ctx, installedBins)
- 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) -
android/guava/src/com/google/common/collect/Ordering.java
- * than this method, and this method in turn generally performs better than copying the list and
- * calling {@link Collections#sort(List)}.
- */
- // TODO(kevinb): rerun benchmarks including new options
- public <E extends T> List<E> sortedCopy(Iterable<E> elements) {
- @SuppressWarnings("unchecked") // does not escape, and contains only E's
- 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) -
guava/src/com/google/common/collect/Ordering.java
- * than this method, and this method in turn generally performs better than copying the list and
- * calling {@link Collections#sort(List)}.
- */
- // TODO(kevinb): rerun benchmarks including new options
- public <E extends T> List<E> sortedCopy(Iterable<E> elements) {
- @SuppressWarnings("unchecked") // does not escape, and contains only E's
- 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) -
android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java
- * than MEDIUM. And so on. These constants are set to conservative values, but even so, if
- * there is ever any doubt, they can all be increased in one spot to rerun tests on slower
- * platforms.
- * <li>All threads generated must be joined inside each test case method (or {@code fail} to do
- * 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) -
guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java
- * than MEDIUM. And so on. These constants are set to conservative values, but even so, if
- * there is ever any doubt, they can all be increased in one spot to rerun tests on slower
- * platforms.
- * <li>All threads generated must be joined inside each test case method (or {@code fail} to do
- * 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) -
src/cmd/cgo/gcc.go
- if strings.Contains(stderr, "unrecognized command line option") {
- // We're using an old version of GCC that doesn't understand
- // -fdiagnostics-color. Those versions can't print color anyway,
- // so just rerun without that option.
- stderr = p.gccErrors(b.Bytes())
- }
- if stderr == "" {
- fatalf("%s produced no output\non input:\n%s", gccBaseCmd[0], b.Bytes())
- }
- 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)