Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for detachProcess (0.27 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/processenvironment/NativePlatformBackedProcessEnvironment.java

            return process.getWorkingDirectory();
        }
    
        @Override
        public Long getPid() {
            return (long) process.getProcessId();
        }
    
        @Override
        public void detachProcess() {
            process.detach();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jna/UnsupportedEnvironment.java

        @Override
        public Long maybeGetPid() {
            return pid;
        }
    
        @Override
        public boolean maybeDetachProcess() {
            return false;
        }
    
        @Override
        public void detachProcess() {
            throw notSupported();
        }
    
        private NativeIntegrationException notSupported() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/processenvironment/AbstractProcessEnvironment.java

            return true;
        }
    
        @Override
        public Long maybeGetPid() {
            return getPid();
        }
    
        @Override
        public boolean maybeDetachProcess() {
            detachProcess();
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ProcessEnvironment.java

        /**
         * Detaches the current process from its terminal/console to properly put it in the background.
         *
         * @throws NativeIntegrationException If the process could not be detached.
         */
        void detachProcess();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top