Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Cond (0.04 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	// pod maximum backoff duration.
    	podMaxBackoffDuration time.Duration
    	// the maximum time a pod can stay in the unschedulablePods.
    	podMaxInUnschedulablePodsDuration time.Duration
    
    	cond sync.Cond
    
    	// inFlightPods holds the UID of all pods which have been popped out for which Done
    	// hasn't been called yet - in other words, all pods that are currently being
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	f.ruleMatches[key]++
    	return true
    }
    
    // warnRule generates compiler debug output with string s when
    // v is not in autogenerated code, cond is true and the rule has fired.
    func warnRule(cond bool, v *Value, s string) bool {
    	if pos := v.Pos; pos.Line() > 1 && cond {
    		v.Block.Func.Warnl(pos, s)
    	}
    	return true
    }
    
    // for a pseudo-op like (LessThan x), extract x.
    func flagArg(v *Value) *Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (If (FLessThan cc) yes no) => (FLT cc yes no)
    (If (FLessEqual cc) yes no) => (FLE cc yes no)
    (If (FGreaterThan cc) yes no) => (FGT cc yes no)
    (If (FGreaterEqual cc) yes no) => (FGE cc yes no)
    
    (If cond yes no) => (NE (CMPconst [0] (ANDconst [1] cond)) yes no)
    
    // Absorb boolean tests into block
    (NE (CMPconst [0] (ANDconst [1] ((Equal|NotEqual|LessThan|LessEqual|GreaterThan|GreaterEqual) cc))) yes no) => ((EQ|NE|LT|LE|GT|GE) cc yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
Back to top