Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for enter_1 (0.11 sec)

  1. pkg/controller/job/job_controller.go

    	}
    
    	// Check the expectations of the job before counting active pods, otherwise a new pod can sneak in
    	// and update the expectations after we've retrieved active pods from the store. If a new pod enters
    	// the store after we've checked the expectation, the job sync is just deferred till the next relist.
    	satisfiedExpectations := jm.expectations.SatisfiedExpectations(logger, key)
    
    	pods, err := jm.getPodsForJob(ctx, &job)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	if pendingDelayedClaims > 0 {
    		// We could start a pod scheduling attempt to refresh the
    		// potential nodes list.  But pod scheduling attempts are
    		// expensive and doing them too often causes the pod to enter
    		// backoff. Let's wait instead for all drivers to reply.
    		if loggerV := logger.V(6); loggerV.Enabled() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      # PLEASE KEEP THEM CONSISTENT!!!
      $endpoint_name = "cbr0"
    
      $vnic_name = "vEthernet (${endpoint_name})"
    
      $hns_endpoint = Get-HnsEndpoint | Where-Object Name -eq $endpoint_name
      # Note: we don't expect to ever enter this block currently - while the HNS
      # network does seem to persist across reboots, the HNS endpoints do not.
      if ($hns_endpoint) {
        if ($REDO_STEPS) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	return i
    }
    
    // LookupOrCreateSym looks up the symbol with the specified name/version,
    // returning its Sym index if found. If the lookup fails, a new external
    // Sym will be created, entered into the lookup tables, and returned.
    func (l *Loader) LookupOrCreateSym(name string, ver int) Sym {
    	i := l.Lookup(name, ver)
    	if i != 0 {
    		return i
    	}
    	i = l.newExtSym(name, ver)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top