Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 99 for nominator (0.26 sec)

  1. src/cmd/compile/internal/ssa/phiopt.go

    	// 2. find the common dominator(b0) of the predecessors(pb0, pb1) of block b, and the
    	//    dominator(b0) is a If block.
    	//    Special case: one of the predecessors(pb0 or pb1) is the dominator(b0).
    	// 3. the successors(sb0, sb1) of the dominator need to dominate the predecessors(pb0, pb1)
    	//    of block b respectively.
    	// 4. replace this boolean Phi based on dominator block.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram.go

    	trh.Set(float64(trh.nowFunc().Sub(time.Unix(0, 0))))
    }
    
    func (trh *timingRatioHistogramInner) SetDenominator(denominator float64) {
    	trh.Lock()
    	defer trh.Unlock()
    	trh.denominator = denominator
    	ratio := trh.numerator / denominator
    	trh.getGaugeOfRatio().Set(ratio)
    }
    
    // WithContext allows the normal TimingHistogram metric to pass in context.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/lca.go

    }
    
    type lcaRangeBlock struct {
    	b          *Block
    	parent     ID    // parent in dominator tree.  0 = no parent (entry or unreachable)
    	firstChild ID    // first child in dominator tree
    	sibling    ID    // next child of parent
    	pos        int32 // an index in the Euler tour where this block appears (any one of its occurrences)
    	depth      int32 // depth in dominator tree (root=0, its children=1, etc.)
    }
    
    func makeLCArange(f *Func) *lcaRange {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/phi.go

    	defvars []map[ir.Node]*ssa.Value // defined variables at end of each block
    
    	varnum map[ir.Node]int32 // variable numbering
    
    	// properties of the dominator tree
    	idom  []*ssa.Block // dominator parents
    	tree  []domBlock   // dominator child+sibling
    	level []int32      // level in dominator tree (0 = root or unreachable, 1 = children of root, ...)
    
    	// scratch locations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  5. .idea/dictionaries/abreslav.xml

    <component name="ProjectDictionaryState">
      <dictionary name="abreslav">
        <words>
          <w>accessor</w>
          <w>covariantly</w>
          <w>deserialized</w>
          <w>dominator</w>
          <w>inferrer</w>
          <w>iterable</w>
          <w>nondeterministic</w>
          <w>nullable</w>
          <w>overridable</w>
          <w>pseudocode</w>
          <w>substitutor</w>
          <w>subtyping</w>
          <w>supertype</w>
          <w>supertypes</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jul 09 13:32:24 UTC 2015
    - 500 bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route_internal_test.go

    						Numerator:   uint32(50 * 10000),
    						Denominator: xdstype.FractionalPercent_MILLION,
    					},
    					FaultDelaySecifier: &xdsfault.FaultDelay_FixedDelay{
    						FixedDelay: &durationpb.Duration{
    							Seconds: int64(3),
    						},
    					},
    				},
    				Abort: &xdshttpfault.FaultAbort{
    					Percentage: &xdstype.FractionalPercent{
    						Numerator:   uint32(50 * 10000),
    						Denominator: xdstype.FractionalPercent_MILLION,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/interface.go

    }
    
    // RatioedGauge tracks ratios.
    // The numerator is set/changed through the Gauge methods,
    // and the denominator can be updated through the SetDenominator method.
    // A ratio is tracked whenever the numerator or denominator is set/changed.
    type RatioedGauge interface {
    	Gauge
    
    	// SetDenominator sets the denominator to use until it is changed again
    	SetDenominator(float64)
    }
    
    // RatioedGaugeVec creates related observers that are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 13 03:37:15 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. tests/integration/telemetry/policy/testdata/enable_envoy_local_ratelimit.yaml

                    default_value:
                      numerator: 100
                      denominator: HUNDRED
                  filter_enforced:
                    runtime_key: local_rate_limit_enforced
                    default_value:
                      numerator: 100
                      denominator: HUNDRED
                  response_headers_to_add:
                    - append: false
                      header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 02 03:31:35 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreter.kt

                        spec?.let { add(it) }
                    }
                }
            )
        }
    }
    
    
    private
    val combinator = Combinator(ignoresComments = true, ignoresNewline = false)
    
    
    private
    val pluginsBlockParser = run {
    
        combinator.run {
    
            val parenString by debug {
                paren(stringLiteral)
            }
    
            val parenBool by debug {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/debugger/dumper.go

    	// Dumping Pod Info
    	for _, p := range n.Pods {
    		nodeData.WriteString(printPod(p.Pod))
    	}
    	// Dumping nominated pods info on the node
    	nominatedPodInfos := d.podQueue.NominatedPodsForNode(name)
    	if len(nominatedPodInfos) != 0 {
    		nodeData.WriteString(fmt.Sprintf("Nominated Pods(number: %v):\n", len(nominatedPodInfos)))
    		for _, pi := range nominatedPodInfos {
    			nodeData.WriteString(printPod(pi.Pod))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top