Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 267 for assumption (0.15 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

            }
            return this
        }
    
        /**
         * Expect a deprecation warning to appear when {@link #build()} or {@link #buildAndFail()} is called
         * for an old version of a third-party plugin. The assumption is that the deprecation has already
         * been fixed in a later version of the plugin, and thus no followup is needed.
         *
         * @param warning the text of the warning to match.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/PreferJavaRuntimeVariant.java

     * of the published library.
     * The following disambiguation rule encodes this assumption for the case where a java library is published
     * with variants using Gradle module metadata. This will allow us to migrate to consuming the new module
     * metadata format by default without breaking a bunch of consumers that depend on this assumption,
     * declaring no preference for a particular variant.
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/api/attributes/java/TargetJvmEnvironment.java

     * This attribute can be used by libraries to indicate that a certain variant is better suited for
     * a certain JVM environment. It does however NOT strictly require environments to match, as the
     * general assumption is that Java libraries can also run on environments they are not optimized for.
     *
     * @since 7.0
     */
    public interface TargetJvmEnvironment extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 19:44:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResourceFactory.java

     *
     * task someTask {} // assumption: produces a text file and declares it as output
     * def sourcedFromTask = resources.text.fromFile(someTask)
     *
     * def sourcedFromArchiveEntry =
     *   resources.text.fromArchiveEntry("path/to/archive.zip", "path/to/archive/entry.txt")
     *
     * configurations { someConfig } // assumption: contains a single archive
     * def sourcedFromConfiguration =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 19:10:41 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  5. plugin/pkg/admission/antiaffinity/doc.go

    // topology, essentially DoSing the cluster.  In the future we will
    // address this problem more fully by using quota and priority, but
    // for now this admission controller provides a simple protection, on
    // the assumption that the only legitimate use of hard pod
    // anti-affinity is to exclude other pods from the same node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.h

    namespace mlir::TF {
    
    // Cluster structure captures all the operations that are assigned to same
    // device and can form a legal strict cluster.
    // Ops must follow same ordering in their parent block. We rely on this
    // assumption to perform analysis.
    struct Cluster {
      llvm::SetVector<Operation*> ops;
      std::string target;
    };
    
    // Builds the op clusters in the `block`. Ops are filtered by the function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 22:33:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

    public class ClassGeneratorSuffixRegistry {
        // Use Throwable to record the location where a suffix was registered, to allow diagnostics when a collision is found
        // This may have performance implications, however the assumption is that class generators are global scoped objects that are created once and in very small numbers
        private static final Map<String, Throwable> SUFFIXES = new ConcurrentHashMap<>();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

    //
    // Note that these criteria are more restrictive than necessary:
    //  - they will force a fixed order on operations that read from/write to
    //    *different* variables
    //  - they make the blanket assumption that any functions called cause or depend
    //    on side effects (i.e., access resource variables.)
    //
    // By moving the logic to compile time, we will be able to do a finer-grained
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

    // not, the same-scale op will not be quantized. This decision is based on the
    // current assumption that the performance gain of the same-scale op itself
    // could not beat the overhead of the quantize and dequantize routines need to
    // be added around that op. When the assumption changes, this policy might
    // change as well.
    bool IsConnectedWithQuantizedCompsiteFunction(Operation* same_scale_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ProblemReportAdapterFactory.java

    import javax.annotation.Nullable;
    import java.io.IOException;
    import java.util.Map;
    
    /**
     * Defines the Gson serialization and deserialization for {@link ProblemDefinition} based on the assumption that they have exactly one implementation.
     */
    public final class ProblemReportAdapterFactory implements TypeAdapterFactory {
    
        @Override
        @Nullable
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top