Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 149 for resumption (0.31 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

                require(spec != null)
                // TODO - a scope can currently potentially have multiple export and local ClassLoaders but we're assuming one here
                //  Rather than fix the assumption here, it would be better to rework the scope implementation so that it produces no more than one export and one local ClassLoader
                val local = scopeId is ClassLoaderScopeIdentifier && scopeId.localId() == classLoaderId
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/schema/validation.go

    	return &ValidationAnalyzer{s: s}
    }
    
    // AllValidationAnalyzers returns a slice with a validation analyzer for each Istio schema
    // This automation comes with an assumption: that the collection names used by the schema match the metadata used by Galley components
    func AllValidationAnalyzers() []analysis.Analyzer {
    	result := make([]analysis.Analyzer, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 08 07:38:28 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeSwiftWithXCTestProjectIntegrationTest.groovy

            given:
            // TODO: Generating the Xcode files for incompatible source compatibility shouldn't fail the build
            //   Thus, we should be able to remove the assumption below.
            assumeSwiftCompilerSupportsLanguageVersion(componentSourceCompatibility)
            fixture.writeToProject(testDirectory)
            makeSingleProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/StatementReplacingVisitorSupport.java

    /**
     * Adds the ability to replace statements.
     */
    // Implementation note: It is only necessary to override visit methods
    // for AST nodes that reference statements. For ClosureExpression we rely on
    // the assumption that it always references a BlockStatement and hence our
    // visitBlockStatement() method gets called.
    public abstract class StatementReplacingVisitorSupport extends ClassCodeVisitorSupport {
      private Statement replacement;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top