Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for getgid (0.1 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

         */
        private Optional<File> findCrashLogFile(Build build, DaemonDiagnostics diagnostics) {
            String crashLogFileName = "hs_err_pid" + diagnostics.getPid() + ".log";
            List<File> candidates = new ArrayList<>();
            candidates.add(new File(build.getParameters().getCurrentDir(), crashLogFileName));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector.go

    		logger.V(5).Info("item's owner is not found",
    			"item", item.identity,
    			"owner", reference,
    		)
    		return true, nil, nil
    	case err != nil:
    		return false, nil, err
    	}
    
    	if owner.GetUID() != reference.UID {
    		logger.V(5).Info("item's owner is not found, UID mismatch",
    			"item", item.identity,
    			"owner", reference,
    		)
    		gc.absentOwnerCache.Add(absentOwnerCacheKey)
    		return true, nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	parms[5] = unsafe.Pointer(&rc)
    	parms[6] = unsafe.Pointer(&rn)
    	bpxcall(parms[:], BPX4GTH)
    	return rv, rc, rn
    }
    func ZosJobname() (jobname string, err error) {
    	var pgtha Pgtha
    	pgtha.Pid = uint32(Getpid())
    	pgtha.Accesspid = PGTHA_CURRENT
    	pgtha.Flag1 = PGTHA_PROCESS
    	var out [256]byte
    	var outlen uint32
    	outlen = 256
    	rv, rc, rn := BpxGetthent(&pgtha, &outlen, unsafe.Pointer(&out[0]))
    	if rv == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/emit.go

    // of a test coverage run. If updates the 'cfname' and 'cf' fields in
    // 's', returning an error if something went wrong.
    func (s *emitState) openCounterFile(metaHash [16]byte) error {
    	processID := os.Getpid()
    	fn := fmt.Sprintf(coverage.CounterFileTempl, coverage.CounterFilePref, metaHash, processID, time.Now().UnixNano())
    	s.cfname = filepath.Join(s.outdir, fn)
    	s.cftmp = filepath.Join(s.outdir, "tmp."+fn)
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_ppc64x.s

    	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
    	MOVD	R3, ret+0(FP)
    	RET
    
    TEXT ·tgkill(SB),NOSPLIT|NOFRAME,$0-24
    	MOVD	tgid+0(FP), R3
    	MOVD	tid+8(FP), R4
    	MOVD	sig+16(FP), R5
    	SYSCALL $SYS_tgkill
    	RET
    
    TEXT runtime·setitimer(SB),NOSPLIT|NOFRAME,$0-24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. src/runtime/sys_darwin.go

    //go:cgo_import_dynamic libc_pthread_sigmask pthread_sigmask "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_sigaltstack sigaltstack "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_getpid getpid "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_kill kill "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_setitimer setitimer "/usr/lib/libSystem.B.dylib"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/os/exec/exec_test.go

    // (and thus cannot run as an ordinary Test function, since the testing
    // package monkey-patches those variables before running tests).
    func TestMain(m *testing.M) {
    	flag.Parse()
    
    	pid := os.Getpid()
    	if os.Getenv("GO_EXEC_TEST_PID") == "" {
    		os.Setenv("GO_EXEC_TEST_PID", strconv.Itoa(pid))
    
    		if runtime.GOOS == "windows" {
    			// Normalize environment so that test behavior is consistent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/fsys/fsys.go

    func Trace(op, path string) {
    	if !doTrace {
    		return
    	}
    	traceMu.Lock()
    	defer traceMu.Unlock()
    	fmt.Fprintf(traceFile, "%d gofsystrace %s %s\n", os.Getpid(), op, path)
    	if pattern := gofsystracestack.Value(); pattern != "" {
    		if match, _ := pathpkg.Match(pattern, path); match {
    			traceFile.Write(debug.Stack())
    		}
    	}
    }
    
    var (
    	doTrace   bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    		if err != nil {
    			return nil, err
    		}
    		return nil, errors.NewConflict(p.resource.GroupResource(), p.name, fmt.Errorf("uid mismatch: the provided object specified uid %s, and no existing object was found", accessor.GetUID()))
    	}
    
    	// if this object supports namespace info
    	if objectMeta, err := meta.Accessor(objToUpdate); err == nil {
    		// ensure namespace on the object is correct, or error if a conflicting namespace was set in the object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/status/server.go

    		return
    	}
    	_, err = w.Write(b)
    	if err != nil {
    		w.WriteHeader(http.StatusInternalServerError)
    	}
    }
    
    // notifyExit sends SIGTERM to itself
    func notifyExit() {
    	p, err := os.FindProcess(os.Getpid())
    	if err != nil {
    		log.Error(err)
    	}
    	if err := p.Signal(syscall.SIGTERM); err != nil {
    		log.Errorf("failed to send SIGTERM to self: %v", err)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top