Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 377 for informal (0.23 sec)

  1. .github/ISSUE_TEMPLATE/11-language-change.yml

          description: "What would change in the language spec?"
        validations:
          required: false
    
      - type: textarea
        id: informal-change
        attributes:
          label: "Informal Change"
          description: "Please also describe the change informally, as in a class teaching Go."
        validations:
          required: false
    
      - type: textarea
        id: go-backwards-compatiblity
        attributes:
    Others
    - Registered: Tue Apr 09 11:13:10 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  2. 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 09 11:13:10 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  3. architecture/networking/controllers.md

      The `NewDelayedInformer` abstracts that entirely, offering the same API as normal `kclient.Client`.
    * Simple object filtering. Beyond just static filters on objects, `kclient` supports _dynamic filters_ that can change at runtime.
      When a filter changes and includes/removes new objects, those are automatically handled.
    * Proper syncing and shutdown logic. Checking for when an informer has fully started can be quite tricky; `kclient` automatically handles it.
    
    Plain Text
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Fri Feb 09 17:41:25 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/DoubleUtils.java

      }
    
      static boolean isFinite(double d) {
        return getExponent(d) <= MAX_EXPONENT;
      }
    
      static boolean isNormal(double d) {
        return getExponent(d) >= MIN_EXPONENT;
      }
    
      /*
       * Returns x scaled by a power of 2 such that it is in the range [1, 2). Assumes x is positive,
       * normal, and finite.
       */
      static double scaleNormalize(double x) {
        long significand = doubleToRawLongBits(x) & SIGNIFICAND_MASK;
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Apr 28 15:37:52 GMT 2021
    - 5.1K bytes
    - Viewed (0)
  5. 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 12 12:43:09 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  6. 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 Apr 10 22:53:08 GMT 2024
    - Last Modified: Fri Feb 03 20:21:32 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  7. 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 Apr 10 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  8. 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 Apr 10 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  9. tests/test_dependency_normal_exceptions.py

    Sebastián Ramírez <******@****.***> 1708815997 +0100
    Python
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Sat Feb 24 23:06:37 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  10. 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 Apr 10 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
Back to top