Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for Pid (0.02 sec)

  1. src/syscall/zsyscall_windows.go

    	pseudoHandle = Handle(r0)
    	if pseudoHandle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func getCurrentProcessId() (pid uint32) {
    	r0, _, _ := Syscall(procGetCurrentProcessId.Addr(), 0, 0, 0, 0)
    	pid = uint32(r0)
    	return
    }
    
    func GetEnvironmentStrings() (envs *uint16, err error) {
    	r0, _, e1 := Syscall(procGetEnvironmentStringsW.Addr(), 0, 0, 0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        ModuleId expected = IvyUtil.createModuleId(parentOrganisation, parentModule);
                        ModuleId pid = parent.getModuleRevisionId().getModuleId();
                        if (!expected.equals(pid)) {
                            LOGGER.warn("Ignoring parent Ivy file {}; expected {} but found {}", location, expected, pid);
                            parent = null;
                        }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	RegNotifyChangeKeyValue(key Handle, watchSubtree bool, notifyFilter uint32, event Handle, asynchronous bool) (regerrno error) = advapi32.RegNotifyChangeKeyValue
    //sys	GetCurrentProcessId() (pid uint32) = kernel32.GetCurrentProcessId
    //sys	ProcessIdToSessionId(pid uint32, sessionid *uint32) (err error) = kernel32.ProcessIdToSessionId
    //sys	ClosePseudoConsole(console Handle) = kernel32.ClosePseudoConsole
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	xprintf("Installed commands in %s\n", gorootBin)
    
    	if gohostos == "plan9" {
    		// Check that GOROOT/bin is bound before /bin.
    		pid := strings.Replace(readfile("#c/pid"), " ", "", -1)
    		ns := fmt.Sprintf("/proc/%s/ns", pid)
    		if !strings.Contains(readfile(ns), fmt.Sprintf("bind -b %s /bin", gorootBin)) {
    			xprintf("*** You need to bind %s before /bin.\n", gorootBin)
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers.go

    	// inodes, number. internal to this module, used to account for local disk inode consumption.
    	resourceInodes v1.ResourceName = "inodes"
    	// resourcePids, number. internal to this module, used to account for local pid consumption.
    	resourcePids v1.ResourceName = "pids"
    	// OffendingContainersKey is the key in eviction event annotations for the list of container names which exceeded their requests
    	OffendingContainersKey = "offending_containers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters_test.go

    			Message:            "kubelet has insufficient PID available",
    			LastTransitionTime: metav1.NewTime(transition),
    			LastHeartbeatTime:  metav1.NewTime(heartbeat),
    		}
    	}
    	return &v1.NodeCondition{
    		Type:               v1.NodePIDPressure,
    		Status:             v1.ConditionFalse,
    		Reason:             "KubeletHasSufficientPID",
    		Message:            "kubelet has sufficient PID available",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    const DEVPROPID_FIRST_USABLE DEVPROPID = 2
    
    // DEVPROPKEY represents a device property key for a device property in the
    // unified device property model.
    type DEVPROPKEY struct {
    	FmtID DEVPROPGUID
    	PID   DEVPROPID
    }
    
    // CONFIGRET is a return value or error code from cfgmgr32 APIs
    type CONFIGRET uint32
    
    func (ret CONFIGRET) Error() string {
    	if win32Error, ok := ret.Unwrap().(Errno); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    	if len(m) == 0 {
    		return nil, nil
    	}
    	rl := make(v1.ResourceList)
    	for k, v := range m {
    		switch v1.ResourceName(k) {
    		// CPU, memory, local storage, and PID resources are supported.
    		case v1.ResourceCPU, v1.ResourceMemory, v1.ResourceEphemeralStorage, pidlimit.PIDs:
    			q, err := resource.ParseQuantity(v)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. src/os/os_test.go

    		t.Fatalf("Child process reports parent process id '%v', expected '%v'", childPpid, ourPid)
    	}
    }
    
    func TestKillFindProcess(t *testing.T) {
    	testKillProcess(t, func(p *Process) {
    		p2, err := FindProcess(p.Pid)
    		if err != nil {
    			t.Fatalf("Failed to find test process: %v", err)
    		}
    		err = p2.Kill()
    		if err != nil {
    			t.Fatalf("Failed to kill test process: %v", err)
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top