Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for DeploymentRegistry (0.3 sec)

  1. subprojects/core/src/main/java/org/gradle/deployment/internal/DeploymentRegistryInternal.java

     * limitations under the License.
     */
    
    package org.gradle.deployment.internal;
    
    import java.util.Collection;
    
    public interface DeploymentRegistryInternal extends DeploymentRegistry {
    
        /**
         * Returns all running deployments
         */
        Collection<Deployment> getRunningDeployments();
    
        boolean isAnyStarted();
    
        ContinuousExecutionGate getExecutionGate();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 15:19:59 UTC 2022
    - 949 bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/deployment/internal/RegisteredDeployment.java

            this.id = id;
            this.restartable = restartable;
            this.delegate = delegate;
            this.handle = handle;
        }
    
        static RegisteredDeployment create(String id, DeploymentRegistry.ChangeBehavior changeBehavior, ContinuousExecutionGate continuousExecutionGate, DeploymentHandle deploymentHandle) {
            switch(changeBehavior) {
                case NONE:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. 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