Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for rerun (0.02 sec)

  1. .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: 2025-05-28 11:36
    - Last Modified: 2025-02-19 08:02
    - 5.1K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        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"),
        WEEKLY_VALIDATION(
            "Weekly Validation",
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-09 09:38
    - 28.9K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/Gradleception.kt

                // Gradleception is a heavy build which runs ~40m on EC2 agents but only ~20m on Hetzner agents
                requiresNotEc2Agent()
                requiresNotSharedHost()
            }
    
        /*
         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: 2025-05-28 11:36
    - Last Modified: 2025-05-01 14:55
    - 7.1K bytes
    - Viewed (0)
  4. 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: 2025-05-28 11:36
    - Last Modified: 2024-06-28 08:29
    - 5.6K bytes
    - Viewed (0)
  5. 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: 2025-05-28 22:53
    - Last Modified: 2025-03-17 16:06
    - 13.8K bytes
    - Viewed (0)
  6. 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: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 40K bytes
    - Viewed (0)
  7. 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: 2025-05-30 12:43
    - Last Modified: 2025-05-13 18:46
    - 37.9K bytes
    - Viewed (0)
  8. 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: 2025-05-30 12:43
    - Last Modified: 2025-05-13 18:46
    - 37.9K bytes
    - Viewed (0)
  9. docs/yo/docs/index.md

    ---
    
    "_Ti o ba n wa láti kọ ọkan **ìlànà igbalode** fún kikọ àwọn REST API, ṣayẹwo **FastAPI** [...] Ó yára, ó rọrùn láti lò, ó sì rọrùn láti kọ́[...]_"
    
    "_A ti yipada si **FastAPI** fún **APIs** wa [...] Mo lérò pé wà á fẹ́ràn rẹ̀ [...]_"
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-02-20 20:53
    - 24.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * StorageClass has a new field to configure reclaim policy of dynamically provisioned PVs. ([#47987](https://github.com/kubernetes/kubernetes/pull/47987), [@wongma7](https://github.com/wongma7))
    * Rerun init containers when the pod needs to be restarted ([#47599](https://github.com/kubernetes/kubernetes/pull/47599), [@yujuhong](https://github.com/yujuhong))
    Registered: 2025-05-30 09:05
    - Last Modified: 2024-02-20 15:45
    - 312.2K bytes
    - Viewed (0)
Back to top