Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for wakep (0.32 sec)

  1. src/runtime/proc.go

    // Must be called with a P.
    //
    // wakep should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gvisor.dev/gvisor
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname wakep
    func wakep() {
    	// Be conservative about spinning threads, only start one if none exist
    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. src/database/sql/sql.go

    //
    // If d <= 0, connections are not closed due to a connection's age.
    func (db *DB) SetConnMaxLifetime(d time.Duration) {
    	if d < 0 {
    		d = 0
    	}
    	db.mu.Lock()
    	// Wake cleaner up when lifetime is shortened.
    	if d > 0 && d < db.maxLifetime && db.cleanerCh != nil {
    		select {
    		case db.cleanerCh <- struct{}{}:
    		default:
    		}
    	}
    	db.maxLifetime = d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation_test.go

    		`Pacific/Port_Moresby`,
    		`Pacific/Rarotonga`,
    		`Pacific/Saipan`,
    		`Pacific/Samoa`,
    		`Pacific/Tahiti`,
    		`Pacific/Tarawa`,
    		`Pacific/Tongatapu`,
    		`Pacific/Truk`,
    		`Pacific/Wake`,
    		`Pacific/Wallis`,
    		`Pacific/Yap`,
    		`Poland`,
    		`Portugal`,
    		`PRC`,
    		`PST8PDT`,
    		`ROC`,
    		`ROK`,
    		`Singapore`,
    		`Turkey`,
    		`UCT`,
    		`Universal`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    // state every sync-frequency seconds. Never returns.
    func (kl *Kubelet) syncLoop(ctx context.Context, updates <-chan kubetypes.PodUpdate, handler SyncHandler) {
    	klog.InfoS("Starting kubelet main sync loop")
    	// The syncTicker wakes up kubelet to checks if there are any pod workers
    	// that need to be sync'd. A one-second period is sufficient because the
    	// sync interval is defaulted to 10s.
    	syncTicker := time.NewTicker(time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    	defer cancel()
    
    	r, err := db.QueryContext(ctx, "SELECT|people|name|")
    	if err != nil {
    		t.Fatal(err)
    	}
    	for r.Next() {
    	}
    	cancel()                          // wake up the awaitDone goroutine
    	time.Sleep(10 * time.Millisecond) // increase odds of seeing failure
    	if err := r.Err(); err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestNilErrorAfterClose(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    nishiawakura.okayama.jp
    okayama.okayama.jp
    satosho.okayama.jp
    setouchi.okayama.jp
    shinjo.okayama.jp
    shoo.okayama.jp
    soja.okayama.jp
    takahashi.okayama.jp
    tamano.okayama.jp
    tsuyama.okayama.jp
    wake.okayama.jp
    yakage.okayama.jp
    aguni.okinawa.jp
    ginowan.okinawa.jp
    ginoza.okinawa.jp
    gushikami.okinawa.jp
    haebaru.okinawa.jp
    higashi.okinawa.jp
    hirara.okinawa.jp
    iheya.okinawa.jp
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top