Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,457 for avoided (0.21 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/SerializerRegistry.java

         */
        <T> void register(Class<T> implementationType, Serializer<T> serializer);
    
        /**
         * Use Java serialization for the specified type and all subtypes. Should be avoided, but useful when migrating to using serializers or when dealing with
         * arbitrary user types.
         */
        <T> void useJavaSerialization(Class<T> implementationType);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

        /**
         * Ensures no new usages of resolvable + dependency scope Configurations are added and ensures usages of "maybe" methods are avoided.
         */
        @ArchTest
        public static final ArchRule maybe_create_and_resolvable_dependency_scope_factory_methods_are_avoided = freeze(
            ArchRuleDefinition.noClasses()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteDatabase.kt

      }
    
      /** Records success connecting to [route]. */
      @Synchronized fun connected(route: Route) {
        _failedRoutes.remove(route)
      }
    
      /** Returns true if [route] has failed recently and should be avoided. */
      @Synchronized fun shouldPostpone(route: Route): Boolean = route in _failedRoutes
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/component/UsageContext.java

     */
    
    package org.gradle.api.internal.component;
    
    import org.gradle.api.attributes.Usage;
    import org.gradle.api.component.SoftwareComponentVariant;
    
    /**
     * This is a legacy type and should be avoided if possible. Use {@link SoftwareComponentVariant} instead.
     */
    public interface UsageContext extends SoftwareComponentVariant {
        @Deprecated
        default Usage getUsage(){
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 04 19:31:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-utils.go

    		// branch
    		fi.Data = inData.find(fi.DataDir)
    	}
    	return fi, nil
    }
    
    // hashDeterministicString will return a deterministic hash for the map values.
    // Trivial collisions are avoided, but this is by no means a strong hash.
    func hashDeterministicString(m map[string]string) uint64 {
    	// Seed (random)
    	crc := uint64(0xc2b40bbac11a7295)
    	// Xor each value to make order independent
    	for k, v := range m {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Interner.java

     * are available from the {@link Interners} class.
     *
     * <p>Note that {@code String.intern()} has some well-known performance limitations, and should
     * generally be avoided. Prefer {@link Interners#newWeakInterner} or another {@code Interner}
     * implementation even for {@code String} interning.
     *
     * @author Kevin Bourrillion
     * @since 3.0
     */
    @DoNotMock("Use Interners.new*Interner")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveMetadata.java

    public interface VariantGraphResolveMetadata extends HasAttributes {
        /**
         * Returns the name for this variant, which is unique for the variants of its owning component.
         *
         * In general, this method should be avoided. The internal engine should not need to know the name of a node and
         * should instead identify nodes based on their integer node ID. This method should only be used for
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    Older versions of Gradle only support the `create(...)` API.
    The `create(...)` API eagerly creates and configures tasks when called and should be avoided.
    
    NOTE: Using `register(...)` alone may not be enough to avoid all task configuration completely.
    You may need to change other code that configures tasks by name or by type, see below.
    
    [[sec:how_do_i_defer_configuration]]
    === Defer task configuration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. test/codegen/README

    As a general guideline, test functions should be small, to avoid
    possible interactions between unrelated lines of code that may be
    introduced, for example, by the compiler's optimization passes.
    
    Any given line of Go code could get assigned more instructions than it
    may appear from reading the source. In particular, matching all MOV
    instructions should be avoided; the compiler may add them for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. gradlew

    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    #       The "traditional" practice of packing multiple parameters into a
    #       space-separated string is a well documented source of bugs and security
    #       problems, so this is (mostly) avoided, by progressively accumulating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top