Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for GetSink (0.5 sec)

  1. go.sum

    github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc=
    github.com/urfave/cli v1.22.2/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=
    github.com/vishvananda/netlink v1.1.0 h1:1iyaYNBLmP6L0220aDnYQpo1QEV4t4hJ+xEEhhJH8j0=
    github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE=
    github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    		}
    	}
    }
    
    // casGToPreemptScan transitions gp from _Grunning to _Gscan|_Gpreempted.
    //
    // TODO(austin): This is the only status operation that both changes
    // the status and locks the _Gscan bit. Rethink this.
    func casGToPreemptScan(gp *g, old, new uint32) {
    	if old != _Grunning || new != _Gscan|_Gpreempted {
    		throw("bad g transition")
    	}
    	acquireLockRankAndM(lockRankGscan)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top