Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for assertHealthy (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/PlanExecutor.java

         *
         * <p>Note that this method is intended to be called periodically, but is not guaranteed to be particularly efficient, so should not be called too frequently (say more often than every 10 seconds).</p>
         */
        void assertHealthy();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildControllers.java

                        throw UncheckedException.throwAsUncheckedException(e);
                    }
                });
                if (done.get()) {
                    return;
                }
    
                planExecutor.assertHealthy();
            }
        }
    
        @Override
        public void close() {
            CompositeStoppable.stoppable(controllers.values()).stop();
        }
    
        private static Comparator<BuildIdentifier> idComparator() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 23 10:37:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt

            } else if (platformSystemProperty == CORRETTO_PROPERTY) {
              AmazonCorrettoCryptoProvider.install()
    
              AmazonCorrettoCryptoProvider.INSTANCE.assertHealthy()
            }
    
            Platform.resetForTests()
    
            System.err.println("Running Tests with ${Platform.get().javaClass.simpleName}")
          }
    
          @JvmStatic
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

            List<Throwable> failures = new ArrayList<>();
            awaitCompletion(workSource, currentWorkerLease, failures);
            return ExecutionResult.maybeFailed(failures);
        }
    
        @Override
        public void assertHealthy() {
            // Wait until execution state is healthy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top