Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 583 for bundle_ (0.28 sec)

  1. docs_src/custom_docs_ui/tutorial001.py

    @app.get("/redoc", include_in_schema=False)
    async def redoc_html():
        return get_redoc_html(
            openapi_url=app.openapi_url,
            title=app.title + " - ReDoc",
            redoc_js_url="https://unpkg.com/redoc@next/bundles/redoc.standalone.js",
        )
    
    
    @app.get("/users/{username}")
    async def read_user(username: str):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/bundle_v2_test.cc

          testing::TensorFlowSrcRoot(), kTestData, "VarsAndArithmeticObjectGraph");
    
      SavedModelV2Bundle bundle;
      TF_ASSERT_OK(SavedModelV2Bundle::Load(export_dir, &bundle));
    
      // Ensure that there are nodes in the trackable_object_graph.
      EXPECT_GT(bundle.trackable_object_graph().nodes_size(), 0);
    
      RestoreVarsAndVerify(&bundle, {"variable_x", "variable_y", "child_variable"});
    }
    
    TEST_F(BundleV2Test, LoadsCyclicModule) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 17:51:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/kotlin/build.gradle.kts

            val test by getting(JvmTestSuite::class) {
                dependencies {
                    runtimeOnly(libs.guava)
                    implementation(libs.commons.lang3)
                    implementation.bundle(libs.bundles.groovy)
                }
            }
            // end::version-catalogs-deps[]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionCatalog.java

        /**
         * Returns the provider for the corresponding bundle alias.
         * <p>
         * Note: Bundle will be automatically normalized: '-', '_' and '.' will be replaced with '.'
         * </p>
         * @param alias the alias of the bundle
         */
        Optional<Provider<ExternalModuleDependencyBundle>> findBundle(String alias);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    == Bundle the application
    
    The `application` plugin also bundles the application, with all its dependencies, for you.
    The archive will also contain a script to start the application with a single command.
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_custom_docs_ui/test_tutorial001.py

    
    def test_redoc_html(client: TestClient):
        response = client.get("/redoc")
        assert response.status_code == 200, response.text
        assert "https://unpkg.com/redoc@next/bundles/redoc.standalone.js" in response.text
    
    
    def test_api(client: TestClient):
        response = client.get("/users/john")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

            }
        }
    
        @Override
        public void bundle(String alias, List<String> aliases) {
            validateAlias(AliasType.BUNDLE, alias);
            ImmutableList<String> components = ImmutableList.copyOf(aliases.stream()
                .map(AliasNormalizer::normalize)
                .map(this::intern)
                .collect(Collectors.toList()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/mlir/mlir_transform.cc

      if (!status.ok()) {
        return None();
      }
      // Fetch MLIR context
      auto* context = self.Get<internal::Capsule>(String("_context"))
                          ->cast<mlir::MLIRContext*>();
    
      // Load the saved model into MLIR TF dialect.
      absl::Span<std::string> exported_names(nullptr, 0);
      auto module_or =
          tensorflow::ConvertSavedModelToMlir(&bundle, context, exported_names);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 12 16:28:19 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            spec()
        }
    
        void hasBundle(String id, List<String> expectedElements) {
            assert model.hasBundle(id)
            def bundle = model.getBundle(id)?.components
            assert bundle != null: "Expected a bundle with name $id but it wasn't found"
            assert bundle == expectedElements
        }
    
        void hasVersion(String id, String version) {
            assert model.hasVersion(id)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    This error indicates that your catalog declares a bundle (a group of libraries) which references a non-existing library.
    
    Bundles should only consist of libraries declared in the same catalog.
    
    To fix this, you must either:
    
    - make sure that the alias for the library you want to include is defined in the same catalog
    - or remove the library from the bundle
    
    [[invalid_dependency_notation]]
    == Invalid dependency notation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top