Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,457 for avoided (0.32 sec)

  1. 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)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DeprecatedCoreExpressionValidator.java

        private static final HashMap<String, String> DEPRECATED_CORE_PARAMETERS;
    
        private static final String ARTIFACT_REPOSITORY_REASON =
                "ArtifactRepository type is deprecated and its use in Mojos should be avoided.";
    
        static {
            HashMap<String, String> deprecatedCoreParameters = new HashMap<>();
            deprecatedCoreParameters.put("${localRepository}", ARTIFACT_REPOSITORY_REASON);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 26 16:22:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ResettableConfiguration.java

         * will discard the resolution <i>results</i> but will prevent any state required to resolve the
         * configuration again from being discarded.
         * <p>
         * <strong>This method should be avoided if at all possible, and should only be used as a last resort.</strong>
         * This method was originally added in order to release the resources of the {@code classpath}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:33:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. integration-tests/gradle/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 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildOperationsAssertions.kt

            if (classpathCompileOperations.isEmpty() && bodyCompileOperations.isEmpty()) {
                return this
            }
            throw AssertionError(
                "Expected script compilation to be avoided, but the buildscript was recompiled. " +
                    "classpath compile operations: $classpathCompileOperations, body compile operations: $bodyCompileOperations"
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.h

    //              v   v
    //               ADD
    //
    // can have its inputs independently dead or alive based on the runtime values
    // of PRED0 and PRED1.
    //
    // It is tempting to call this a liveness analysis but I avoided that because
    // "liveness" already has other connotations.
    class DeadnessAnalysis {
     public:
      // An opaque representation of a predicate.  DeadnessPredicate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskStatistics.java

                int createdTaskCount = lazyTaskCreatedCount + eagerTaskCount;
                LOGGER.lifecycle("Task counts: created {}, avoided {}, %-lazy {}", createdTaskCount, lazyTaskCount-lazyTaskCreatedCount, 100-100*createdTaskCount/totalTaskCount);
    
                printTypeCounts("\nTask types that were created with the old API", typeCounts);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. 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: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/names/controller_names.go

    limitations under the License.
    */
    
    package names
    
    // Canonical controller names
    //
    // NAMING CONVENTIONS
    // 1. naming should be consistent across the controllers
    // 2. use of shortcuts should be avoided, unless they are well-known non-Kubernetes shortcuts
    // 3. Kubernetes' resources should be written together without a hyphen ("-")
    //
    // CHANGE POLICY
    // The controller names should be treated as IDs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/fuzz/util.go

    func BaseCases(f test.Fuzzer) {
    	for _, c := range [][]byte{
    		{},
    		[]byte("."),
    		bytes.Repeat([]byte("."), 1000),
    	} {
    		f.Add(c)
    	}
    }
    
    // T Returns the underlying test.Failer. Should be avoided where possible; in oss-fuzz many functions do not work.
    func (h Helper) T() test.Failer {
    	return h.t
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 30 15:31:14 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top