Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 173 for BarTest (0.11 sec)

  1. android/guava-tests/test/com/google/common/math/StatsTesting.java

       * #MANY_VALUES_COUNT} values. If all the values are finite then the mean is {@link
       * #MANY_VALUES_MEAN} and the sum-of-squares-of-deltas is {@link
       * #MANY_VALUES_SUM_OF_SQUARES_OF_DELTAS}. The smallest and largest finite values are always
       * {@link #MANY_VALUES_MIN} and {@link #MANY_VALUES_MAX}, although setting non-finite values will
       * change the true min and max.
       */
      static class ManyValues {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. src/syscall/mkall.sh

    #
    # * types_${GOOS}.c
    #
    # This hand-written C file includes standard C headers and then
    # creates typedef or enum names beginning with a dollar sign
    # (use of $ in variable names is a gcc extension).  The hardest
    # part about preparing this file is figuring out which headers to
    # include and which symbols need to be #defined to get the
    # actual data structures that pass through to the kernel system calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    ====
    
    [NOTE]
    ====
    Choosing the right attributes to set is the hardest thing in this process, because they carry the semantics of the variant.
    Therefore, before adding _new attributes_, you should always ask yourself if there isn't an attribute which carries the semantics you need.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. 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)
  7. src/math/big/float_test.go

    		{"0x.0000020p-126", math.SmallestNonzeroFloat32, Exact},
    		{"0x.8p-148", math.SmallestNonzeroFloat32, Exact},
    		{"1p-149", math.SmallestNonzeroFloat32, Exact},
    		{"0x.fffffep-126", math.Float32frombits(0x7fffff), Exact}, // largest denormal
    
    		// special denormal cases (see issues 14553, 14651)
    		{"0x0.0000001p-126", math.Float32frombits(0x00000000), Below}, // underflow to zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/BigIntegerMath.java

       * @since 20.0
       */
      public static BigInteger ceilingPowerOfTwo(BigInteger x) {
        return BigInteger.ZERO.setBit(log2(x, CEILING));
      }
    
      /**
       * Returns the largest power of two less than or equal to {@code x}. This is equivalent to {@code
       * BigInteger.valueOf(2).pow(log2(x, FLOOR))}.
       *
       * @throws IllegalArgumentException if {@code x <= 0}
       * @since 20.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K 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/time/time.go

    func (t Time) YearDay() int {
    	_, _, _, yday := t.date(false)
    	return yday + 1
    }
    
    // A Duration represents the elapsed time between two instants
    // as an int64 nanosecond count. The representation limits the
    // largest representable duration to approximately 290 years.
    type Duration int64
    
    const (
    	minDuration Duration = -1 << 63
    	maxDuration Duration = 1<<63 - 1
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top