Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 541 for Pid (0.02 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go

    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    func PtraceGetFsBase(pid int, fsbase *int64) (err error) {
    	return ptracePtr(PT_GETFSBASE, pid, unsafe.Pointer(fsbase), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go

    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    func PtraceGetFsBase(pid int, fsbase *int64) (err error) {
    	return ptracePtr(PT_GETFSBASE, pid, unsafe.Pointer(fsbase), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

              time_format %Y-%m-%dT%H:%M:%S.%N%:z
            </pattern>
          </parse>
        </source>
    
        <filter reform.**>
          @type parser
          format /^(?<severity>\w)(?<time>\d{4} [^\s]*)\s+(?<pid>\d+)\s+(?<source>[^ \]]+)\] (?<log>.*)/
          reserve_data true
          suppress_parse_error_log true
          emit_invalid_record_to_error false
          key_name log
        </filter>
    
        <match reform.**>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  4. src/runtime/tracestatus.go

    func (w traceWriter) writeProcStatus(pid uint64, status traceProcStatus, inSweep bool) traceWriter {
    	// The status should never be bad. Some invariant must have been violated.
    	if status == traceProcBad {
    		print("runtime: pid=", pid, "\n")
    		throw("attempted to trace a bad status for a proc")
    	}
    
    	// Trace the status.
    	w = w.event(traceEvProcStatus, traceArg(pid), traceArg(status))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/os/pidfd_linux_test.go

    	}
    
    	p, err := os.StartProcess(testenv.GoToolPath(t), []string{"go"}, &os.ProcAttr{})
    	if err != nil {
    		t.Fatalf("starting test process: %v", err)
    	}
    	p.Wait()
    
    	// Use pid of a non-existing process.
    	proc, err := os.FindProcess(p.Pid)
    	// FindProcess should never return errors on Unix.
    	if err != nil {
    		t.Fatalf("FindProcess: got error %v, want <nil>", err)
    	}
    	// FindProcess should never return nil Process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/internal/coverage/pods/pods.go

    		if m := counterRE.FindStringSubmatch(base); m != nil {
    			tag := m[1] // meta hash
    			pid, err := strconv.Atoi(m[2])
    			if err != nil {
    				continue
    			}
    			if v, ok := mm[tag]; ok {
    				idx := -1
    				if dirIndices != nil {
    					idx = dirIndices[k]
    				}
    				fo := fileWithAnnotations{file: f, origin: idx, pid: pid}
    				v.elements = append(v.elements, fo)
    				mm[tag] = v
    			} else {
    				if warn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/log/syslog/syslog_test.go

    		return
    	}
    
    	if transport == "unixgram" || transport == "unix" {
    		var month, date, ts string
    		var pid int
    		tmpl := fmt.Sprintf("<%d>%%s %%s %%s syslog_test[%%d]: %s\n", LOG_USER+LOG_INFO, in)
    		n, err := fmt.Sscanf(out, tmpl, &month, &date, &ts, &pid)
    		if n != 4 || err != nil {
    			t.Errorf("Got %q, does not match template %q (%d %s)", out, tmpl, n, err)
    		}
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 16:09:24 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. src/packaging/common/systemd/fess.conf

    d    ${packaging.fess.pid.dir}   0755 ${packaging.fess.user} ${packaging.fess.group} - -...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 89 bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            this.tid = tid;
        }
    
    
        /**
         * @return the pid
         */
        public final int getPid () {
            return this.pid;
        }
    
    
        /**
         * @param pid
         *            the pid to set
         */
        public final void setPid ( int pid ) {
            this.pid = pid;
        }
    
    
        /**
         * @return the uid
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  10. cmd/service.go

    	// the file it points to has been changed we will use the updated symlink.
    	argv0, err := exec.LookPath(os.Args[0])
    	if err != nil {
    		return err
    	}
    
    	// Invokes the execve system call.
    	// Re-uses the same pid. This preserves the pid over multiple server-respawns.
    	return syscall.Exec(argv0, os.Args, os.Environ())
    }
    
    // freezeServices will freeze all incoming S3 API calls.
    // For each call, unfreezeServices must be called once.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top