Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 541 for Pid (0.03 sec)

  1. src/internal/syscall/unix/siginfo_linux_test.go

    		name string
    		got  uintptr
    		want int
    	}{
    		{"Signo", unsafe.Offsetof(si.Signo), ofSigno},
    		{"Errno", unsafe.Offsetof(si.Errno), ofErrno},
    		{"Code", unsafe.Offsetof(si.Code), ofCode},
    		{"Pid", unsafe.Offsetof(si.Pid), ofPid},
    		{"Uid", unsafe.Offsetof(si.Uid), ofUid},
    		{"Status", unsafe.Offsetof(si.Status), ofStatus},
    	}
    
    	for _, tc := range offsets {
    		if int(tc.got) != tc.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonProcessFailureIntegrationTest.groovy

                                System.out.println("Worker daemon pid is " + ProcessHandle.current().pid());
                                FileObject file = processingEnv.getFiler().createResource(StandardLocation.SOURCE_OUTPUT, "resources", "pid.txt");
                                Writer writer = file.openWriter();
                                writer.write(String.valueOf(ProcessHandle.current().pid()));
                                writer.close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 18:43:14 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/format/format.go

    type Event struct {
    	Name      string  `json:"name,omitempty"`
    	Phase     string  `json:"ph"`
    	Scope     string  `json:"s,omitempty"`
    	Time      float64 `json:"ts"`
    	Dur       float64 `json:"dur,omitempty"`
    	PID       uint64  `json:"pid"`
    	TID       uint64  `json:"tid"`
    	ID        uint64  `json:"id,omitempty"`
    	BindPoint string  `json:"bp,omitempty"`
    	Stack     int     `json:"sf,omitempty"`
    	EndStack  int     `json:"esf,omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParserTest.groovy

            def contextString = "DefaultDaemonContext[" +
                "uid=4224e700-9e7c-4964-ad43-d6950d561cc0," +
                "javaHome=/usr/bin/java/," +
                "daemonRegistryDir=/home/user/.gradle/daemon," +
                "pid=1115013," +
                "idleTimeout=10800000," +
                "priority=NORMAL," +
                "daemonOpts=" +
                (
                    "--add-opens=java.base/java.util=ALL-UNNAMED," +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. pkg/capabilities/capabilities.go

    // of capabilities like host networking, sharing the host IPC namespace, and sharing the host PID namespace.
    type PrivilegedSources struct {
    	// List of pod sources for which using host network is allowed.
    	HostNetworkSources []string
    
    	// List of pod sources for which using host pid namespace is allowed.
    	HostPIDSources []string
    
    	// List of pod sources for which using host ipc is allowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 12:51:16 UTC 2019
    - 3K bytes
    - Viewed (0)
  6. src/syscall/exec_libc.go

    func forkx(flags uintptr) (pid uintptr, err Errno)
    func getpid() (pid uintptr, err Errno)
    func ioctl(fd uintptr, req uintptr, arg uintptr) (err Errno)
    func setgid(gid uintptr) (err Errno)
    func setgroups1(ngid uintptr, gid uintptr) (err Errno)
    func setrlimit1(which uintptr, lim unsafe.Pointer) (err Errno)
    func setsid() (pid uintptr, err Errno)
    func setuid(uid uintptr) (err Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_freebsd_arm64.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); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb_unix_test.go

    	var output bytes.Buffer
    	cmd.Stdout = &output // for test logging
    	cmd.Stderr = &output
    
    	if err := cmd.Start(); err != nil {
    		t.Fatalf("error starting test binary: %v", err)
    	}
    	w.Close()
    
    	pid := cmd.Process.Pid
    
    	// Wait for child to be ready.
    	var buf [1]byte
    	if _, err := r.Read(buf[:]); err != io.EOF {
    		t.Fatalf("control pipe read get err %v want io.EOF", err)
    	}
    
    	// 💥
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/syscall/creds_test.go

    //go:build linux
    
    package syscall_test
    
    import (
    	"bytes"
    	"net"
    	"os"
    	"syscall"
    	"testing"
    )
    
    // TestSCMCredentials tests the sending and receiving of credentials
    // (PID, UID, GID) in an ancillary message between two UNIX
    // sockets. The SO_PASSCRED socket option is enabled on the sending
    // socket for this to work.
    func TestSCMCredentials(t *testing.T) {
    	socketTypeTests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 02:43:05 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

            def canceledDaemon2 = daemons.daemons.find { it.context.pid != canceledDaemon1.context.pid }
    
            // 1 daemon we can reuse
            def build3 = executer.withTasks("help").start()
    
            when:
            build3.waitForFinish()
    
            then:
            daemons.daemons.size() == 3
            def idleDaemon = daemons.daemons.find { ! (it.context.pid in [ canceledDaemon1.context.pid, canceledDaemon2.context.pid ]) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top