Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 111 for wakep (0.39 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DN_NT_DRIVER             = 0x01000000        // This devnode's is an NT driver
    	DN_NEEDS_LOCKING         = 0x02000000        // Devnode need lock resume processing
    	DN_ARM_WAKEUP            = 0x04000000        // Devnode can be the wakeup device
    	DN_APM_ENUMERATOR        = 0x08000000        // APM aware enumerator
    	DN_APM_DRIVER            = 0x10000000        // APM aware driver
    	DN_SILENT_INSTALL        = 0x20000000        // Silent install
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  2. pkg/controller/controller_utils.go

    	} else {
    		// When a new controller is created, it doesn't have expectations.
    		// When it doesn't see expected watch events for > TTL, the expectations expire.
    		//	- In this case it wakes up, creates/deletes controllees, and sets expectations again.
    		// When it has satisfied expectations and no controllees need to be created/destroyed > TTL, the expectations expire.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. src/runtime/metrics_test.go

    	// scheduler. Another example is that a Go runtime background goroutine could run while
    	// everything else is idle. Lastly, if a running goroutine is descheduled by the OS, enough
    	// time may pass such that the goroutine is ready to wake, even though the runtime couldn't
    	// observe itself as idle with nanotime.
    	//
    	// To deal with all this, we give a half-proc's worth of leniency.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. 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)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.japannet-jpnstore-wakeup"/>
      <mime-type type="application/vnd.japannet-payment-wakeup"/>
      <mime-type type="application/vnd.japannet-registration"/>
      <mime-type type="application/vnd.japannet-registration-wakeup"/>
      <mime-type type="application/vnd.japannet-setstore-wakeup"/>
      <mime-type type="application/vnd.japannet-verification"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set_test.go

    				if err != nil {
    					t.Fatal(err)
    				}
    
    				// This simulates the watch events for all but 1 of the expected pods.
    				// None of these should wake the controller because it has expectations==BurstReplicas.
    				for i := int32(0); i < expectedPods-1; i++ {
    					informers.Core().V1().Pods().Informer().GetIndexer().Add(&pods.Items[i])
    					manager.addPod(logger, &pods.Items[i])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    	}
    	cc.lastActive = time.Now()
    	if len(cc.streams) == 0 && cc.idleTimer != nil {
    		cc.idleTimer.Reset(cc.idleTimeout)
    		cc.lastIdle = time.Now()
    	}
    	// Wake up writeRequestBody via clientStream.awaitFlowControl and
    	// wake up RoundTrip if there is a pending request.
    	cc.cond.Broadcast()
    
    	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    	// orphan.
    	for _, job := range jm.getPodJobs(pod) {
    		jm.enqueueSyncJobBatched(logger, job)
    	}
    }
    
    // When a pod is updated, figure out what job/s manage it and wake them up.
    // If the labels of the pod have changed we need to awaken both the old
    // and new job. old and cur must be *v1.Pod types.
    func (jm *Controller) updatePod(logger klog.Logger, old, cur interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Type               uint32
    	Size               uint32
    	Config             uint64
    	Sample             uint64
    	Sample_type        uint64
    	Read_format        uint64
    	Bits               uint64
    	Wakeup             uint32
    	Bp_type            uint32
    	Ext1               uint64
    	Ext2               uint64
    	Branch_sample_type uint64
    	Sample_regs_user   uint64
    	Sample_stack_user  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top