Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for flood (0.07 sec)

  1. src/cmd/link/internal/ld/deadcode.go

    	d.mark(relocs.At(m.r+2).Sym(), m.src)
    }
    
    // deadcode marks all reachable symbols.
    //
    // The basis of the dead code elimination is a flood fill of symbols,
    // following their relocations, beginning at *flagEntrySymbol.
    //
    // This flood fill is wrapped in logic for pruning unused methods.
    // All methods are mentioned by relocations on their receiver's *rtype.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/productpage.py

        getProductReviews(product_id, headers)
    
    # flood reviews with unnecessary requests to demonstrate Istio rate limiting, asynchoronously
    
    
    async def floodReviewsAsynchronously(product_id, headers):
        # the response is disregarded
        await asyncio.gather(*(getProductReviewsIgnoreResponse(product_id, headers) for _ in range(flood_factor)))
    
    # flood reviews with unnecessary requests to demonstrate Istio rate limiting
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. src/runtime/HACKING.md

    following function or any function it calls recursively, up to a
    `go:yeswritebarrierrec`, contains a write barrier.
    
    Logically, the compiler floods the call graph starting from each
    `go:nowritebarrierrec` function and produces an error if it encounters
    a function containing a write barrier. This flood stops at
    `go:yeswritebarrierrec` functions.
    
    `go:nowritebarrierrec` is used in the implementation of the write
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSet.java

                // There are only maxRunBeforeFallback - 1 elements between here and there,
                // so even if they were all nonnull, we wouldn't detect a hash flood.  Therefore,
                // we can skip them all.
                knownRunStart += maxRunBeforeFallback;
              } else {
                knownRunStart++; // the only case in which maxRunEnd doesn't increase by mRBF
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. src/math/floor.go

    // license that can be found in the LICENSE file.
    
    package math
    
    // Floor returns the greatest integer value less than or equal to x.
    //
    // Special cases are:
    //
    //	Floor(±0) = ±0
    //	Floor(±Inf) = ±Inf
    //	Floor(NaN) = NaN
    func Floor(x float64) float64 {
    	if haveArchFloor {
    		return archFloor(x)
    	}
    	return floor(x)
    }
    
    func floor(x float64) float64 {
    	if x == 0 || IsNaN(x) || IsInf(x, 0) {
    		return x
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/obj6.go

    func errorCheck(ctxt *obj.Link, s *obj.LSym) {
    	// When dynamic linking, R15 is used to access globals. Reject code that
    	// uses R15 after a global variable access.
    	if !ctxt.Flag_dynlink {
    		return
    	}
    
    	// Flood fill all the instructions where R15's value is junk.
    	// If there are any uses of R15 in that set, report an error.
    	var work []*obj.Prog
    	var mentionsR15 bool
    	for p := s.Func().Text; p != nil; p = p.Link {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

      // Relies on the correctness of sqrt(BigInteger, FLOOR).
      @GwtIncompatible // TODO
      public void testSqrtExact() {
        for (BigInteger x : POSITIVE_BIGINTEGER_CANDIDATES) {
          BigInteger floor = BigIntegerMath.sqrt(x, FLOOR);
          // We only expect an exception if x was not a perfect square.
          boolean isPerfectSquare = floor.pow(2).equals(x);
          try {
            assertEquals(floor, BigIntegerMath.sqrt(x, UNNECESSARY));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/BigIntegerMath.java

          return LongMath.log10(x.longValue(), mode);
        }
    
        int approxLog10 = (int) (log2(x, FLOOR) * LN_2 / LN_10);
        BigInteger approxPow = BigInteger.TEN.pow(approxLog10);
        int approxCmp = approxPow.compareTo(x);
    
        /*
         * We adjust approxLog10 and approxPow until they're equal to floor(log10(x)) and
         * 10^floor(log10(x)).
         */
    
        if (approxCmp > 0) {
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/IntMathTest.java

      }
    
      /* Relies on the correctness of sqrt(int, FLOOR). */
      @GwtIncompatible // sqrt
      public void testSqrtExactMatchesFloorOrThrows() {
        for (int x : POSITIVE_INTEGER_CANDIDATES) {
          int floor = IntMath.sqrt(x, FLOOR);
          // We only expect an exception if x was not a perfect square.
          boolean isPerfectSquare = (floor * floor == x);
          try {
            assertEquals(floor, IntMath.sqrt(x, UNNECESSARY));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/math/BigDecimalMathTest.java

            .roundUnnecessaryShouldThrow()
            .test();
      }
    
      public void testRoundToDouble_negativeTwoToThe54MinusThree() {
        new RoundToDoubleTester(BigDecimal.valueOf((-1L << 54) - 3))
            .setExpectation(-Math.pow(2, 54), DOWN, CEILING)
            .setExpectation(
                DoubleUtils.nextDown(-Math.pow(2, 54)), FLOOR, UP, HALF_DOWN, HALF_UP, HALF_EVEN)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top