Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for abortProcess (0.45 sec)

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

                    try {
                        stateChanged.await();
                    } catch (InterruptedException e) {
                        execHandleRunner.abortProcess();
                        throw UncheckedException.throwAsUncheckedException(e);
                    }
                }
    
                if (execResult != null) {
                    execResult.rethrowFailure();
                }
    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. subprojects/core/src/main/java/org/gradle/process/internal/ExecHandleRunner.java

            this.executor = executor;
            this.associatedBuildOperation = associatedBuildOperation;
            this.processBuilderFactory = new ProcessBuilderFactory();
        }
    
        public void abortProcess() {
            lock.lock();
            try {
                if (aborted) {
                    return;
                }
                aborted = true;
                if (process != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top