Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for DeploymentRegistry (0.32 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/ServeDocs.java

                registry.start(getPath(), DeploymentRegistry.ChangeBehavior.RESTART, JavaApplicationHandle.class, builder);
            }
        }
    
        @Inject
        protected abstract DeploymentRegistry getDeploymentRegistry();
    
        @Inject
        protected abstract JavaExecHandleFactory getExecActionFactory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 12:38:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/internal/deployment/RunApplication.java

    public abstract class RunApplication extends DefaultTask {
        private String mainClassName;
        private Collection<String> arguments;
        private FileCollection classpath;
        private DeploymentRegistry.ChangeBehavior changeBehavior = DeploymentRegistry.ChangeBehavior.RESTART;
    
        @Classpath
        public FileCollection getClasspath() {
            return classpath;
        }
    
        public void setClasspath(FileCollection classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/deployment/internal/DefaultDeploymentRegistryTest.groovy

            testHandle.running >> true
    
            registry.start("id1", DeploymentRegistry.ChangeBehavior.NONE, TestDeploymentHandle)
            registry.start("id2", DeploymentRegistry.ChangeBehavior.NONE, TestDeploymentHandle)
            registry.start("id3", DeploymentRegistry.ChangeBehavior.NONE, TestDeploymentHandle)
    
            when:
            registry.stop()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/LauncherServices.java

                StyledTextOutputFactory styledTextOutputFactory,
                BuildRequestMetaData requestMetaData,
                BuildCancellationToken cancellationToken,
                DeploymentRegistryInternal deploymentRegistry,
                BuildEventConsumer eventConsumer,
                BuildStartedTime buildStartedTime,
                Clock clock,
                LoggingBuildOperationProgressBroadcaster loggingBuildOperationProgressBroadcaster,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 13:01:53 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutor.java

            this.fileChangeListeners = fileChangeListeners;
            this.requestMetaData = requestMetaData;
            this.cancellationToken = cancellationToken;
            this.deploymentRegistry = deploymentRegistry;
            this.listenerManager = listenerManager;
            this.buildStartedTime = buildStartedTime;
            this.clock = clock;
            this.stat = stat;
            this.caseSensitivity = caseSensitivity;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunner.java

            BuildActionRunner delegate,
            InternalOptions options
        ) {
            this.eventEmitter = eventEmitter;
            this.virtualFileSystem = virtualFileSystem;
            this.deploymentRegistry = deploymentRegistry;
            this.statStatisticsCollector = statStatisticsCollector;
            this.fileHasherStatisticsCollector = fileHasherStatisticsCollector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultRootBuildState.java

                    DefaultDeploymentRegistry deploymentRegistry = gradle.getServices().get(DefaultDeploymentRegistry.class);
                    gradle.addBuildListener(new InternalBuildAdapter() {
                        @Override
                        public void buildFinished(BuildResult result) {
                            deploymentRegistry.buildFinished(result);
                        }
                    });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunnerTest.groovy

    import spock.lang.Specification
    
    class FileSystemWatchingBuildActionRunnerTest extends Specification {
    
        def watchingHandler = Mock(BuildLifecycleAwareVirtualFileSystem)
        List<Deployment> deployments = []
        def deploymentRegistry = Stub(DeploymentRegistryInternal) {
            getRunningDeployments() >> deployments
        }
        def startParameter = Stub(StartParameterInternal)
        def buildOperationRunner = Mock(BuildOperationRunner)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.configuration.project.ProjectEvaluator> is not annotated with @ServiceScope in (ProjectEvaluator.java:0)
    Class <org.gradle.deployment.internal.DeploymentRegistry> is not annotated with @ServiceScope in (DeploymentRegistry.java:0)
    Class <org.gradle.execution.selection.BuildTaskSelector$BuildSpecificSelector> is not annotated with @ServiceScope in (BuildTaskSelector.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

        def changeListeners = new DefaultFileChangeListeners(userHomeListenerManager)
        List<Deployment> deployments = []
        def continuousExecutionGate = new DefaultContinuousExecutionGate()
        def deploymentRegistry = Stub(DeploymentRegistryInternal) {
            runningDeployments >> deployments
            executionGate >> continuousExecutionGate
        }
        def buildSessionContext = Mock(BuildSessionContext)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top