Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

                });
            }
        }
    
        /**
         * Remove any context associated with tracking the startup of this process.
         */
        public void removeStartupContext() {
            this.associatedBuildOperation = null;
            streamsHandler.removeStartupContext();
        }
    
        private void startProcess() {
            lock.lock();
            try {
                if (aborted) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/StreamsHandler.java

         */
        void start();
    
        /**
         * Remove any context associated with tracking the startup of the process.
         */
        void removeStartupContext();
    
        /**
         * Disconnects from the process without waiting for further work.
         */
        void disconnect();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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