Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fixErr (0.09 sec)

  1. pkg/scheduler/schedule_one.go

    	return false, nil
    }
    
    func (sched *Scheduler) finishBinding(logger klog.Logger, fwk framework.Framework, assumed *v1.Pod, targetNode string, status *framework.Status) {
    	if finErr := sched.Cache.FinishBinding(logger, assumed); finErr != nil {
    		logger.Error(finErr, "Scheduler cache FinishBinding failed")
    	}
    	if !status.IsSuccess() {
    		logger.V(1).Info("Failed to bind pod", "pod", klog.KObj(assumed))
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. docs/pt/docs/deployment.md

    Se tudo estiver funcionando, ou após você fazer as alterações necessárias, e todos seus testes estiverem passando, então você poderá fixar o `fastapi` para a versão mais recente.
    
    ### Sobre Starlette
    
    Você não deve fixar a versão do `starlette`.
    
    Versões diferentes do **FastAPI** irão utilizar uma versão mais nova específica do Starlette.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 18 16:16:54 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  3. src/debug/dwarf/type.go

    	// because it may need to resolve cycles in a different order than
    	// readType encounters them.
    	if fixups == nil {
    		var fixer typeFixer
    		defer func() {
    			fixer.apply()
    		}()
    		fixups = &fixer
    	}
    
    	// Parse type from Entry.
    	// Must always set typeCache[off] before calling
    	// d.readType recursively, to handle circular types correctly.
    	var typ Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
Back to top