Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for asleep (0.19 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    like what I get" is the same thing as "I get what I like"!'
    
      `You might just as well say,' added the Dormouse, who seemed to
    be talking in his sleep, `that "I breathe when I sleep" is the
    same thing as "I sleep when I breathe"!'
    
      `It IS the same thing with you,' said the Hatter, and here the
    conversation dropped, and the party sat silent for a minute,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    like what I get" is the same thing as "I get what I like"!'
    
      `You might just as well say,' added the Dormouse, who seemed to
    be talking in his sleep, `that "I breathe when I sleep" is the
    same thing as "I sleep when I breathe"!'
    
      `It IS the same thing with you,' said the Hatter, and here the
    conversation dropped, and the party sat silent for a minute,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    		if mode == "top" && numRows == 2 {
    			// cancel between Next and Scan is observed by Scan as err = context.Canceled.
    			// The sleep here is only to make it more likely that the cancel will be observed.
    			// If not, the test should still pass, like in "go" mode.
    			cancel()
    			time.Sleep(100 * time.Millisecond)
    		}
    		numRows++
    		var s RawBytes
    		err = r.Scan(&s)
    		if numRows == 3 && err == context.Canceled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    					// Make wake-up period small enough
    					// for the sampling to be correct.
    					sleep := forcegcperiod / 2
    					if next-now < sleep {
    						sleep = next - now
    					}
    					shouldRelax := sleep >= osRelaxMinNS
    					if shouldRelax {
    						osRelax(true)
    					}
    					syscallWake = notetsleep(&sched.sysmonnote, sleep)
    					if shouldRelax {
    						osRelax(false)
    					}
    					lock(&sched.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		if !c.rd.IsZero() {
    			// If the deadline falls in the middle of our sleep window, deduct
    			// part of the sleep, then return a timeout.
    			if remaining := time.Until(c.rd); remaining < cue {
    				c.script[0] = cue - remaining
    				time.Sleep(remaining)
    				return 0, syscall.ETIMEDOUT
    			}
    		}
    		c.script = c.script[1:]
    		time.Sleep(cue)
    		goto restart
    
    	case string:
    		n = copy(b, cue)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      until kubectl get volumesnapshotclasses.snapshot.storage.k8s.io
      do
        sleep 10
      done
    
      until kubectl get volumesnapshotcontents.snapshot.storage.k8s.io
      do
        sleep 10
      done
    
      until kubectl get volumesnapshots.snapshot.storage.k8s.io
      do
        sleep 10
      done
    
      echo "Wait until volume snapshot RBAC rules are installed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    			newLifecycleHandler:    makeExecHandler(),
    			expectLifecycleHandler: makeExecHandler(),
    		},
    		// sleep -> sleep
    		{
    			gateEnabled:            false,
    			oldLifecycleHandler:    makeSleepHandler(),
    			newLifecycleHandler:    makeSleepHandler(),
    			expectLifecycleHandler: makeSleepHandler(),
    		},
    		{
    			gateEnabled:            true,
    			oldLifecycleHandler:    makeSleepHandler(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/garbagecollector_test.go

    	//
    	// The 1s sleep in the test allows GetDeletableResources and
    	// gc.resyncMonitors to run ~5 times to ensure the changes to the
    	// fakeDiscoveryClient are picked up.
    	go gc.Sync(tCtx, fakeDiscoveryClient, 200*time.Millisecond)
    
    	// Wait until the sync discovers the initial resources
    	time.Sleep(1 * time.Second)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. istioctl/pkg/authz/testdata/configdump.yaml

                              "filter_state": {
                               "key": "io.istio.peer_principal",
                               "string_match": {
                                "exact": "spiffe://cluster.local/ns/default/sa/sleep"
                               }
                              }
                             }
                            ]
                           }
                          },
                          {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  10. cluster/gce/util.sh

            fi
            if gcloud compute addresses describe "$1" --project "${PROJECT}" --region "${REGION}" >/dev/null 2>&1; then
              break
            fi
            echo "Master IP not visible yet. Waiting..."
            sleep 5
          done
          break
        fi
    
        if gcloud compute addresses describe "$1" \
          --project "${PROJECT}" \
          --region "${REGION}" >/dev/null 2>&1; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top