Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for modstat (0.12 sec)

  1. pkg/kubelet/server/stats/handler.go

    	ListPodStats(ctx context.Context) ([]statsapi.PodStats, error)
    	// ListPodStatsAndUpdateCPUNanoCoreUsage updates the cpu nano core usage for
    	// the containers and returns the stats for all the pod-managed containers.
    	ListPodCPUAndMemoryStats(ctx context.Context) ([]statsapi.PodStats, error)
    	// ListPodStatsAndUpdateCPUNanoCoreUsage returns the stats of all the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/parse.go

    //	Heading
    //	Item
    //	List
    //	Paragraph
    //	Quote
    //	Text
    //	ThematicBreak
    type Block interface {
    	Pos() Position
    	PrintHTML(buf *bytes.Buffer)
    	printMarkdown(buf *bytes.Buffer, s mdState)
    }
    
    type mdState struct {
    	prefix  string
    	prefix1 string // for first line only
    	bullet  rune   // for list items
    	num     int    // for numbered list items
    }
    
    type Position struct {
    	StartLine int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/gover/mod.go

    	}
    	if path == "toolchain" {
    		return Compare(maybeToolchainVersion(x), maybeToolchainVersion(y))
    	}
    	return semver.Compare(x, y)
    }
    
    // ModSort is like module.Sort but understands the "go" and "toolchain"
    // modules and their version ordering.
    func ModSort(list []module.Version) {
    	sort.Slice(list, func(i, j int) bool {
    		mi := list[i]
    		mj := list[j]
    		if mi.Path != mj.Path {
    			return mi.Path < mj.Path
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/quote.go

    	buf.WriteString("<blockquote>\n")
    	for _, c := range b.Blocks {
    		c.PrintHTML(buf)
    	}
    	buf.WriteString("</blockquote>\n")
    }
    
    func (b *Quote) printMarkdown(buf *bytes.Buffer, s mdState) {
    	s.prefix += "> "
    	printMarkdownBlocks(b.Blocks, buf, s)
    }
    
    func trimQuote(s line) (line, bool) {
    	t := s
    	t.trimSpace(0, 3, false)
    	if !t.trim('>') {
    		return s, false
    	}
    	t.trimSpace(0, 1, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. src/math/big/alias_test.go

    		},
    		"ModInverse": func(v, x bigInt, y notZeroInt) bool {
    			return checkAliasingTwoArgs(t, (*big.Int).ModInverse, v.Int, x.Int, y.Int)
    		},
    		"ModSqrt": func(v, x bigInt, p prime) bool {
    			return checkAliasingTwoArgs(t, (*big.Int).ModSqrt, v.Int, x.Int, p.Int)
    		},
    		"Mul": func(v, x, y bigInt) bool {
    			return checkAliasingTwoArgs(t, (*big.Int).Mul, v.Int, x.Int, y.Int)
    		},
    		"Neg": func(v, x bigInt) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    	if z != &sqrtChk || z.Cmp(sqrt) != 0 {
    		t.Errorf("ModSqrt returned inconsistent value %s", z)
    	}
    	sqChk.Sub(sq, mod)
    	z = sqrtChk.ModSqrt(&sqChk, mod)
    	if z != &sqrtChk || z.Cmp(sqrt) != 0 {
    		t.Errorf("ModSqrt returned inconsistent value %s", z)
    	}
    
    	// test x aliasing z
    	z = sqrtChk.ModSqrt(sqrtChk.Set(sq), mod)
    	if z != &sqrtChk || z.Cmp(sqrt) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/cache.go

    	mu sync.RWMutex
    	// a set of assumed pod keys.
    	// The key could further be used to get an entry in podStates.
    	assumedPods sets.Set[string]
    	// a map from pod key to podState.
    	podStates map[string]*podState
    	nodes     map[string]*nodeInfoListItem
    	// headNode points to the most recently updated NodeInfo in "nodes". It is the
    	// head of the linked list.
    	headNode *nodeInfoListItem
    	nodeTree *nodeTree
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  8. src/cmd/covdata/metamerge.go

    	cmerge.Merger
    	// maps package import path to package state
    	pkm map[string]*pkstate
    	// list of packages
    	pkgs []*pkstate
    	// current package state
    	p *pkstate
    	// current pod state
    	pod *podstate
    	// counter data file osargs/goos/goarch state
    	astate *argstate
    }
    
    // pkstate
    type pkstate struct {
    	// index of package within meta-data file.
    	pkgIdx uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/break.go

    )
    
    type ThematicBreak struct {
    	Position
    	raw string
    }
    
    func (b *ThematicBreak) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("<hr />\n")
    }
    
    func (b *ThematicBreak) printMarkdown(buf *bytes.Buffer, s mdState) {
    	buf.WriteString(s.prefix)
    	buf.WriteString(b.raw)
    	buf.WriteByte('\n')
    }
    
    func newHR(p *parseState, s line) (line, bool) {
    	if isHR(s) {
    		p.doneBlock(&ThematicBreak{Position{p.lineno, p.lineno}, s.string()})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/crypto/elliptic/elliptic_test.go

    	// Check if P is treated like zero (if possible).
    	// y^2 = x^3 - 3x + B
    	// y = mod_sqrt(x^3 - 3x + B)
    	// y = mod_sqrt(B) if x = 0
    	// If there is no modsqrt, there is no point with x = 0, can't test x = P.
    	if yy := new(big.Int).ModSqrt(curve.Params().B, p); yy != nil {
    		if !curve.IsOnCurve(big.NewInt(0), yy) {
    			t.Fatal("(0, mod_sqrt(B)) is not on the curve?")
    		}
    		checkIsOnCurveFalse("P, y", p, yy)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 02:00:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top