Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getPidFile (0.22 seconds)

  1. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/test/AntFixture.groovy

        protected File getCwd() {
            return new File(baseDir, 'cwd')
        }
    
        /** Returns the file the process writes its pid to. Defaults to "pid" inside baseDir. */
        @Internal
        protected File getPidFile() {
            return new File(baseDir, 'pid')
        }
    
        /** Reads the pid file and returns the process' pid */
        @Internal
        int getPid() {
            return Integer.parseInt(pidFile.getText('UTF-8').trim())
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 10.1K bytes
    - Click Count (0)
Back to Top