Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 73 of 73 for lasta (0.84 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// waiting for resources *before* triggering delayed volume
    	// provisioning?  On the one hand, volume provisioning is currently
    	// irreversible, so it better should come last. On the other hand,
    	// triggering both in parallel might be faster.
    	return statusPending(logger, "waiting for resource driver to provide information", "pod", klog.KObj(pod))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

              continue
          }
    
          '^(\s+.*)' {
              # line that start with whitespace
              $currentLine += $matches.1
              continue
          }
      }
    
      # Handle the last line if any
      if ($currentLine) {
          $key, $val = $currentLine -split ":",2
          $kube_env_table[$key] = $val.Trim("'", " ", "`"")
      }
    
      return ${kube_env_table}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    	writeErrCh chan error
    
    	writeLoopDone chan struct{} // closed when write loop ends
    
    	// Both guarded by Transport.idleMu:
    	idleAt    time.Time   // time it last become idle
    	idleTimer *time.Timer // holding an AfterFunc to close it
    
    	mu                   sync.Mutex // guards following fields
    	numExpectedResponses int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top