Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 503 for registered_ (0.23 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.cc

      addTypes<TFTensorType, TFAllocatorType>();
    
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.cpp.inc"
          >();
    }
    
    /// Parse a type registered to this dialect.
    Type FallbackDialect::parseType(DialectAsmParser &parser) const {
      StringRef keyword;
      if (parser.parseKeyword(&keyword)) return Type();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.h

      // Adds a `QuantizationResult` to the report.
      void AddQuantizationResult(
          ::stablehlo::quantization::QuantizationResult&& result);
    
      // Returns `QuantizationResults` that are registered in this report.
      const ::stablehlo::quantization::QuantizationResults& GetQuantizationResults()
          const {
        return quantization_results_;
      }
    
      // Returns a human-readable string representation of this report.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/ir/tfr_ops.h

      Operation *materializeConstant(OpBuilder &builder, Attribute value, Type type,
                                     Location loc) override;
    
      // Parse a type registered to this dialect.
      Type parseType(DialectAsmParser &parser) const override;
    
      // Prints a type registered to this dialect.
      void printType(Type ty, DialectAsmPrinter &os) const override;
    };
    
    }  // namespace TFR
    }  // namespace mlir
    
    #define GET_OP_CLASSES
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 01 14:00:36 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticProjectStructureProvider.kt

     * of the pre-registered modules are by definition not part of the *static* module structure.
     */
    public abstract class KtStaticProjectStructureProvider : ProjectStructureProvider() {
        /**
         * All [KtModule]s registered with the project structure provider, excluding [KtNotUnderContentRootModule]s and the built-ins module.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jul 31 15:58:00 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/publish/src/integTest/groovy/org/gradle/api/tasks/UploadTaskIntegrationTest.groovy

    /**
     This test exists to ensure that the {@code @Deprecated} {@link Upload} task can still be registered
     and its properties accessed for backwards compatibility; but that it throws an exception upon usage.
     */
    class UploadTaskIntegrationTest extends AbstractIntegrationSpec {
        def "deprecated Upload task class can be registered and properties accessed, but fails at execution time"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/invocation/IsolatedProjectEvaluationListenerProvider.java

        /**
         * Returns an isolated listener for the registered actions, if any. The listener makes it impossible for
         * the actions to carry any shared mutable state across projects and can be safely executed in parallel.
         */
        @Nullable
        ProjectEvaluationListener isolateFor(Gradle owner);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

            registration(registry)
    
            then:
            def exception = thrown(IllegalArgumentException)
            exception.message.contains("The service '${BuildTreeScopedService.name}' declares service scope 'BuildTree' but is registered in the 'Build' scope. Either update the '@ServiceScope()' annotation on '${BuildTreeScopedService.simpleName}' to include the 'Build' scope or move the service registration to one of the declared scopes.")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go

    		if !ok {
    			if err := og.notifyPlugin(client, false, fmt.Sprintf("RegisterPlugin error -- no handler registered for plugin type: %s at socket %s", infoResp.Type, socketPath)); err != nil {
    				return fmt.Errorf("RegisterPlugin error -- failed to send error at socket %s, err: %v", socketPath, err)
    			}
    			return fmt.Errorf("RegisterPlugin error -- no handler registered for plugin type: %s at socket %s", infoResp.Type, socketPath)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/query/DefaultArtifactResolutionQueryTest.groovy

            testComponentTypeRegistry  | UnknownComponent      | TestArtifact         | "Not a registered component type: ${UnknownComponent.name}."
            testComponentTypeRegistry  | TestComponent         | UnknownArtifact      | "Artifact type $UnknownArtifact.name is not registered for component type ${TestComponent.name}."
        }
    
        def "forModule is cumulative"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 19:46:40 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

         * The component identifier of the input artifact.
         */
        ComponentIdentifier getComponentId();
    
        /**
         * The from attributes of the registered transform.
         */
        Map<String, String> getFromAttributes();
    
        /**
         * The to attributes of the registered transform.
         */
        Map<String, String> getToAttributes();
    
        /**
         * The file name of the input artifact that is about to be transformed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top