Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for BarTest (0.12 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/scheduler/framework/plugins/noderesources/fit.go

    		handle:                          h,
    		resourceAllocationScorer:        *scorePlugin(args),
    	}, nil
    }
    
    // computePodResourceRequest returns a framework.Resource that covers the largest
    // width in each resource dimension. Because init-containers run sequentially, we collect
    // the max in each dimension iteratively. In contrast, we sum the resource vectors for
    // regular containers since they run simultaneously.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        display(xscale, pos, neg, displayList);
      }
    
      // renderStacks creates boxes with top-left at x,y with children drawn as
      // nested stacks (below or above based on the sign of direction).
      // Returns the largest y coordinate filled.
      function renderStacks(depth, xscale, x, y, places, direction) {
        // Example: suppose we are drawing the following stacks:
        //   a->b->c
        //   a->b->d
        //   a->e->f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/runtime/heapdump.go

    				dumpfinalizer(p, spf.fn, spf.fint, spf.ot)
    			}
    		}
    	}
    
    	// Finalizer queue
    	iterate_finq(finq_callback)
    }
    
    // Bit vector of free marks.
    // Needs to be as big as the largest number of objects per span.
    var freemark [_PageSize / 8]bool
    
    func dumpobjs() {
    	// To protect mheap_.allspans.
    	assertWorldStopped()
    
    	for _, s := range mheap_.allspans {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config.go

    		// https://github.com/etcd-io/etcd/blob/release-3.4/embed/config.go#L56.
    		// A request body might be encoded in json, and is converted to
    		// proto when persisted in etcd, so we allow 2x as the largest size
    		// increase the "copy" operations in a json patch may cause.
    		JSONPatchMaxCopyBytes: int64(3 * 1024 * 1024),
    		// 1.5MB is the recommended client request size in byte
    		// the etcd server should accept. See
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/predicates.go

    		case UntypedFloat:
    			return Typ[Float64]
    		case UntypedComplex:
    			return Typ[Complex128]
    		case UntypedString:
    			return Typ[String]
    		}
    	}
    	return t
    }
    
    // maxType returns the "largest" type that encompasses both x and y.
    // If x and y are different untyped numeric types, the result is the type of x or y
    // that appears later in this list: integer, rune, floating-point, complex.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top