Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 230 for BarTest (0.14 sec)

  1. src/cmd/internal/obj/dwarf.go

    			// for similar reasons.
    			switch deltaPC - PC_RANGE {
    			// PC_RANGE is the largest deltaPC we can encode in one byte, using
    			// DW_LNS_const_add_pc.
    			//
    			// (1<<16)-1 is the largest deltaPC we can encode in three bytes, using
    			// DW_LNS_fixed_advance_pc.
    			//
    			// (1<<(7n))-1 is the largest deltaPC we can encode in n+1 bytes for
    			// n=1,3,4,5,..., using DW_LNS_advance_pc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/UnsignedBytes.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class UnsignedBytes {
      private UnsignedBytes() {}
    
      /**
       * The largest power of two that can be represented as an unsigned {@code byte}.
       *
       * @since 10.0
       */
      public static final byte MAX_POWER_OF_TWO = (byte) 0x80;
    
      /**
       * The largest value that fits into an unsigned byte.
       *
       * @since 13.0
       */
      public static final byte MAX_VALUE = (byte) 0xFF;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. test/float_lit2.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"math"
    )
    
    // The largest exact float32 is f₁ = (1+1-1/2²³)×2¹²⁷ = (2-2⁻²³)×2¹²⁷ = 2¹²⁸ - 2¹⁰⁴.
    // The next float32 would be f₂ = (1+1)×2¹²⁷ = 1×2¹²⁸, except that exponent is out of range.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:39:47 UTC 2016
    - 7.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/UnsignedBytes.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class UnsignedBytes {
      private UnsignedBytes() {}
    
      /**
       * The largest power of two that can be represented as an unsigned {@code byte}.
       *
       * @since 10.0
       */
      public static final byte MAX_POWER_OF_TWO = (byte) 0x80;
    
      /**
       * The largest value that fits into an unsigned byte.
       *
       * @since 13.0
       */
      public static final byte MAX_VALUE = (byte) 0xFF;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion_test.go

    								MatchType: &istio.StringMatch_Regex{
    									Regex: ".*foo",
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			"path prefix matching with largest characters",
    			[]*istio.HTTPRoute{
    				{
    					Match: []*istio.HTTPMatchRequest{
    						{
    							Uri: &istio.StringMatch{
    								MatchType: &istio.StringMatch_Prefix{
    									Prefix: "/foo",
    								},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  6. src/math/big/ratconv_test.go

    	"100000000000000008388608",
    	"100000000000000016777215",
    	"100000000000000016777216",
    	"-1",
    	"-0.1",
    	"-0", // NB: exception made for this input
    	"1e-20",
    	"625e-3",
    
    	// largest float64
    	"1.7976931348623157e308",
    	"-1.7976931348623157e308",
    	// next float64 - too large
    	"1.7976931348623159e308",
    	"-1.7976931348623159e308",
    	// the border is ...158079
    	// borderline - okay
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  7. src/math/big/ratconv.go

    //	1/3    0    false    0       (0.333... rounded)
    //	1/4    2    true     0.25
    //	1/6    1    false    0.2     (0.166... rounded)
    func (x *Rat) FloatPrec() (n int, exact bool) {
    	// Determine q and largest p2, p5 such that d = q·2^p2·5^p5.
    	// The results n, exact are:
    	//
    	//     n = max(p2, p5)
    	//     exact = q == 1
    	//
    	// For details see:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. src/go/types/struct.go

    }
    
    // NewStruct returns a new struct with the given fields and corresponding field tags.
    // If a field with index i has a tag, tags[i] must be that tag, but len(tags) may be
    // only as long as required to hold the tag with the largest index i. Consequently,
    // if no field has a tag, tags may be nil.
    func NewStruct(fields []*Var, tags []string) *Struct {
    	var fset objset
    	for _, f := range fields {
    		if f.name != "_" && fset.insert(f) != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// spongeSqueezing indicates that the sponge is being squeezed.
    	spongeSqueezing
    )
    
    const (
    	// maxRate is the maximum size of the internal buffer. SHAKE-256
    	// currently needs the largest buffer.
    	maxRate = 168
    )
    
    type state struct {
    	// Generic sponge components.
    	a    [25]uint64 // main state of the hash
    	rate int        // the number of bytes of state to use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/math/big/float.go

    		panic(ErrNaN{"NewFloat(NaN)"})
    	}
    	return new(Float).SetFloat64(x)
    }
    
    // Exponent and precision limits.
    const (
    	MaxExp  = math.MaxInt32  // largest supported exponent
    	MinExp  = math.MinInt32  // smallest supported exponent
    	MaxPrec = math.MaxUint32 // largest (theoretically) supported precision; likely memory-limited
    )
    
    // Internal representation: The mantissa bits x.mant of a nonzero finite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top