Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 158 for informal (0.18 sec)

  1. doc/go_mem.html

    for their own operations.
    </p>
    
    <h2 id="restrictions">Implementation Restrictions for Programs Containing Data Races</h2>
    
    <p>
    The preceding section gave a formal definition of data-race-free program execution.
    This section informally describes the semantics that implementations must provide
    for programs that do contain races.
    </p>
    
    <p>
    Any implementation can, upon detecting a data race,
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/DoubleMath.java

        checkArgument(x > 0.0 && isFinite(x), "x must be positive and finite");
        int exponent = getExponent(x);
        if (!isNormal(x)) {
          return log2(x * IMPLICIT_BIT, mode) - SIGNIFICAND_BITS;
          // Do the calculation on a normal value.
        }
        // x is positive, finite, and normal
        boolean increment;
        switch (mode) {
          case UNNECESSARY:
            checkRoundingUnnecessary(isPowerOfTwo(x));
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  3. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

       character including, without limitation, damages for lost profits, loss of
       goodwill, work stoppage, computer failure or malfunction, or any and all
       other commercial damages or losses, even if such party shall have been
       informed of the possibility of such damages. This limitation of liability
       shall not apply to liability for death or personal injury resulting from
       such party's negligence to the extent applicable law prohibits such
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 03 20:21:32 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/errwrap/LICENSE

       character including, without limitation, damages for lost profits, loss of
       goodwill, work stoppage, computer failure or malfunction, or any and all
       other commercial damages or losses, even if such party shall have been
       informed of the possibility of such damages. This limitation of liability
       shall not apply to liability for death or personal injury resulting from such
       party’s negligence to the extent applicable law prohibits such limitation.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/hcl/LICENSE

       character including, without limitation, damages for lost profits, loss of
       goodwill, work stoppage, computer failure or malfunction, or any and all
       other commercial damages or losses, even if such party shall have been
       informed of the possibility of such damages. This limitation of liability
       shall not apply to liability for death or personal injury resulting from such
       party’s negligence to the extent applicable law prohibits such limitation.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/go-multierror/LICENSE

       character including, without limitation, damages for lost profits, loss of
       goodwill, work stoppage, computer failure or malfunction, or any and all
       other commercial damages or losses, even if such party shall have been
       informed of the possibility of such damages. This limitation of liability
       shall not apply to liability for death or personal injury resulting from such
       party’s negligence to the extent applicable law prohibits such limitation.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/go-version/LICENSE

       character including, without limitation, damages for lost profits, loss of
       goodwill, work stoppage, computer failure or malfunction, or any and all
       other commercial damages or losses, even if such party shall have been
       informed of the possibility of such damages. This limitation of liability
       shall not apply to liability for death or personal injury resulting from such
       party’s negligence to the extent applicable law prohibits such limitation.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/CloserTest.java

      public void testNoExceptionsThrown() throws IOException {
        Closer closer = new Closer(suppressor);
    
        TestCloseable c1 = closer.register(TestCloseable.normal());
        TestCloseable c2 = closer.register(TestCloseable.normal());
        TestCloseable c3 = closer.register(TestCloseable.normal());
    
        assertFalse(c1.isClosed());
        assertFalse(c2.isClosed());
        assertFalse(c3.isClosed());
    
        closer.close();
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Mar 06 15:15:46 GMT 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

            }
    
            infoMap = null;
        }
    
        public synchronized void putToInfoMap(final String key, final String value) {
            if (infoMap == null) {
                infoMap = Collections.synchronizedMap(new LinkedHashMap<>());
            }
            logger.debug("infoMap: {}={} => {}", key, value, infoMap);
            infoMap.put(key, value);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
  10. guava-tests/test/com/google/common/io/CloserTest.java

      public void testNoExceptionsThrown() throws IOException {
        Closer closer = new Closer(suppressor);
    
        TestCloseable c1 = closer.register(TestCloseable.normal());
        TestCloseable c2 = closer.register(TestCloseable.normal());
        TestCloseable c3 = closer.register(TestCloseable.normal());
    
        assertFalse(c1.isClosed());
        assertFalse(c2.isClosed());
        assertFalse(c3.isClosed());
    
        closer.close();
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Mar 06 15:15:46 GMT 2024
    - 13.6K bytes
    - Viewed (0)
Back to top