Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 190 for finishes (0.12 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/NotifyDaemonAboutChangedPathsClient.java

    import org.gradle.internal.remote.internal.Connection;
    import org.gradle.launcher.daemon.protocol.Command;
    import org.gradle.launcher.daemon.protocol.Failure;
    import org.gradle.launcher.daemon.protocol.Finished;
    import org.gradle.launcher.daemon.protocol.InvalidateVirtualFileSystemAfterChange;
    import org.gradle.launcher.daemon.protocol.Message;
    import org.gradle.launcher.daemon.protocol.Result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

        /**
         * Called when the build is finished.
         *
         * This operation happens in the context of executing the build from the client's perspective.
         */
        void beforeBuildFinished(WatchMode watchMode, VfsLogging vfsLogging, WatchLogging watchLogging, BuildOperationRunner buildOperationRunner, int maximumNumberOfWatchedHierarchies);
    
        /**
         * Called after the build is finished.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationRunner.java

         */
        <T> T call(CallableBuildOperation<T> buildOperation);
    
        /**
         * Starts an operation that can be finished later.
         *
         * When a parent operation is finished any unfinished child operations will be failed.
         */
        BuildOperationContext start(BuildOperationDescriptor.Builder descriptor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheIntegrationTest.groovy

                    @Override
                    void execute(File file) {
                        throw new IllegalStateException('Cache does not lock properly')
                    }
                })
            }
    
            concurrent.finished()
    
            then:
            noExceptionThrown()
            jarFile1 && jarFile2
            jarFile1.exists() && jarFile2.exists()
            jarFile1 == jarFile2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeLifecycleControllerFactory.kt

            val modelCreator = ConfigurationCacheAwareBuildTreeModelCreator(defaultModelCreator, cache)
    
            val finisher = ConfigurationCacheAwareFinishExecutor(finishExecutor, cache)
    
            return DefaultBuildTreeLifecycleController(targetBuild, workController, modelCreator, finisher, stateTransitionControllerFactory, startParameter, buildModelParameters)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockCoordinationService.java

         * {@link InternalTransformer} should return a {@link org.gradle.internal.resources.ResourceLockState.Disposition}
         * that tells the resource coordinator how to proceed:
         *
         * FINISHED - All locks were acquired, release the state lock
         * FAILED - One or more locks were not acquired, roll back any locks that were acquired and release the state lock
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1beta1/generated.proto

      optional JobTemplateSpec jobTemplate = 5;
    
      // The number of successful finished jobs to retain.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 3.
      // +optional
      optional int32 successfulJobsHistoryLimit = 6;
    
      // The number of failed finished jobs to retain.
      // This is a pointer to distinguish between explicit zero and not specified.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. testing/internal-testing/src/test/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpecTest.groovy

            }
    
            void run(Runnable runnable, int timeoutSeconds) {
                def finished = new CountDownLatch(1)
                runLater {
                    try {
                        runnable.run()
                    } finally {
                        finished.countDown()
                    }
                }
                finished.await(timeoutSeconds, TimeUnit.SECONDS)
            }
    
            void runLater(Runnable runnable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

                    if (scheduledJob.isLoggingEnabled() && logger.isInfoEnabled()) {
                        logger.info("Finished Job {}.", id);
                    }
                } else {
                    if (scheduledJob.isLoggingEnabled() && logger.isInfoEnabled()) {
                        logger.info("Finished Job {}. The return value is:\n{}", id, ret);
                    }
                    jobLog.setScriptResult(ret.toString());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WaitAtEndOfBuildFixture.groovy

                    @Override
                    void progress(${OperationIdentifier.name} operationIdentifier, ${OperationProgressEvent.name} progressEvent) {}
    
                    @Override
                    void finished(${BuildOperationDescriptor.name} buildOperation, ${OperationFinishEvent.name} finishEvent) {
                        if (buildOperation.details instanceof ${RunRootBuildWorkBuildOperationType.Details.name}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top