Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getDeploymentRegistry (0.22 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/TestDeploymentFixture.groovy

                        TestDeploymentHandle handle = getDeploymentRegistry().get('test', TestDeploymentHandle.class)
                        if (handle == null) {
                            // This should only happen once (1st build), so if we get a different value in keyFile between
                            // builds then we know we can detect if we didn't get the same handle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 26 00:54:23 UTC 2019
    - 4.1K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/internal/deployment/RunApplication.java

        }
    
        public void setMainClassName(String mainClassName) {
            this.mainClassName = mainClassName;
        }
    
        @TaskAction
        public void startApplication() {
            DeploymentRegistry registry = getDeploymentRegistry();
            JavaApplicationHandle handle = registry.get(getPath(), JavaApplicationHandle.class);
            if (handle == null) {
                JavaExecHandleBuilder builder = getExecActionFactory().newJavaExec();
    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. build-logic/documentation/src/main/groovy/gradlebuild/docs/ServeDocs.java

        @TaskAction
        public void startApplication() {
            System.out.println("serving docs at http://localhost:" + getPort().get());
            DeploymentRegistry registry = getDeploymentRegistry();
            JavaApplicationHandle handle = registry.get(getPath(), JavaApplicationHandle.class);
            if (handle == null) {
                JavaExecHandleBuilder builder = getExecActionFactory().newJavaExec();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 12:38:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top