Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sleepytime (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top