Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 391 for bundles (0.86 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-settings/groovy/build.gradle

        implementation 'org.codehaus.groovy:groovy-nio:3.0.5'
    }
    // end::use_catalog_equiv[]
    
    // tag::use_dependency_bundle[]
    dependencies {
        implementation libs.bundles.groovy
    }
    // end::use_dependency_bundle[]
    
    // tag::type_unsafe_access[]
    def versionCatalog = versionCatalogs.named("libs")
    println "Library aliases: ${versionCatalog.libraryAliases}"
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 11:03:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. docs/en/docs/how-to/custom-docs-ui-assets.md

    * <a href="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui-bundle.js" class="external-link" target="_blank">`swagger-ui-bundle.js`</a>
    * <a href="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui.css" class="external-link" target="_blank">`swagger-ui.css`</a>
    
    And **ReDoc** uses the file:
    
    * <a href="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js" class="external-link" target="_blank">`redoc.standalone.js`</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. docs/de/docs/how-to/custom-docs-ui-assets.md

    * <a href="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui-bundle.js" class="external-link" target="_blank">`swagger-ui-bundle.js`</a>
    * <a href="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui.css" class="external-link" target="_blank">`swagger-ui.css`</a>
    
    Und **ReDoc** verwendet diese Datei:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. fastapi/openapi/docs.py

            Doc(
                """
                The URL to use to load the ReDoc JavaScript.
    
                It is normally set to a CDN URL.
                """
            ),
        ] = "https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js",
        redoc_favicon_url: Annotated[
            str,
            Doc(
                """
                The URL of the favicon to use. It is normally shown in the browser tab.
                """
            ),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    	newContent := &dynamicCertificateContent{}
    
    	if c.clientCA != nil {
    		currClientCABundle := c.clientCA.CurrentCABundleContent()
    		// we allow removing all client ca bundles because the server is still secure when this happens. it just means
    		// that there isn't a hint to clients about which client-cert to used.  this happens when there is no client-ca
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    * You cannot add a dependency with an instance of `Project`. You must turn it into a `ProjectDependency` first.
    * You cannot add version catalog bundles directly.
    Instead, use the `bundle` method on each configuration.
    ** Kotlin and Groovy: `implementation(libs.bundles.testing)` becomes `implementation.bundle(libs.bundles.testing)`
    * You cannot use providers for non-`Dependency` types directly.
    Instead, map them to a `Dependency` using the `DependencyFactory`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1/types.go

    	//
    	// Custom signerNames can also be specified. The signer defines:
    	//  1. Trust distribution: how trust (CA bundles) are distributed.
    	//  2. Permitted subjects: and behavior when a disallowed subject is requested.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/BUILD

    # builds.
    filegroup(
        name = "mobile_srcs_no_runtime",
        srcs = [
            "defs.cc",
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Target that bundles up the XLA CPU and GPU JIT devices.
    cc_library(
        name = "jit",
        visibility = [
            ":friends",
            "//learning/tfx:__subpackages__",
        ],
        deps = [
            ":xla_cpu_device",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[kotlin_dsl_deprecated_catalogs_plugins_block]]
    ==== Accessing `libraries` or `bundles` from dependency version catalogs in the `plugins {}` block of a Kotlin script
    
    Accessing `libraries` or `bundles` from dependency version catalogs in the `plugins {}` block of a Kotlin script is deprecated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top