Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 99 for nominator (0.2 sec)

  1. src/math/cmplx/tan.go

    //
    // If
    //     z = x + iy,
    //
    // then
    //
    //           sin 2x  +  i sinh 2y
    //     w  =  --------------------.
    //            cos 2x  +  cosh 2y
    //
    // On the real axis the denominator is zero at odd multiples
    // of PI/2. The denominator is evaluated by its Taylor
    // series near these points.
    //
    // ctan(z) = -i ctanh(iz).
    //
    // ACCURACY:
    //
    //                      Relative error:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/loopreschedchecks.go

    	if len(backedges) == 0 { // no backedges means no rescheduling checks.
    		return
    	}
    
    	lastMems := findLastMems(f)
    
    	idom := f.Idom()
    	po := f.postorder()
    	// The ordering in the dominator tree matters; it's important that
    	// the walk of the dominator tree also be a preorder (i.e., a node is
    	// visited only after all its non-backedge predecessors have been visited).
    	sdom := newSparseOrderedTree(f, idom, po)
    
    	if f.pass.debug > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  3. src/runtime/vlop_arm.s

    	NO_LOCAL_POINTERS
    	MOVW	Rq, 4(R13)
    	MOVW	Rr, 8(R13)
    	MOVW	Rs, 12(R13)
    	MOVW	RM, 16(R13)
    
    	MOVW	Rn, Rr			/* numerator */
    	MOVW	g_m(g), Rq
    	MOVW	m_divmod(Rq), Rq	/* denominator */
    	BL  	runtimeĀ·udiv(SB)
    	MOVW	Rq, RTMP
    	MOVW	4(R13), Rq
    	MOVW	8(R13), Rr
    	MOVW	12(R13), Rs
    	MOVW	16(R13), RM
    	RET
    
    TEXT runtimeĀ·_modu(SB), NOSPLIT, $16-0
    	NO_LOCAL_POINTERS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    				if corev1helpers.PodPriority(p.Pod) < podPriority && podTerminatingByPreemption(p.Pod, pl.fts.EnablePodDisruptionConditions) {
    					// There is a terminating pod on the nominated node.
    					return false, "not eligible due to a terminating pod on the nominated node."
    				}
    			}
    		}
    	}
    	return true, ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/lca_test.go

    	testLCAgen(t, genMaxPredValue, 100)
    }
    
    // Simple implementation of LCA to compare against.
    type lcaEasy struct {
    	parent []*Block
    }
    
    func makeLCAeasy(f *Func) *lcaEasy {
    	return &lcaEasy{parent: dominators(f)}
    }
    
    func (lca *lcaEasy) find(a, b *Block) *Block {
    	da := lca.depth(a)
    	db := lca.depth(b)
    	for da > db {
    		da--
    		a = lca.parent[a.ID]
    	}
    	for da < db {
    		db--
    		b = lca.parent[b.ID]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 01 14:25:12 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight.go

    		if nonMutatingLimit != 0 {
    			watermark.readOnlyObserver.SetDenominator(float64(nonMutatingLimit))
    			klog.V(2).InfoS("Set denominator for readonly requests", "limit", nonMutatingLimit)
    		}
    		if mutatingLimit != 0 {
    			watermark.mutatingObserver.SetDenominator(float64(mutatingLimit))
    			klog.V(2).InfoS("Set denominator for mutating requests", "limit", mutatingLimit)
    		}
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 11:34:15 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    	// The RatioedGaugePair observes number of requests,
    	// execution covering just the regular phase.
    	// The denominator for the waiting phase is
    	// max(1, QueuingConfig.QueueLengthLimit) X max(1, QueuingConfig.DesiredNumQueues).
    	// The RatioedGauge observes number of seats occupied through all phases of execution.
    	// The denominator for all the ratioed concurrency gauges is supplied later in the DispatchingConfig.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/nilcheck.go

    		op    walkState
    	}
    
    	work := make([]bp, 0, 256)
    	work = append(work, bp{block: f.Entry})
    
    	// map from value ID to known non-nil version of that value ID
    	// (in the current dominator path being walked). This slice is updated by
    	// walkStates to maintain the known non-nil values.
    	// If there is extrinsic information about non-nil-ness, this map
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/deadcode.go

    		//   y = (op1 x ...)
    		//   z = (op2 y ...)
    		// Where opX are not Phi ops. But such a situation
    		// implies a cycle in the dominator graph. In the
    		// example, x.Block dominates y.Block, y.Block dominates
    		// z.Block, and z.Block dominates x.Block (treating
    		// "dominates" as reflexive).  Cycles in the dominator
    		// graph can only happen in an unreachable cycle.
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

     * - a `readObject` method with no corresponding `writeObject`; `readObject` must eventually call [ObjectInputStream.defaultReadObject];
     * - a `writeReplace` method to allow the class to nominate a replacement to be written;
     * - a `readResolve` method to allow the class to nominate a replacement for the object just read;
     *
     * The following _Java Object Serialization_ features are **not** supported:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top