Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for BarTest (0.17 sec)

  1. platforms/documentation/docs/src/docs/css/base.css

        justify-content: space-between;
        max-width: 75rem;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    /*
     * 1. Value is the largest computed width among 'site-footer__copy' and 'site-footer__links'.
     */
    .site-footer__copy,
    .site-footer__secondary-links {
        flex-grow: 0;
        flex-basis: 280px;
        /* 1. */
    }
    
    /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. pilot/pkg/status/distribution/reporter.go

    	r.mu.RLock()
    	defer r.mu.RUnlock()
    	return r.status[key]
    }
    
    // Register that a dataplane has acknowledged a new version of the config.
    // Theoretically, we could use the ads connections themselves to harvest this data,
    // but the mutex there is pretty hot, and it seems best to trade memory for time.
    func (r *Reporter) RegisterEvent(conID string, distributionType xds.EventType, nonce string) {
    	if nonce == "" {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/loopbce.go

    		// This function returns true if the increment will never overflow/underflow.
    		ok := func() bool {
    			if step > 0 {
    				if limit.isGenericIntConst() {
    					// Figure out the actual largest value.
    					v := limit.AuxInt
    					if !inclusive {
    						if v == minSignedValue(limit.Type) {
    							return false // < minint is never satisfiable.
    						}
    						v--
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/cidrallocator.go

    func (c *MetaAllocator) getAllocator(ip net.IP) (*Allocator, error) {
    	c.muTree.Lock()
    	defer c.muTree.Unlock()
    
    	address := ipToAddr(ip)
    	prefix := netip.PrefixFrom(address, address.BitLen())
    	// Use the largest subnet to allocate addresses because
    	// all the other subnets will be contained.
    	_, allocator, ok := c.tree.ShortestPrefixMatch(prefix)
    	if !ok {
    		klog.V(2).Infof("Could not get allocator for IP %s", ip.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1alpha1/types.go

    	// for a GetCapacityRequest with topology and parameters that match the
    	// previous fields.
    	//
    	// This is defined since CSI spec 1.4.0 as the largest size
    	// that may be used in a
    	// CreateVolumeRequest.capacity_range.required_bytes field to
    	// create a volume with the same parameters as those in
    	// GetCapacityRequest. The corresponding value in the Kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. src/internal/profile/profile.go

    // total samples collected.
    func (p *Profile) Merge(pb *Profile, r float64) error {
    	if err := p.Compatible(pb); err != nil {
    		return err
    	}
    
    	pb = pb.Copy()
    
    	// Keep the largest of the two periods.
    	if pb.Period > p.Period {
    		p.Period = pb.Period
    	}
    
    	p.DurationNanos += pb.DurationNanos
    
    	p.Mapping = append(p.Mapping, pb.Mapping...)
    	for i, m := range p.Mapping {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/unsafe/unsafe.go

    func Offsetof(x ArbitraryType) uintptr
    
    // Alignof takes an expression x of any type and returns the required alignment
    // of a hypothetical variable v as if v was declared via var v = x.
    // It is the largest value m such that the address of v is always zero mod m.
    // It is the same as the value returned by [reflect.TypeOf](x).Align().
    // As a special case, if a variable s is of struct type and f is a field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/index/suffixarray/suffixarray_test.go

    // Generates many inputs, builds and checks suffix arrays.
    func test(t *testing.T, build func([]byte) []int) {
    	t.Run("ababab...", func(t *testing.T) {
    		// Very repetitive input has numLMS = len(x)/2-1
    		// at top level, the largest it can be.
    		// But maxID is only two (aba and ab$).
    		size := 100000
    		if testing.Short() {
    			size = 10000
    		}
    		x := make([]byte, size)
    		for i := range x {
    			x[i] = "ab"[i%2]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/http.go

    </ul>
    
    <h2>Garbage collection metrics</h2>
    <ul>
    <li><a href="/mmu">Minimum mutator utilization</a></li>
    </ul>
    <p>
      This chart indicates the maximum GC pause time (the largest x value
      for which y is zero), and more generally, the fraction of time that
      the processors are available to application goroutines ("mutators"),
      for any time window of a specified size, in the worst case.
    </p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. cmd/endpoint-ellipses.go

    	// prefers setCounts to be sorted for optimal behavior.
    	if divisibleSize < setCounts[len(setCounts)-1] {
    		return divisibleSize
    	}
    
    	// Figure out largest value of total_drives_in_erasure_set which results
    	// in least number of total_drives/total_drives_erasure_set ratio.
    	prevD := divisibleSize / setCounts[0]
    	for _, cnt := range setCounts {
    		if divisibleSize%cnt == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top