Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for BarTest (0.27 sec)

  1. src/math/const.go

    	Log2E  = 1 / Ln2
    	Ln10   = 2.30258509299404568401799145468436420760110148862877297603332790 // https://oeis.org/A002392
    	Log10E = 1 / Ln10
    )
    
    // Floating-point limit values.
    // Max is the largest finite value representable by the type.
    // SmallestNonzero is the smallest positive, non-zero value representable by the type.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 14:07:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

    }
    
    /**
     * Returns a duration in the nearest whole-number units like "999 µs" or "  1 s ". This rounds 0.5
     * units away from 0 and 0.499 towards 0. The smallest unit this returns is "µs"; the largest unit
     * it returns is "s". For values in [-499..499] this returns "  0 µs".
     *
     * The returned string attempts to be column-aligned to 6 characters. For negative and large values
     * the returned string may be longer.
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go

    			Out:  `1000`,
    		},
    		{
    			In:   `1.5`,
    			Data: float64(1.5),
    			Out:  `1.5`,
    		},
    		{
    			In:   `-0.3`,
    			Data: float64(-.3),
    			Out:  `-0.3`,
    		},
    		{
    			// Largest representable float32
    			In:   `3.40282346638528859811704183484516925440e+38`,
    			Data: float64(math.MaxFloat32),
    			Out:  strconv.FormatFloat(math.MaxFloat32, 'g', -1, 64),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/limits.go

    limitations under the License.
    */
    
    package cel
    
    import celconfig "k8s.io/apiserver/pkg/apis/cel"
    
    const (
    	// DefaultMaxRequestSizeBytes is the size of the largest request that will be accepted
    	DefaultMaxRequestSizeBytes = celconfig.MaxRequestSizeBytes
    
    	// MaxDurationSizeJSON
    	// OpenAPI duration strings follow RFC 3339, section 5.6 - see the comment on maxDatetimeSizeJSON
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/cmd/nm/nm.go

          for compatibility with other nm commands
      -size
          print symbol size in decimal between address and type
      -sort {address,name,none,size}
          sort output in the given order (default name)
          size orders from largest to smallest
      -type
          print symbol type after name
    `
    
    func usage() {
    	fmt.Fprint(os.Stderr, helpText)
    	os.Exit(2)
    }
    
    var (
    	sortOrder = flag.String("sort", "name", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/strconv/atoc.go

    // and include err.Num = s.
    //
    // If s is not syntactically well-formed, ParseComplex returns err.Err = ErrSyntax.
    //
    // If s is syntactically well-formed but either component is more than 1/2 ULP
    // away from the largest floating point number of the given component's size,
    // ParseComplex returns err.Err = ErrRange and c = ±Inf for the respective component.
    func ParseComplex(s string, bitSize int) (complex128, error) {
    	size := 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/biasedsparsemap.go

    	if first > last {
    		return &biasedSparseMap{first: math.MaxInt32, s: nil}
    	}
    	return &biasedSparseMap{first: first, s: newSparseMap(1 + last - first)}
    }
    
    // cap returns one more than the largest key valid for s
    func (s *biasedSparseMap) cap() int {
    	if s == nil || s.s == nil {
    		return 0
    	}
    	return s.s.cap() + int(s.first)
    }
    
    // size returns the number of entries stored in s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:06 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/DependencyGenerator.groovy

     * dependencies to projects in lower layers. The sizes of different layers are created so that
     * the first and last layers are the smallest and the layers in the middle are the largest.
     *
     * For example when numberOfProjects = 150, 10 layers will be created with sizes of
     * [1, 2, 6, 16, 50, 50, 16, 6, 2, 1]
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  9. src/math/trig_reduce.go

    	return j, z * PI4
    }
    
    // mPi4 is the binary digits of 4/pi as a uint64 array,
    // that is, 4/pi = Sum mPi4[i]*2^(-64*i)
    // 19 64-bit digits and the leading one bit give 1217 bits
    // of precision to handle the largest possible float64 exponent.
    var mPi4 = [...]uint64{
    	0x0000000000000001,
    	0x45f306dc9c882a53,
    	0xf84eafa3ea69bb81,
    	0xb6c52b3278872083,
    	0xfca2c757bd778ac3,
    	0x6e48dc74849ba5c0,
    	0x0c925dd413a32439,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. src/image/geom_test.go

    			got := r.Eq(s)
    			want := in(r, s) == nil && in(s, r) == nil
    			if got != want {
    				t.Errorf("Eq: r=%s, s=%s: got %t, want %t", r, s, got, want)
    			}
    		}
    	}
    
    	// The intersection should be the largest rectangle a such that every point
    	// in a is both in r and in s.
    	for _, r := range rects {
    		for _, s := range rects {
    			a := r.Intersect(s)
    			if err := in(a, r); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 05:05:59 UTC 2017
    - 3K bytes
    - Viewed (0)
Back to top