Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,358 for bundles (0.31 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. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected8.toml

    format.version = "1.1"
    
    [libraries]
    foo = {group = "org", name = "from-model", version = "1.0" }
    foo2 = {group = "org", name = "foo", version = "1.2" }
    from-script = {group = "org", name = "from-script", version = "1.0" }
    
    [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 367 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/groovy/gradle/libs.versions.toml

    commons-lang3 = { group = "org.apache.commons", name = "commons-lang3", version = { strictly = "[3.8, 4.0[", prefer="3.9" } }
    guava = "com.google.guava:guava:29.0-jre"
    
    [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 542 bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/gradle/libs.versions.toml

    groovy-nio = { module = "org.codehaus.groovy:groovy-nio", version.ref = "groovy" }
    commons-lang3 = { group = "org.apache.commons", name = "commons-lang3", version = { strictly = "[3.8, 4.0[", prefer="3.9" } }
    
    [bundles]
    groovy = ["groovy-core", "groovy-json", "groovy-nio"]
    
    [plugins]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 583 bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/build.gradle

     * limitations under the License.
     */
    
    plugins {
        id 'java-library'
        alias(projectLibs.plugins.versions)
    }
    
    dependencies {
        api projectLibs.bundles.groovy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 744 bytes
    - Viewed (0)
  8. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected1.toml

    [libraries]
    junit4 = {group = "junit", name = "junit", version = { prefer = "4.13.1", require = "[4.13.1, 5[" } }
    my-lib = {group = "org", name = "foo", version = "1.0" }
    other = {group = "org", name = "bar", version.ref = "lib" }
    
    [bundles]
    test = ["my-lib", "junit4"]
    
    [plugins]
    bye = {id = "org.bye", version.ref = "lib" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 521 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/organizingGradleProjects/customGradleDistribution/groovy/build.gradle

        description = 'Downloads the Gradle distribution with a given version.'
        gradleVersion = '4.6'
    }
    
    tasks.register('createCustomGradleDistribution', Zip) {
        description = 'Builds custom Gradle distribution and bundles initialization scripts.'
    
        dependsOn downloadGradle
    
        def projectVersion = project.version
        archiveFileName = downloadGradle.gradleVersion.map { gradleVersion ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 797 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-settings/kotlin/build.gradle.kts

        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[]
    val 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.8K bytes
    - Viewed (0)
Back to top