Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 522 for registry2 (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_mlir.cc

             "or compilation failure from the MLIR bridge (full fallback mode).";
    
      mlir::DialectRegistry registry;
      mlir::RegisterAllTensorFlowDialects(registry);
      mlir::mhlo::registerAllMhloDialects(registry);
      mlir::stablehlo::registerAllDialects(registry);
      mlir::MLIRContext context(registry);
      mlir::OwningOpRef<mlir::ModuleOp> mlir_module;
      TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

                class CustomPlugin implements Plugin<Project> {
                    ToolingModelBuilderRegistry registry
    
                    @Inject
                    CustomPlugin(ToolingModelBuilderRegistry registry) {
                        this.registry = registry
                    }
    
                    void apply(Project project) {
                        registry.register(new CustomBuilder())
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/internal/daemon/serialization/DaemonSidePayloadClassLoaderFactoryTest.groovy

        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        def factory = Mock(PayloadClassLoaderFactory)
        def classpathTransformer = Mock(CachedClasspathTransformer)
    
        def registry = new DaemonSidePayloadClassLoaderFactory(factory, classpathTransformer)
    
        def "creates ClassLoader for classpath"() {
            def url1 = new URL("http://localhost/file1.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/WorkerJvmMemoryInfoSerializer.java

    public class WorkerJvmMemoryInfoSerializer {
        public static SerializerRegistry create() {
            DefaultSerializerRegistry registry = new DefaultSerializerRegistry(false);
    
            registry.register(JvmMemoryStatus.class, new JvmMemoryStatusSerializer());
            return registry;
        }
    
        private static class JvmMemoryStatusSerializer implements Serializer<JvmMemoryStatus> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/tf_stablehlo_pass.cc

      }
    
     private:
      void runOnOperation() override;
    
      void getDependentDialects(DialectRegistry &registry) const override {
        mlir::mhlo::registerAllMhloDialects(registry);
        mlir::stablehlo::registerAllDialects(registry);
        registry.insert<mlir::func::FuncDialect, mlir::arith::ArithDialect>();
        registry.insert<shape::ShapeDialect>();
      }
    
     public:
      StringRef getArgument() const final { return "tf-mhlo"; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. prow/integ-suite-kind.sh

    # See https://kind.sigs.k8s.io/docs/user/quick-start/#loading-an-image-into-your-cluster
    export PULL_POLICY=IfNotPresent
    
    # We run a local-registry in a docker container that KinD nodes pull from
    # These values are must match what is in config/trustworthy-jwt.yaml
    export KIND_REGISTRY_NAME="kind-registry"
    export KIND_REGISTRY_PORT="5000"
    export KIND_REGISTRY="localhost:${KIND_REGISTRY_PORT}"
    
    export HUB=${HUB:-"istio-testing"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/AbstractArtifactRepository.java

            DefaultServiceRegistry registry = new DefaultServiceRegistry();
            registry.addProvider(new ServiceRegistrationProvider() {
                @Provides
                RepositoryResourceAccessor createResourceAccessor() {
                    return createRepositoryAccessor(transport, rootUri, externalResourcesFileStore);
                }
            });
            registry.add(ObjectFactory.class, objectFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. hack/testdata/multi-resource-rclist-modify.json

                         "app":"mock"
                      }
                   },
                   "spec":{
                      "containers":[{
                        "name": "mock-container",
                        "image": "registry.k8s.io/pause:3.10",
                        "ports":[{
                            "containerPort":9949,
                            "protocol":"TCP"
                         }]
                      }]
                   }
                }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistryBuilder.java

            DefaultServiceRegistry registry = scope != null
                ? new ScopedServiceRegistry(scope, strict, displayName, parents)
                : new DefaultServiceRegistry(displayName, parents);
    
            for (ServiceRegistrationProvider provider : providers) {
                registry.addProvider(provider);
            }
            return registry;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks_test.cc

          "tensorflow/compiler/mlir/tf2xla/internal/testdata/");
    }
    
    class LoggingHooksTest : public ::testing::Test {
     public:
      LoggingHooksTest() {
        mlir::RegisterCommonToolingDialects(registry_);
        context_.appendDialectRegistry(registry_);
        context_.loadAllAvailableDialects();
        env_ = Env::Default();
    
        test_group_name_ = "TestGroup";
        test_dir_ = testing::TmpDir();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top