Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 318 for registry_ (0.35 sec)

  1. docs/pt/docs/tutorial/handling-errors.md

    Portanto, você pode continuar lançando o `HTTPException` do **FastAPI** normalmente no seu código.
    
    Porém, quando você registrar um manipulador de exceção, você deve registrá-lo através do `HTTPException` do Starlette.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    		deploymentSize int
    		wantErr        bool
    	}{
    		{
    			name:           "default",
    			image:          "registry.k8s.io/coredns/coredns:v1.11.1",
    			deploymentSize: 1,
    			wantVersion:    "v1.11.1",
    		},
    		{
    			name:           "no dns addon deployment",
    			image:          "registry.k8s.io/coredns/coredns:v1.11.1",
    			deploymentSize: 0,
    			wantVersion:    "",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

            }
    
            @Override
            public org.apache.maven.lifecycle.Lifecycle get() {
                try {
                    LifecycleRegistry registry = lookup.lookup(LifecycleRegistry.class);
                    return new WrappedLifecycle(registry.require(name));
                } catch (ComponentLookupException e) {
                    throw new LookupException(e);
                }
            }
        }
    
        @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

          ImmutableSet.of("www", "foo.ihopethiswillneverbeapublicsuffix", "x.y.z");
    
      /**
       * Having a public suffix is equivalent to having a registry suffix, because all registry suffixes
       * are public suffixes, and all public suffixes have registry suffixes.
       */
      private static final ImmutableSet<String> NO_RS = NO_PS;
    
      private static final ImmutableSet<String> NON_PS =
          ImmutableSet.of(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

      // Explicitly disable dumping Op details on failures.
      module.getContext()->printOpOnDiagnostic(false);
    
      mlir::DialectRegistry registry;
      mlir::func::registerAllExtensions(registry);
      module.getContext()->appendDialectRegistry(registry);
    
      mlir::StatusScopedDiagnosticHandler status_handler(module.getContext(),
                                                         /*propagate=*/true);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/tfl_stablehlo_pass.cc

        return "This pass will legalize TFLite custom Ops to StableHLO ops.";
      }
    
     private:
      void runOnOperation() override;
    
      void getDependentDialects(DialectRegistry& registry) const override {
        mlir::stablehlo::registerAllDialects(registry);
      }
      inline TFL::ConstBytesAttr CustomOption(OpBuilder* builder,
                                              const std::string& content) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 06:08:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. build/root/Makefile

    #   KUBE_FASTBUILD: Whether to cross-compile for other architectures. Set to 'false' to do so.
    #   KUBE_DOCKER_REGISTRY: Registry of released images, default to registry.k8s.io
    #   KUBE_BASE_IMAGE_REGISTRY: Registry of base images for controlplane binaries, default to registry.k8s.io/build-image
    #
    # Example:
    #   make release-skip-tests
    #   make quick-release
    endef
    .PHONY: release-skip-tests quick-release
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      std::iota(input_mapping->begin(), input_mapping->end(), 0);
    }
    
    static void RegisterDialects(mlir::DialectRegistry& registry) {
      mlir::RegisterAllTensorFlowDialects(registry);
      mlir::mhlo::registerAllMhloDialects(registry);
      mlir::stablehlo::registerAllDialects(registry);
    }
    
    // Checks if functions can be inlined after TF -> HLO legalization. Currently
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

                    allprojects {
                        task thing {
                            def registry = project.services.get(${BuildStateRegistry.name})
                            doLast {
                                def projects = []
                                def builds = []
                                registry.visitBuilds { b ->
                                    builds.add(b.identityPath.path)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

        }
    
        @Provides
        ClassLoaderHierarchyHasher createClassLoaderHierarchyHasher(ClassLoaderRegistry registry, HashingClassLoaderFactory classLoaderFactory) {
            return new RegistryAwareClassLoaderHierarchyHasher(registry, classLoaderFactory);
        }
    
        @Provides
        HashingClassLoaderFactory createClassLoaderFactory(ClasspathHasher classpathHasher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top