Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,726 for avoided (0.11 sec)

  1. android/guava/src/com/google/common/hash/FarmHashFingerprint64.java

     * to unsigned arithmetic in all cases except:
     *
     * <ul>
     *   <li>comparisons (signed values can be negative)
     *   <li>division (avoided here)
     *   <li>shifting (right shift must be unsigned)
     * </ul>
     *
     * @author Kyle Maddison
     * @author Geoff Pike
     */
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/FarmHashFingerprint64.java

     * to unsigned arithmetic in all cases except:
     *
     * <ul>
     *   <li>comparisons (signed values can be negative)
     *   <li>division (avoided here)
     *   <li>shifting (right shift must be unsigned)
     * </ul>
     *
     * @author Kyle Maddison
     * @author Geoff Pike
     */
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    If no resolution is given for all conflicts on a given capability, the build will fail given the module chosen for resolution was not part of the graph at all.
    
    In addition `select(null)` will result in an error and so should be avoided.
    --
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    Using a _deprecated_ feature will result in a runtime warning in Gradle's output.
    
    The use of _deprecated_ features should be avoided.
    The release notes for each release indicate any features being _deprecated_ by the release.
    
    [[backwards_compatibility]]
    == Backward compatibility policy
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        /**
         * Get this feature's backing source set.
         * <p>
         * {@link SourceSet#getOutput()} and the classpath-returning methods on the returned
         * source set should ideally be avoided in favor of the similarly-named methods on
         * this feature. The concept of source sets having a single set of outputs is only
         * relevant for single-target features.
         *
         * @return This feature's source set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         * Otherwise, creates a new dependency scope configuration with the given name.
         *
         * <p>If {@code verifyPrexisting} is false, the normal deprecation warning will not be emitted. Setting this to false
         * should be avoided except in edge cases where it may emit deprecation warnings affecting large third-party plugins.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. src/html/template/error.go

    	//   the run-time value of {{.C}} which is not statically known.
    	//
    	//   The problem is usually something like missing quotes or angle
    	//   brackets, or can be avoided by refactoring to put the two contexts
    	//   into different branches of an if, range or with. If the problem
    	//   is in a {{range}} over a collection that should never be empty,
    	//   adding a dummy {{else}} can help.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. maven-compat/src/main/mdo/profiles.mdo

              <association>
                <type>RepositoryPolicy</type>
              </association>
            </field>
          </fields>
          <!-- prevent modello generation of an incorrect equals method. Could be avoided by using <identity/> tags to mark ID as the only identity field -->
          <codeSegments>
            <codeSegment>
              <version>1.0.0</version>
              <code><![CDATA[
                public boolean equals( Object obj )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

     * unprocessed contents of the script, the target object type and parent `ClassLoader`.
     *
     * Because each program is specialized to a given script structure, a lot of work is
     * avoided. For example, a top-level script containing a `plugins` block but no body
     * can be compiled down to a specialized program that instantiates the compiled
     * `plugins` block class directly - without reflection - and does nothing else. The
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    [.screenshot]
    image::build-cache/build-cache-performance.png[build cache performance]
    
    This page details which tasks were able to be avoided by cache hits, and which missed.
    It also indicates the hits and misses for the local and remote caches individually.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top