Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 541 for Pid (0.03 sec)

  1. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/processenvironment/ProcessEnvironmentTest.groovy

            cleanup:
            System.setProperty("user.dir", originalDir.absolutePath)
            env.setProcessDir(originalDir)
        }
    
        def "can get pid of current process"() {
            expect:
            env.pid != null
            env.maybeGetPid() == env.pid
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildSourceBuilderIntegrationTest.groovy

                import ${ProcessEnvironment.name}
                import ${Time.name}
                import ${Timer.name}
    
                def pid = gradle.services.get(ProcessEnvironment).maybeGetPid()
                def timer = Time.startTimer()
    
                def listener = new TraceListener(pid: pid, timer: timer)
                def manager = gradle.services.get(BuildOperationListenerManager)
                manager.addListener(listener)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/packaging/rpm/init.d/fess

        # if not running, start it up here, usually something like "daemon $exec"
        daemon --user $FESS_USER --pidfile="$pidfile" $exec -d
        retval=$?
        pid=`ps aux | grep "^${FESS_USER}" | grep "${PROC_NAME}" | sed 's/[\t ]\+/\t/g' | cut -f2`
        if [ -n "$pid" ]; then
            echo $pid > "$pidfile"
        fi
        echo
        [ $retval -eq 0 ] && touch $lockfile
        return $retval
    }
    
    stop() {
        echo -n $"Stopping $prog: "
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DefaultDaemonConnectorTest.groovy

            expect:
            def connection = connector.maybeConnect({it.pid < 12} as ExplainingSpec)
            connection && connection.connection.num < 12
        }
    
        def "maybeConnect() returns null when no daemon matches spec"() {
            given:
            startIdleDaemon()
            startIdleDaemon()
    
            expect:
            connector.maybeConnect({it.pid == 12} as DummyExplainingSpec) == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. docs/zh/docs/deployment/server-workers.md

    [19499] [INFO] Listening at: http://0.0.0.0:80 (19499)
    [19499] [INFO] Using worker: uvicorn.workers.UvicornWorker
    [19511] [INFO] Booting worker with pid: 19511
    [19513] [INFO] Booting worker with pid: 19513
    [19514] [INFO] Booting worker with pid: 19514
    [19515] [INFO] Booting worker with pid: 19515
    [19511] [INFO] Started server process [19511]
    [19511] [INFO] Waiting for application startup.
    [19511] [INFO] Application startup complete.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/AbstractDaemonFixture.groovy

                throw new IllegalStateException("unable to parse DefaultDaemonContext from source: [${daemonLog.file.absolutePath}].")
            }
            if (this.context?.pid == null) {
                println "PID in daemon log ($daemonLog.file.absolutePath) is null."
                println "daemon.log exists: ${daemonLog.file.exists()}"
    
                def logText = daemonLog.text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/LockFileAccess.java

            lockFileAccess.close();
        }
    
        public void writeLockInfo(int port, long lockId, String pid, String operation) throws IOException {
            LockInfo lockInfo = new LockInfo();
            lockInfo.port = port;
            lockInfo.lockId = lockId;
            lockInfo.pid = pid;
            lockInfo.operation = operation;
            lockInfoAccess.writeLockInfo(lockFileAccess, lockInfo);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. cmd/metrics-v3-system-process.go

    	processIOReadBytesMD              = NewCounterMD(processIOReadBytes, "Total bytes read by the process from the underlying storage system, /proc/[pid]/io read_bytes")
    	processIOWCharBytesMD             = NewCounterMD(processIOWCharBytes, "Total bytes written by the process to the underlying storage system including page cache, /proc/[pid]/io wchar")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 16:07:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/runtime/os2_plan9.go

    		next  *_Plink // known to be 4(ptr)
    		last  *_Plink
    		first *_Plink
    		pid   uint32
    		what  uint32
    	}
    	cyclefreq uint64 // cycle clock frequency if there is one, 0 otherwise
    	kcycles   int64  // cycles spent in kernel
    	pcycles   int64  // cycles spent in process (kernel + user)
    	pid       uint32 // might as well put the pid here
    	clock     uint32
    	// top of stack is here
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 14 18:33:38 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_SCHED_SETPARAM         = 327 // { int sched_setparam (pid_t pid, const struct sched_param *param); }
    	SYS_SCHED_GETPARAM         = 328 // { int sched_getparam (pid_t pid, struct sched_param *param); }
    	SYS_SCHED_SETSCHEDULER     = 329 // { int sched_setscheduler (pid_t pid, int policy, const struct sched_param *param); }
    	SYS_SCHED_GETSCHEDULER     = 330 // { int sched_getscheduler (pid_t pid); }
    	SYS_SCHED_YIELD            = 331 // { int sched_yield (void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
Back to top