Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for removeStartupContext (0.23 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

            public void start() {
                inputHandler.start();
                outputHandler.start();
            }
    
            @Override
            public void removeStartupContext() {
                inputHandler.removeStartupContext();
                outputHandler.removeStartupContext();
            }
    
            @Override
            public void stop() {
                outputHandler.stop();
                inputHandler.stop();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonOutputConsumer.java

                throw new IllegalStateException("Unable to get process output as consuming has not finished yet.");
            }
            return processOutput;
        }
    
        @Override
        public void removeStartupContext() {
        }
    
        @Override
        public void stop() {
        }
    
        @Override
        public void disconnect() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandle.java

        Map<String, String> getEnvironment();
    
        /**
         * Starts this process, blocking until the process has started.
         *
         * @return this
         */
        ExecHandle start();
    
        void removeStartupContext();
    
        ExecHandleState getState();
    
        /**
         * Aborts the process, blocking until the process has exited. Does nothing if the process has already completed.
         */
        void abort();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcess.java

            // Inform the exec handle to clear the startup context, so that it can be garbage collected
            // This may contain references to tasks, projects, and builds which we don't want to keep around
            execHandle.removeStartupContext();
        }
    
        @Override
        public ExecResult waitForStop() {
            try {
                return execHandle.waitForFinish().assertNormalExitValue();
            } finally {
                cleanup();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top