Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for significand (1.53 sec)

  1. src/cmd/vet/README

    so checks must be likely enough to find real problems that they are worth the
    overhead of the added check. A new check that finds only a handful of problems
    across all existing programs, even if the problem is significant, is not worth
    adding to the suite everyone runs daily.
    
    Precision:
    
    Most of vet's checks are heuristic and can generate both false positives (flagging
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyDetails.java

         *
         * As an equivalent getter can be declared multiple times (e.g in a super class, overridden by the target type).
         * The actual method instance used is significant.
         * The method instance is for the “nearest” declaration, where classes take precedence over interfaces.
         * Interface precedence is breadth-first, declaration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/cover/doc.go

    literals.
    
    When computing coverage of a package that uses cgo, the cover tool
    must be applied to the output of cgo preprocessing, not the input,
    because cover deletes comments that are significant to cgo.
    
    For usage information, please see:
    
    	go help testflag
    	go tool cover -help
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/cache/ModelSchemaCache.java

    import javax.annotation.Nullable;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Map;
    
    /**
     * A multi, volatile, classloader safe cache for model schemas.
     * <p>
     * Significant complexity is introduced by facilitating a volatile classloader environment.
     * That is, classes being loaded and unloaded for the life of this cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/BigDecimalMath.java

       *
       * <p>For the case of {@link RoundingMode#HALF_EVEN}, this implementation uses the IEEE 754
       * default rounding mode: if the two nearest representable values are equally near, the one with
       * the least significant bit zero is chosen. (In such cases, both of the nearest representable
       * values are even integers; this method returns the one that is a multiple of a greater power of
       * two.)
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // has the form:
    //    <header> <decomp_byte>* [<tccc> [<lccc>]]
    // The header contains the number of bytes in the decomposition (excluding this
    // length byte). The two most significant bits of this length byte correspond
    // to bit 5 and 4 of qcInfo (see below).  The byte sequence itself starts at v+1.
    // The byte sequence is followed by a trailing and leading CCC if the values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/BigDecimalMath.java

       *
       * <p>For the case of {@link RoundingMode#HALF_EVEN}, this implementation uses the IEEE 754
       * default rounding mode: if the two nearest representable values are equally near, the one with
       * the least significant bit zero is chosen. (In such cases, both of the nearest representable
       * values are even integers; this method returns the one that is a multiple of a greater power of
       * two.)
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelDslIntegrationTest.groovy

                }
    
                apply type: MyPlugin
    
                model {
                  tasks {
                    create("printStrings") {
                      doLast {
                        // Being in doLast is significant here.
                        // This is not going to execute until much later, so we are testing that we can still access the input
                        println "strings: " + $.strings
                      }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/compress/lzw/writer.go

    }
    
    // writeLSB writes the code c for "Least Significant Bits first" data.
    func (w *Writer) writeLSB(c uint32) error {
    	w.bits |= c << w.nBits
    	w.nBits += w.width
    	for w.nBits >= 8 {
    		if err := w.w.WriteByte(uint8(w.bits)); err != nil {
    			return err
    		}
    		w.bits >>= 8
    		w.nBits -= 8
    	}
    	return nil
    }
    
    // writeMSB writes the code c for "Most Significant Bits first" data.
    func (w *Writer) writeMSB(c uint32) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

          value: >
            Did you *actually* encounter the need for this enhancement in a real-world scenario, or does
            it just seem like a sensible behavior for the feature to have?
    
    
            Before we make significant changes to existing features in Guava, we really want to be sure
            that it's for a use case that actually comes up in the real world. We want to hear the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top