Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 72 of 72 for GetSink (0.12 sec)

  1. 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)
  2. CHANGELOG/CHANGELOG-1.18.md

     - Fix IPVS compatibility issue with older kernels (< 3.18) where the netlink address family attribute is not set ([#90678](https://github.com/kubernetes/kubernetes/pull/90678), [@andrewsykim](https://github.com/andrewsykim)) [SIG Cluster Lifecycle, Network and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
Back to top