Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 279 for practice (0.57 sec)

  1. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

     * hint, so this technique may fail at the whim of the JDK implementation, for example if a user
     * specified the JVM flag {@code -XX:+DisableExplicitGC}. But in practice, it works very well for
     * ordinary tests.
     *
     * <p>Failure of the expected event to occur within an implementation-defined "reasonable" time
     * period or an interrupt while waiting for the expected event will result in a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Platform.java

        WeakReference<? extends Enum<?>> ref = Enums.getEnumConstants(enumClass).get(value);
        /*
         * We use `fromNullable` instead of `of` because `WeakReference.get()` has a nullable return
         * type.
         *
         * In practice, we are very unlikely to see `null`: The `WeakReference` to the enum constant
         * won't be cleared as long as the enum constant is referenced somewhere, and the enum constant
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Platform.java

        WeakReference<? extends Enum<?>> ref = Enums.getEnumConstants(enumClass).get(value);
        /*
         * We use `fromNullable` instead of `of` because `WeakReference.get()` has a nullable return
         * type.
         *
         * In practice, we are very unlikely to see `null`: The `WeakReference` to the enum constant
         * won't be cleared as long as the enum constant is referenced somewhere, and the enum constant
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

             * <p>
             * This interface does not constrain the compatibility of values.
             * In practice however, such constraints do exist but are managed informally.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/math/big/floatmarsh.go

    		// actual mantissa slice could be shorter (trailing 0's) or longer (unused bits):
    		// - if shorter, only encode the words present
    		// - if longer, cut off unused words when encoding in bytes
    		//   (in practice, this should never happen since rounding
    		//   takes care of it, but be safe and do it always)
    		if len(x.mant) < n {
    			n = len(x.mant)
    		}
    		// len(x.mant) >= n
    		sz += 4 + n*_S // exp + mant
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/GcFinalization.java

     * hint, so this technique may fail at the whim of the JDK implementation, for example if a user
     * specified the JVM flag {@code -XX:+DisableExplicitGC}. But in practice, it works very well for
     * ordinary tests.
     *
     * <p>Failure of the expected event to occur within an implementation-defined "reasonable" time
     * period or an interrupt while waiting for the expected event will result in a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/ProjectPropertySettingBuildLoader.java

            }
        }
    
        // {@code mergedProperties} should really be <String, Object>, however properties loader signature expects a <String, String>
        // even if in practice it was never enforced (one can pass other property types, such as boolean) and
        // fixing the method signature would be a binary breaking change in a public API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. src/html/template/js_test.go

    		jsCtx jsCtx
    		s     string
    	}{
    		// Statement terminators precede regexps.
    		{jsCtxRegexp, ";"},
    		// This is not airtight.
    		//     ({ valueOf: function () { return 1 } } / 2)
    		// is valid JavaScript but in practice, devs do not do this.
    		// A block followed by a statement starting with a RegExp is
    		// much more common:
    		//     while (x) {...} /foo/.test(x) || panic()
    		{jsCtxRegexp, "}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/plugin/plugin.go

    //   - Similar crashing problems are likely to arise unless all common
    //     dependencies of the application and its plugins are built from
    //     exactly the same source code.
    //
    //   - Together, these restrictions mean that, in practice, the
    //     application and its plugins must all be built together by a
    //     single person or component of a system. In that case, it may
    //     be simpler for that person or component to generate Go source
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/versions/gover.go

    // A gover is a parsed Go gover: major[.Minor[.Patch]][kind[pre]]
    // The numbers are the original decimal strings to avoid integer overflows
    // and since there is very little actual math. (Probably overflow doesn't matter in practice,
    // but at the time this code was written, there was an existing test that used
    // go1.99999999999, which does not fit in an int on 32-bit platforms.
    // The "big decimal" representation avoids the problem entirely.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top