Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for sleepytime (0.14 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/ConcurrentTestUtil.groovy

            long sleepTime = toMillis(pollIntervalInSeconds)
            while(true) {
                try {
                    assertion()
                    return
                } catch (Throwable t) {
                    if (monotonicClockMillis() > expiry) {
                        throw t
                    }
                    sleepTime = Math.min(250, (long) (sleepTime * 1.2))
                    Thread.sleep(sleepTime)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/taint_eviction_test.go

    					}
    
    					sleepTime := item.expectedDeleteTimes[i].timestamp - time.Since(startedAt) + increment
    					if sleepTime < 0 {
    						sleepTime = 0
    					}
    					t.Logf("Sleeping for %v", sleepTime)
    					time.Sleep(sleepTime)
    				}
    
    				for delay, podName := range item.expectedDeleteTimes[i].names {
    					deleted := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. hack/lib/util.sh

    # returns 0 if the shell command get output, 1 otherwise.
    kube::util::wait_for_success(){
      local wait_time="$1"
      local sleep_time="$2"
      local cmd="$3"
      while [ "$wait_time" -gt 0 ]; do
        if eval "$cmd"; then
          return 0
        else
          sleep "$sleep_time"
          wait_time=$((wait_time-sleep_time))
        fi
      done
      return 1
    }
    
    # Example:  kube::util::trap_add 'echo "in trap DEBUG"' DEBUG
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    	// because of the additional overheads of using scavenged memory.
    	worked *= 1 + scavengeCostRatio
    
    	// sleepTime is the amount of time we're going to sleep, based on the amount
    	// of time we worked, and the sleepRatio.
    	sleepTime := int64(worked / s.sleepRatio)
    
    	var slept int64
    	if s.sleepStub == nil {
    		// Set the timer.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. docs/em/docs/how-to/sql-databases-peewee.md

    ```Python hl_lines="2"
    # Something goes here
    def read_users(skip: int = 0, limit: int = 100):
        # Something goes here
    ```
    
    ## ๐Ÿ”ฌ ๐Ÿ’ โฎ๏ธ ๐Ÿ”
    
    ๐Ÿ‘‰ ๐Ÿ–ผ ๐Ÿ”Œ โž• *โžก ๐Ÿ› ๏ธ* ๐Ÿ‘ˆ ๐Ÿ”ฌ ๐Ÿ“ ๐Ÿญ ๐Ÿ“จ โฎ๏ธ `time.sleep(sleep_time)`.
    
    โšซ๏ธ ๐Ÿ”œ โœ”๏ธ ๐Ÿ’ฝ ๐Ÿ”— ๐Ÿ“‚ โ–ถ๏ธ &amp; ๐Ÿ”œ โŒ› ๐Ÿฅˆ โญ ๐Ÿ™‡ ๐Ÿ”™. &amp; ๐Ÿ”  ๐Ÿ†• ๐Ÿ“จ ๐Ÿ”œ โŒ› ๐Ÿ• ๐Ÿฅˆ ๐ŸŒ˜.
    
    ๐Ÿ‘‰ ๐Ÿ”œ ๐Ÿ’ช โžก๏ธ ๐Ÿ‘† ๐Ÿ’ฏ ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ“ฑ โฎ๏ธ ๐Ÿ’ &amp; FastAPI ๐ŸŽญ โ˜‘ โฎ๏ธ ๐ŸŒ ๐Ÿ’ฉ ๐Ÿ”ƒ ๐Ÿงต.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

              -DestinationPrefix ${GCE_METADATA_SERVER}/32 | Out-Null
        } Catch [Microsoft.PowerShell.Cmdletization.Cim.CimJobException] {
          break
        }
        $sleeptime = 2
        Start-Sleep ${sleeptime}
        ${elapsed} += ${sleeptime}
      }
    }
    
    # Adds a route to the GCE metadata server to every network interface.
    function Add_GceMetadataServerRoute {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. docs/en/docs/how-to/sql-databases-peewee.md

    def read_users(skip: int = 0, limit: int = 100):
        # Something goes here
    ```
    
    ## Testing Peewee with async
    
    This example includes an extra *path operation* that simulates a long processing request with `time.sleep(sleep_time)`.
    
    It will have the database connection open at the beginning and will just wait some seconds before replying back. And each new request will wait one second less.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top