Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for startApplication (0.14 sec)

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

        @Input
        protected abstract Property<Integer> getPort();
    
        @Nested
        protected abstract Property<JavaLauncher> getJavaLauncher();
    
        @TaskAction
        public void startApplication() {
            System.out.println("serving docs at http://localhost:" + getPort().get());
            DeploymentRegistry registry = getDeploymentRegistry();
    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

            return mainClassName;
        }
    
        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) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top