Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tid1 (0.04 sec)

  1. src/cmd/go/alldocs.go

    // to go.sum and removes any unnecessary ones.
    //
    // The -v flag causes tidy to print information about removed modules
    // to standard error.
    //
    // The -e flag causes tidy to attempt to proceed despite errors
    // encountered while loading packages.
    //
    // The -diff flag causes tidy not to modify go.mod or go.sum but
    // instead print the necessary changes as a unified diff. It exits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	shellWindow = HWND(r0)
    	return
    }
    
    func GetWindowThreadProcessId(hwnd HWND, pid *uint32) (tid uint32, err error) {
    	r0, _, e1 := syscall.Syscall(procGetWindowThreadProcessId.Addr(), 2, uintptr(hwnd), uintptr(unsafe.Pointer(pid)), 0)
    	tid = uint32(r0)
    	if tid == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func IsWindow(hwnd HWND) (isWindow bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    		} else {
    			cStatuses = append([]*kubecontainer.Status{cStatus}, cStatuses...)
    		}
    		specContainerList = append(specContainerList, v1.Container{Name: containerName})
    	}
    	pod := podWithUIDNameNs("uid1", "foo", "test")
    	pod.Spec = v1.PodSpec{
    		Containers: specContainerList,
    	}
    
    	status := &kubecontainer.PodStatus{
    		ID:                pod.UID,
    		Name:              pod.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top