Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 541 for Pid (0.02 sec)

  1. pkg/ctrlz/topics/proc.go

    	return "proc"
    }
    
    type procInfo struct {
    	Egid       int    `json:"egid"`
    	Euid       int    `json:"euid"`
    	GID        int    `json:"gid"`
    	Groups     []int  `json:"groups"`
    	Pid        int    `json:"pid"`
    	Ppid       int    `json:"ppid"`
    	UID        int    `json:"uid"`
    	Wd         string `json:"wd"`
    	Hostname   string `json:"hostname"`
    	TempDir    string `json:"tempdir"`
    	Threads    int    `json:"threads"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. pkg/kubelet/oom/oom_watcher_linux.go

    				klog.V(1).InfoS("Got sys oom event", "event", event)
    				eventMsg := "System OOM encountered"
    				if event.ProcessName != "" && event.Pid != 0 {
    					eventMsg = fmt.Sprintf("%s, victim process: %s, pid: %d", eventMsg, event.ProcessName, event.Pid)
    				}
    				ow.recorder.Eventf(ref, v1.EventTypeWarning, systemOOMEvent, eventMsg)
    			}
    		}
    		klog.ErrorS(nil, "Unexpectedly stopped receiving OOM notifications")
    	}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 23:17:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprog/numcpu_freebsd.go

    			fmt.Printf("%s\n", err)
    			return
    		}
    	}
    	fmt.Println("OK")
    	return
    }
    
    func getList() ([]string, error) {
    	pid := syscall.Getpid()
    
    	// Launch cpuset to print a list of available CPUs: pid <PID> mask: 0, 1, 2, 3.
    	cmd := exec.Command("cpuset", "-g", "-p", strconv.Itoa(pid))
    	cmdline := strings.Join(cmd.Args, " ")
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 20:09:46 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. docs/distributed/decom-compressed-sse-s3.sh

    export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:9000/"
    
    (minio server http://localhost:9000/tmp/xl/{1...10}/disk{0...1} 2>&1 >/dev/null) &
    pid=$!
    
    ./mc ready myminio
    
    ./mc admin user add myminio/ minio123 minio123
    ./mc admin user add myminio/ minio12345 minio12345
    
    ./mc admin policy create myminio/ rw ./docs/distributed/rw.json
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/syscall/exec_solaris_test.go

    //go:linkname libc_Getpgid libc_Getpgid
    //go:linkname libc_Getpgrp libc_Getpgrp
    
    var (
    	libc_Getpgid,
    	libc_Getpgrp libcFunc
    )
    
    func Getpgid(pid int) (pgid int, err error) {
    	r0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&libc_Getpgid)), 1, uintptr(pid), 0, 0, 0, 0, 0)
    	pgid = int(r0)
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func Getpgrp() (pgrp int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. docs/distributed/decom-encrypted-sse-s3.sh

    export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:9000/"
    
    (minio server http://localhost:9000/tmp/xl/{1...10}/disk{0...1} 2>&1 >/dev/null) &
    pid=$!
    
    ./mc ready myminio
    
    ./mc admin user add myminio/ minio123 minio123
    ./mc admin user add myminio/ minio12345 minio12345
    
    ./mc admin policy create myminio/ rw ./docs/distributed/rw.json
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/emitter.go

    	e.arrowSeq++
    	e.OptionalEvent(&format.Event{
    		Name:  a.Name,
    		Phase: "s",
    		TID:   a.FromResource,
    		PID:   sectionID,
    		ID:    e.arrowSeq,
    		Time:  viewerTime(a.Start),
    		Stack: a.FromStack,
    	})
    	e.OptionalEvent(&format.Event{
    		Name:  a.Name,
    		Phase: "t",
    		TID:   a.ToResource,
    		PID:   sectionID,
    		ID:    e.arrowSeq,
    		Time:  viewerTime(a.End),
    	})
    }
    
    type ArrowEvent struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

                  echo "Envoy isn't running yet, trying again..."
                  pgrep -u istio-proxy envoy
                  sleep .1
                done
                pid="$(pgrep -u istio-proxy envoy)"
                sudo prlimit -p "${pid}" --core=unlimited
              }
              # To support image builders which cannot do RUN, do the run commands at startup.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/syscall/syscall_netbsd.go

    //sysnb	Geteuid() (uid int)
    //sysnb	Getgid() (gid int)
    //sysnb	Getpgid(pid int) (pgid int, err error)
    //sysnb	Getpgrp() (pgrp int)
    //sysnb	Getpid() (pid int)
    //sysnb	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrlimit(which int, lim *Rlimit) (err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Getsid(pid int) (sid int, err error)
    //sysnb	Gettimeofday(tv *Timeval) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. docs/en/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
    - 9.1K bytes
    - Viewed (0)
Back to top