Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,861 for Largest (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/registry/core/service/ipallocator/ipallocator_test.go

    			cidr:  "2001:db8::/128",
    			addrs: 0,
    		},
    		{
    			name:  "small IPv6 cidr",
    			cidr:  "2001:db8::/127",
    			addrs: 1,
    		},
    		{
    			name:  "largest IPv6 for Int64",
    			cidr:  "2001:db8::/65",
    			addrs: math.MaxInt64,
    		},
    		{
    			name:  "largest IPv6 for Uint64",
    			cidr:  "2001:db8::/64",
    			addrs: math.MaxUint64,
    		},
    		{
    			name:  "very large IPv6 cidr",
    			cidr:  "2001:db8::/1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  6. 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)
  7. src/strconv/atof_test.go

    	{"NAN", "NaN", nil},
    
    	// Infs
    	{"inf", "+Inf", nil},
    	{"-Inf", "-Inf", nil},
    	{"+INF", "+Inf", nil},
    	{"-Infinity", "-Inf", nil},
    	{"+INFINITY", "+Inf", nil},
    	{"Infinity", "+Inf", nil},
    
    	// largest float64
    	{"1.7976931348623157e308", "1.7976931348623157e+308", nil},
    	{"-1.7976931348623157e308", "-1.7976931348623157e+308", nil},
    	{"0x1.fffffffffffffp1023", "1.7976931348623157e+308", nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/IntMath.java

          throw new ArithmeticException("ceilingPowerOfTwo(" + x + ") not representable as an int");
        }
        return 1 << -Integer.numberOfLeadingZeros(x - 1);
      }
    
      /**
       * Returns the largest power of two less than or equal to {@code x}. This is equivalent to {@code
       * checkedPow(2, 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
    - 23.5K bytes
    - Viewed (0)
  9. src/image/geom.go

    		r.Max.X -= n
    	}
    	if r.Dy() < 2*n {
    		r.Min.Y = (r.Min.Y + r.Max.Y) / 2
    		r.Max.Y = r.Min.Y
    	} else {
    		r.Min.Y += n
    		r.Max.Y -= n
    	}
    	return r
    }
    
    // Intersect returns the largest rectangle contained by both r and s. If the
    // two rectangles do not overlap then the zero rectangle will be returned.
    func (r Rectangle) Intersect(s Rectangle) Rectangle {
    	if r.Min.X < s.Min.X {
    		r.Min.X = s.Min.X
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/IntMath.java

          throw new ArithmeticException("ceilingPowerOfTwo(" + x + ") not representable as an int");
        }
        return 1 << -Integer.numberOfLeadingZeros(x - 1);
      }
    
      /**
       * Returns the largest power of two less than or equal to {@code x}. This is equivalent to {@code
       * checkedPow(2, 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
    - 23.5K bytes
    - Viewed (0)
Back to top