Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for npid (0.14 sec)

  1. pkg/bootstrap/platform/gcp_test.go

    			map[string]string{
    				GCPProject: "pid", GCPProjectNumber: "npid", GCPCluster: "cluster", GCEInstance: "instanceName", GCEInstanceID: "instance",
    				GCEInstanceTemplate: "instanceTemplate", GCEInstanceCreatedBy: "createdBy",
    			},
    		},
    		{
    			"cluster name error",
    			func() bool { return true },
    			func() (string, error) { return "pid", nil },
    			func() (string, error) { return "npid", nil },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    type SysvIpcPerm struct {
    	Uid  uint32
    	Gid  uint32
    	Cuid uint32
    	Cgid uint32
    	Mode uint16
    	_    uint16
    	_    int32
    }
    type SysvShmDesc struct {
    	Perm   SysvIpcPerm
    	Segsz  uint64
    	Lpid   int32
    	Cpid   int32
    	Nattch uint16
    	_      [34]byte
    }
    
    const (
    	IPC_CREAT   = 0x200
    	IPC_EXCL    = 0x400
    	IPC_NOWAIT  = 0x800
    	IPC_PRIVATE = 0x0
    )
    
    const (
    	IPC_RMID = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    type SysvIpcPerm struct {
    	Uid  uint32
    	Gid  uint32
    	Cuid uint32
    	Cgid uint32
    	Mode uint16
    	_    uint16
    	_    int32
    }
    type SysvShmDesc struct {
    	Perm   SysvIpcPerm
    	Segsz  uint64
    	Lpid   int32
    	Cpid   int32
    	Nattch uint16
    	_      [34]byte
    }
    
    const (
    	IPC_CREAT   = 0x200
    	IPC_EXCL    = 0x400
    	IPC_NOWAIT  = 0x800
    	IPC_PRIVATE = 0x0
    )
    
    const (
    	IPC_RMID = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/syscall/syscall_solaris.go

    	}
    	return Signal(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) TrapCause() int { return -1 }
    
    func wait4(pid uintptr, wstatus *WaitStatus, options uintptr, rusage *Rusage) (wpid uintptr, err uintptr)
    
    func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
    	r0, e1 := wait4(uintptr(pid), wstatus, uintptr(options), rusage)
    	if e1 != 0 {
    		err = Errno(e1)
    	}
    	return int(r0), err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_freebsd_riscv64.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {
    	r0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)
    	wpid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_freebsd_arm.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {
    	r0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)
    	wpid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_freebsd_386.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {
    	r0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)
    	wpid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  8. src/syscall/zsyscall_netbsd_386.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {
    	r0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)
    	wpid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  9. src/image/gif/reader_test.go

    		b.WriteString(paletteStr)
    		// Write an image with bounds 2x1 but tc.nPix pixels. If tc.nPix != 2
    		// then this should result in an invalid GIF image. First, write a
    		// magic 0x2c (image descriptor) byte, bounds=(0,0)-(2,1), a flags
    		// byte, and 2-bit LZW literals.
    		b.WriteString("\x2c\x00\x00\x00\x00\x02\x00\x01\x00\x00\x02")
    		if tc.nPix > 0 {
    			enc := lzwEncode(make([]byte, tc.nPix))
    			if len(enc)+tc.extraExisting > 0xff {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_openbsd_arm.go

    func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {
    	r0, _, e1 := syscall6(abi.FuncPCABI0(libc_wait4_trampoline), uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)
    	wpid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_wait4_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top