Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 230 for BarTest (0.29 sec)

  1. 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)
  2. pkg/apis/autoscaling/validation/validation.go

    	apivalidation "k8s.io/kubernetes/pkg/apis/core/validation"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    const (
    	// MaxPeriodSeconds is the largest allowed scaling policy period (in seconds)
    	MaxPeriodSeconds int32 = 1800
    	// MaxStabilizationWindowSeconds is the largest allowed stabilization window (in seconds)
    	MaxStabilizationWindowSeconds int32 = 3600
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    				// If the replacement does not make the result longer, use the original string length.
    				replaceCount.Max = 0
    				retainedSz.Max = sz.Max
    			} else {
    				// Replace the smallest possible substrings with the largest possible replacement
    				// as many times as possible.
    				replaceCount.Max = uint64(math.Ceil(float64(sz.Max) / float64(toReplaceSz.Min)))
    			}
    
    			// find the shortest replacement:
    			if toReplaceSz.Max == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. 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)
  6. android/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)
  7. src/math/cmplx/tan.go

    	ix &= fracMask
    	ix |= 1 << shift
    
    	// mPi is the binary digits of 1/Pi as a uint64 array,
    	// that is, 1/Pi = Sum mPi[i]*2^(-64*i).
    	// 19 64-bit digits give 1216 bits of precision
    	// to handle the largest possible float64 exponent.
    	var mPi = [...]uint64{
    		0x0000000000000000,
    		0x517cc1b727220a94,
    		0xfe13abe8fa9a6ee0,
    		0x6db14acc9e21c820,
    		0xff28b1d5ef5de2b0,
    		0xdb92371d2126e970,
    		0x0324977504e8c90e,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

      // for a GetCapacityRequest with topology and parameters that match the
      // previous fields.
      //
      // This is defined since CSI spec 1.4.0 as the largest size
      // that may be used in a
      // CreateVolumeRequest.capacity_range.required_bytes field to
      // create a volume with the same parameters as those in
      // GetCapacityRequest. The corresponding value in the Kubernetes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    				}
    			}
    		}
    	}
    	// Next, find the offset of the largest pointer in the largest node.
    	var maxArgs int64
    	if maxArgNode != nil {
    		maxArgs = maxArgNode.FrameOffset() + types.PtrDataSize(maxArgNode.Type())
    	}
    
    	// Size locals bitmaps to be stkptrsize sized.
    	// We cannot shrink them to only hold the largest pointer,
    	// because their size is used to calculate the beginning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. src/crypto/dsa/dsa.go

    type ParameterSizes int
    
    const (
    	L1024N160 ParameterSizes = iota
    	L2048N224
    	L2048N256
    	L3072N256
    )
    
    // numMRTests is the number of Miller-Rabin primality tests that we perform. We
    // pick the largest recommended number from table C.1 of FIPS 186-3.
    const numMRTests = 64
    
    // GenerateParameters puts a random, valid set of DSA parameters into params.
    // This function can take many seconds, even on fast machines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top