Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Gid (0.03 sec)

  1. src/internal/trace/order.go

    		}
    		s.seq = makeSeq(gen, 0) // Reset seq.
    	} else if gen == o.initialGen {
    		// Set the state.
    		o.gStates[gid] = &gState{id: gid, status: status, seq: makeSeq(gen, 0)}
    		oldState = GoUndetermined
    	} else {
    		return curCtx, false, fmt.Errorf("found goroutine status for new goroutine after the first generation: id=%v status=%v", gid, status)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Chown(path string, uid int, gid int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS___CHOWN_A<<4, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

                "readOnly": true,
                "recursiveReadOnly": "recursiveReadOnlyValue"
              }
            ],
            "user": {
              "linux": {
                "uid": 1,
                "gid": 2,
                "supplementalGroups": [
                  3
                ]
              }
            }
          }
        ],
        "containerStatuses": [
          {
            "name": "nameValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	stat.Dev = uint64(statLE.Dev)
    	stat.Ino = uint64(statLE.Ino)
    	stat.Nlink = uint64(statLE.Nlink)
    	stat.Mode = uint32(statLE.Mode)
    	stat.Uid = uint32(statLE.Uid)
    	stat.Gid = uint32(statLE.Gid)
    	stat.Rdev = uint64(statLE.Rdev)
    	stat.Size = statLE.Size
    	stat.Atim.Sec = int64(statLE.Atim)
    	stat.Atim.Nsec = 0 //zos doesn't return nanoseconds
    	stat.Mtim.Sec = int64(statLE.Mtim)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    		if n == 0 && err != io.EOF {
    			return -1
    		}
    		return 0
    	}
    
    	a.name = artrim(buf[0:16])
    	a.date = artrim(buf[16:28])
    	a.uid = artrim(buf[28:34])
    	a.gid = artrim(buf[34:40])
    	a.mode = artrim(buf[40:48])
    	a.size = artrim(buf[48:58])
    	a.fmag = artrim(buf[58:60])
    
    	arsize := atolwhex(a.size)
    	if arsize&1 != 0 {
    		arsize++
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top