Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for ErrRange (0.29 sec)

  1. guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java

       * (so much for "black box") and try instances that both do and don't pass the check. The "don't"
       * half of that is more awkward to arrange...
       */
      private static <T> Iterable<T> iterable(final Collection<T> collection) {
        // return collection::iterator;
        return new Iterable<T>() {
          @Override
          public Iterator<T> iterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    // AddUniversalFlags adds flags for a specific APIServer to the specified FlagSet
    func (s *ServerRunOptions) AddUniversalFlags(fs *pflag.FlagSet) {
    	// Note: the weird ""+ in below lines seems to be the only way to get gofmt to
    	// arrange these text blocks sensibly. Grrr.
    
    	fs.IPVar(&s.AdvertiseAddress, "advertise-address", s.AdvertiseAddress, ""+
    		"The IP address on which to advertise the apiserver to members of the cluster. This "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java

       * (so much for "black box") and try instances that both do and don't pass the check. The "don't"
       * half of that is more awkward to arrange...
       */
      private static <T> Iterable<T> iterable(final Collection<T> collection) {
        // return collection::iterator;
        return new Iterable<T>() {
          @Override
          public Iterator<T> iterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gccgo.go

    			// Don't start thinking we want to link
    			// this .so into itself.
    			base := filepath.Base(p.Shlib)
    			if base != targetBase {
    				haveShlib[base] = true
    			}
    		}
    	}
    
    	// Arrange the deps into afiles and shlibs.
    	addedShlib := make(map[string]bool)
    	for _, a := range root.Deps {
    		p := a.Package
    		if p != nil && p.Shlib != "" && haveShlib[filepath.Base(p.Shlib)] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/compare.go

    			n.X = cheapExpr(n.X, init)
    			n.Y = cheapExpr(n.Y, init)
    
    			// If exactly one comparison operand is
    			// constant, invoke the constcmp functions
    			// instead, and arrange for the constant
    			// operand to be the first argument.
    			l, r := n.X, n.Y
    			if r.Op() == ir.OLITERAL {
    				l, r = r, l
    			}
    			constcmp := l.Op() == ir.OLITERAL && r.Op() != ir.OLITERAL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  6. LICENSE

    publicly available network server or other readily accessible means,
    then you must either (1) cause the Corresponding Source to be so
    available, or (2) arrange to deprive yourself of the benefit of the
    patent license for this particular work, or (3) arrange, in a manner
    consistent with the requirements of this License, to extend the patent
    license to downstream recipients.  "Knowingly relying" means you have
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  7. src/runtime/stubs.go

    func getg() *g
    
    // mcall switches from the g to the g0 stack and invokes fn(g),
    // where g is the goroutine that made the call.
    // mcall saves g's current PC/SP in g->sched so that it can be restored later.
    // It is up to fn to arrange for that later execution, typically by recording
    // g in a data structure, causing something to call ready(g) later.
    // mcall returns to the original goroutine g later, when g has been rescheduled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    // meaning to start a new counter file with a different date in the name.
    // rotate is also used to open the file initially, meaning f.current can be nil.
    // In general rotate should be called just once for each file.
    // rotate will arrange a timer to call itself again when necessary.
    func (f *file) rotate() {
    	expire, cleanup := f.rotate1()
    	cleanup()
    	if !expire.IsZero() {
    		// TODO(rsc): Does this do the right thing for laptops closing?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    	// and consumes a hash from an adjacent subtree.
    	m := int(bits.TrailingZeros64(uint64(n + 1)))
    	indexes := make([]int64, m)
    	for i := 0; i < m; i++ {
    		// We arrange indexes in sorted order.
    		// Note that n>>i is always odd.
    		indexes[m-1-i] = StoredHashIndex(i, n>>uint(i)-1)
    	}
    
    	// Fetch hashes.
    	old, err := r.ReadHashes(indexes)
    	if err != nil {
    		return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. src/runtime/profbuf.go

    	// still shade that pointer, which would preserve it for the
    	// in-progress GC, so all is well. Any future GC will see the
    	// value we copied when scanning b.tags (heap-allocated).
    	// We arrange that the store here is always overwriting a nil,
    	// so there is no need for a deletion barrier on b.tags[wt].
    	wt := int(bw.tagCount() % uint32(len(b.tags)))
    	if tagPtr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top