Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 140 for Pid (0.04 sec)

  1. src/syscall/zsyscall_aix_ppc64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func wait4(pid _Pid_t, status *_C_int, options int, rusage *Rusage) (wpid _Pid_t, err error) {
    	r0, _, e1 := syscall6(uintptr(unsafe.Pointer(&libc_wait4)), 4, uintptr(pid), uintptr(unsafe.Pointer(status)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)
    	wpid = _Pid_t(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin.go

    }
    func mach_vm_region_trampoline()
    
    //go:linkname proc_regionfilename runtime/pprof.proc_regionfilename
    func proc_regionfilename(pid int, address uint64, buf *byte, buflen int64) int32 {
    	args := struct {
    		pid     int
    		address uint64
    		buf     *byte
    		bufSize int64
    	}{
    		pid:     pid,
    		address: address,
    		buf:     buf,
    		bufSize: buflen,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    			},
    			nil,
    			&runtimeapi.NamespaceOption{
    				Pid: runtimeapi.NamespaceMode_CONTAINER,
    			},
    		},
    		{
    			"PID Namespace POD",
    			&v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{Name: "test"},
    					},
    					ShareProcessNamespace: &[]bool{true}[0],
    				},
    			},
    			nil,
    			&runtimeapi.NamespaceOption{
    				Pid: runtimeapi.NamespaceMode_POD,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  4. src/internal/trace/parser.go

    )
    
    // Event types in the trace.
    // Verbatim copy from src/runtime/trace.go with the "trace" prefix removed.
    const (
    	EvNone              = 0  // unused
    	EvBatch             = 1  // start of per-P batch of events [pid, timestamp]
    	EvFrequency         = 2  // contains tracer timer frequency [frequency (ticks per second)]
    	EvStack             = 3  // stack [stack id, number of PCs, array of {PC, func string ID, file string ID, line}]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/CrossVersionToolingApiSpecificationRetryTest.groovy

            logDir.mkdirs()
            def log = new File(logDir, "daemon-fake.log")
            log << "DefaultDaemonContext[uid=0000,javaHome=javaHome,javaVersion=11,daemonRegistryDir=daemonRegistryDir,pid=-9999,idleTimeout=120000,daemonOpts=daemonOpts]\n"
            log << exceptionInDaemon
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/BuildActionsFactoryTest.groovy

            expect:
            // don't care what values these properties have
            daemon.daemonRegistryDir == null
            daemon.pid == 0L
            daemon.idleTimeout == 0
            daemon.uid
    
            // should report current JVM's home
            daemon.javaHome == Jvm.current().javaHome
            !daemon.shouldApplyInstrumentationAgent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

      [[ -n "${APISERVER_PIDS-}" ]] && sudo kill "${APISERVER_PIDS[@]}" 2>/dev/null
    
      # Check if the controller-manager is still running
      [[ -n "${CTLRMGR_PID-}" ]] && kube::util::read-array CTLRMGR_PIDS < <(pgrep -P "${CTLRMGR_PID}" ; ps -o pid= -p "${CTLRMGR_PID}")
      [[ -n "${CTLRMGR_PIDS-}" ]] && sudo kill "${CTLRMGR_PIDS[@]}" 2>/dev/null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_ppc64x.s

    	SYSCALL	$SYS_getpid
    	MOVW	R3, R14
    	SYSCALL	$SYS_gettid
    	MOVW	R3, R4	// arg 2 tid
    	MOVW	R14, R3	// arg 1 pid
    	MOVW	sig+0(FP), R5	// arg 3
    	SYSCALL	$SYS_tgkill
    	RET
    
    TEXT runtime·raiseproc(SB),NOSPLIT|NOFRAME,$0
    	SYSCALL	$SYS_getpid
    	MOVW	R3, R3	// arg 1 pid
    	MOVW	sig+0(FP), R4	// arg 2
    	SYSCALL	$SYS_kill
    	RET
    
    TEXT ·getpid(SB),NOSPLIT|NOFRAME,$0-8
    	SYSCALL $SYS_getpid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

            UUID buildId = idGenerator.generateId();
            List<DaemonInitialConnectException> accumulatedExceptions = new ArrayList<>();
    
            LOGGER.debug("Executing build {} in daemon client {pid={}}", buildId, processEnvironment.maybeGetPid());
    
            // Attempt to connect to an existing idle and compatible daemon
            int saneNumberOfAttempts = 100; //is it sane enough?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. src/internal/trace/generation.go

    		if err != nil {
    			return nil, err
    		}
    		mid := ThreadID(m)
    
    		// Read the sample's P.
    		p, err := binary.ReadUvarint(r)
    		if err != nil {
    			return nil, err
    		}
    		pid := ProcID(p)
    
    		// Read the sample's G.
    		g, err := binary.ReadUvarint(r)
    		if err != nil {
    			return nil, err
    		}
    		goid := GoID(g)
    		if g == 0 {
    			goid = NoGoroutine
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top