Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 533 for precision (0.24 sec)

  1. tensorflow/compiler/jit/compilability_check_util.cc

      }
    
      return is_compilable;
    }
    
    bool RecursiveCompilabilityChecker::OpIsInaccurate(const Node& node) const {
      // b/127344411: SelfAdjointEigV2 and Svd precision issues.
      return node.type_string() == "SelfAdjointEigV2" ||
             node.type_string() == "Svd";
    }
    
    bool RecursiveCompilabilityChecker::OpIsSlow(const Node& node) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/IntMath.java

             */
            return sqrtFloor + lessThanBranchFree(halfSquare, x);
          default:
            throw new AssertionError();
        }
      }
    
      private static int sqrtFloor(int x) {
        // There is no loss of precision in converting an int to a double, according to
        // http://java.sun.com/docs/books/jls/third_edition/html/conversions.html#5.1.2
        return (int) Math.sqrt(x);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Cookie.kt

         * negative. If the value is positive but out of range, this returns [Long.MAX_VALUE].
         *
         * @throws NumberFormatException if [s] is not an integer of any precision.
         */
        private fun parseMaxAge(s: String): Long {
          try {
            val parsed = s.toLong()
            return if (parsed <= 0L) Long.MIN_VALUE else parsed
          } catch (e: NumberFormatException) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/strconv/atof_test.go

    }{
    	// Issue 2917.
    	// This test will break the optimized conversion if the
    	// FPU is using 80-bit registers instead of 64-bit registers,
    	// usually because the operating system initialized the
    	// thread with 80-bit precision and the Go runtime didn't
    	// fix the FP control word.
    	{8865794286000691 << 39, "4.87402195346389e+27"},
    	{8865794286000692 << 39, "4.8740219534638903e+27"},
    }
    
    func TestRoundTrip(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  5. plugin/pkg/admission/limitranger/admission.go

    		}
    		val := "LimitRanger plugin set: " + strings.Join(annotations, "; ")
    		pod.ObjectMeta.Annotations[limitRangerAnnotation] = val
    	}
    }
    
    // requestLimitEnforcedValues returns the specified values at a common precision to support comparability
    func requestLimitEnforcedValues(requestQuantity, limitQuantity, enforcedQuantity resource.Quantity) (request, limit, enforced int64) {
    	request = requestQuantity.Value()
    	limit = limitQuantity.Value()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Floats.java

        float[] toFloatArray() {
          return Arrays.copyOfRange(array, start, end);
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
       * Parses the specified string as a single-precision floating point value. The ASCII character
       * {@code '-'} (<code>'&#92;u002D'</code>) is recognized as the minus sign.
       *
       * <p>Unlike {@link Float#parseFloat(String)}, this method returns {@code null} instead of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Floats.java

        float[] toFloatArray() {
          return Arrays.copyOfRange(array, start, end);
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
       * Parses the specified string as a single-precision floating point value. The ASCII character
       * {@code '-'} (<code>'&#92;u002D'</code>) is recognized as the minus sign.
       *
       * <p>Unlike {@link Float#parseFloat(String)}, this method returns {@code null} instead of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/fmt.go

    		// %+v is DumpList output
    		dumpNodes(s, l, 1)
    		return
    	}
    
    	if verb != 'v' {
    		fmt.Fprintf(s, "%%!%c(Nodes)", verb)
    		return
    	}
    
    	sep := "; "
    	if _, ok := s.Precision(); ok { // %.v is expr list
    		sep = ", "
    	}
    
    	for i, n := range l {
    		fmt.Fprint(s, n)
    		if i+1 < len(l) {
    			fmt.Fprint(s, sep)
    		}
    	}
    }
    
    // Dump
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Doubles.java

                "#",
                "+"
                );
        return
        java.util.regex.Pattern
            .compile(fpPattern);
      }
    
      /**
       * Parses the specified string as a double-precision floating point value. The ASCII character
       * {@code '-'} (<code>'&#92;u002D'</code>) is recognized as the minus sign.
       *
       * <p>Unlike {@link Double#parseDouble(String)}, this method returns {@code null} instead of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/Doubles.java

                "#",
                "+"
                );
        return
        java.util.regex.Pattern
            .compile(fpPattern);
      }
    
      /**
       * Parses the specified string as a double-precision floating point value. The ASCII character
       * {@code '-'} (<code>'&#92;u002D'</code>) is recognized as the minus sign.
       *
       * <p>Unlike {@link Double#parseDouble(String)}, this method returns {@code null} instead of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.3K bytes
    - Viewed (0)
Back to top