Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 329 for precision (0.26 sec)

  1. maven-core/src/main/java/org/apache/maven/ReactorReader.java

                return true;
            }
    
            try (Stream<Path> outputFiles = Files.walk(outputDirectory)) {
                // Not using File#lastModified() to avoid a Linux JDK8 milliseconds precision bug: JDK-8177809.
                long artifactLastModified =
                        Files.getLastModifiedTime(packagedArtifactFile.toPath()).toMillis();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. src/runtime/asm_386.s

    TEXT runtime·breakpoint(SB),NOSPLIT,$0-0
    	INT $3
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT,$0-0
    	// Linux and MinGW start the FPU in extended double precision.
    	// Other operating systems use double precision.
    	// Change to double precision to match them,
    	// and to match other hardware that only has double.
    	FLDCW	runtime·controlWord64(SB)
    	RET
    
    TEXT runtime·mstart(SB),NOSPLIT|TOPFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/fmt/scan.go

    		*v = uint32(s.scanUint(verb, 32))
    	case *uint64:
    		*v = s.scanUint(verb, 64)
    	case *uintptr:
    		*v = uintptr(s.scanUint(verb, uintptrBits))
    	// Floats are tricky because you want to scan in the precision of the result, not
    	// scan in high precision and convert, in order to preserve the correct error condition.
    	case *float32:
    		if s.okVerb(verb, floatVerbs, "float32") {
    			s.SkipSpace()
    			s.notEOF()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. pkg/kubelet/status/status_manager.go

    		"pod", klog.KObj(pod),
    		"statusDiff", cmp.Diff(podStatus, &status))
    
    	return true
    }
    
    // normalizeStatus normalizes nanosecond precision timestamps in podStatus
    // down to second precision (*RFC339NANO* -> *RFC3339*). This must be done
    // before comparing podStatus to the status returned by apiserver because
    // apiserver does not support RFC339NANO.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  5. src/math/big/natdiv.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    
    Multi-precision division. Here be dragons.
    
    Given u and v, where u is n+m digits, and v is n digits (with no leading zeros),
    the goal is to return quo, rem such that u = quo*v + rem, where 0 ≤ rem < v.
    That is, quo = ⌊u/v⌋ where ⌊x⌋ denotes the floor (truncation to integer) of x,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top