Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 230 for BarTest (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/types2/sizes.go

    			//
    			// This logic is equivalent to the logic in
    			// cmd/compile/internal/types/size.go:calcStructOffset
    			return 8
    		}
    
    		// spec: "For a variable x of struct type: unsafe.Alignof(x)
    		// is the largest of the values unsafe.Alignof(x.f) for each
    		// field f of x, but at least 1."
    		max := int64(1)
    		for _, f := range t.fields {
    			if a := s.Alignof(f.typ); a > max {
    				max = a
    			}
    		}
    		return max
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/go/ast/commentmap.go

    //     at least one empty line after g and before the next node
    //   - g starts before n and is not associated to the node before n
    //     via the previous rules
    //
    // NewCommentMap tries to associate a comment group to the "largest"
    // node possible: For instance, if the comment is a line comment
    // trailing an assignment, the comment is associated with the entire
    // assignment rather than just the last operand in the assignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. docs/distributed/README.md

    - **MinIO creates erasure-coding sets of _2_ to _16_ drives per set.  The number of drives you provide in total must be a multiple of one of those numbers.**
    - **MinIO chooses the largest EC set size which divides into the total number of drives or total number of nodes given - making sure to keep the uniform distribution i.e each node participates equal number of drives per set**.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/inline/inlheur/scoring.go

    		ParamMayFeedIndirectCall:        passInlinableFuncToNestedIndCallAdj,
    		ParamFeedsIndirectCall:          passInlinableFuncToIndCallAdj,
    	}
    }
    
    // LargestNegativeScoreAdjustment tries to estimate the largest possible
    // negative score adjustment that could be applied to a call of the
    // function with the specified props. Example:
    //
    //	func foo() {                  func bar(x int, p *int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/TopKSelector.java

       * range [0, k) and ignore the remaining elements.
       */
      private final @Nullable T[] buffer;
      private int bufferSize;
    
      /**
       * The largest of the lowest k elements we've seen so far relative to this comparator. If
       * bufferSize ≥ k, then we can ignore any elements greater than this value.
       */
      @CheckForNull private T threshold;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top