Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,861 for Largest (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. guava/src/com/google/common/primitives/SignedBytes.java

    // TODO(kevinb): how to prevent warning on UnsignedBytes when building GWT
    // javadoc?
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class SignedBytes {
      private SignedBytes() {}
    
      /**
       * The largest power of two that can be represented as a signed {@code byte}.
       *
       * @since 10.0
       */
      public static final byte MAX_POWER_OF_TWO = 1 << 6;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    		}
    	case "lowerAscii", "upperAscii", "substring", "trim":
    		if target != nil {
    			sz := l.sizeEstimate(*target)
    			return &checker.CallEstimate{CostEstimate: sz.MultiplyByCostFactor(common.StringTraversalCostFactor), ResultSize: &sz}
    		}
    	case "replace":
    		if target != nil && len(args) >= 2 {
    			sz := l.sizeEstimate(*target)
    			toReplaceSz := l.sizeEstimate(args[0])
    			replaceWithSz := l.sizeEstimate(args[1])
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/common/schemas.go

    		dyn := apiservercel.NewSimpleTypeWithMinSize("dyn", cel.DynType, nil, 1) // smallest value for a serialized x-kubernetes-int-or-string is 0
    		// handle x-kubernetes-int-or-string by returning the max length/min serialized size of the largest possible string
    		dyn.MaxElements = maxRequestSizeBytes - 2
    		return dyn
    	}
    
    	// We ignore XPreserveUnknownFields since we don't support validation rules on
    	// data that we don't have schema information for.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:00:45 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/math.go

    	bigOne      = big.NewInt(1)
    	bigThousand = big.NewInt(1000)
    	big1024     = big.NewInt(1024)
    
    	// Commonly needed inf.Dec values-- treat as read only!
    	decZero = inf.NewDec(0, 0)
    	decOne  = inf.NewDec(1, 0)
    
    	// Largest (in magnitude) number allowed.
    	maxAllowed = infDecAmount{inf.NewDec((1<<63)-1, 0)} // == max int64
    
    	// The maximum value we can represent milli-units for.
    	// Compare with the return value of Quantity.Value() to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 23 13:07:14 UTC 2020
    - 7.3K bytes
    - Viewed (0)
Back to top