Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,358 for bundles (3.55 sec)

  1. releasenotes/notes/spiffe-bundle-multiple-certs.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
      - 44831
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 03:02:17 UTC 2023
    - 176 bytes
    - Viewed (0)
  2. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/api/plugins/catalog/internal/wrong.toml

    [libraries]
    groovy = { module = "org.codehaus.groovy:groovy", version.ref = "groovy" }
    groovy-json = { module = "org.codehaus.groovy:groovy-json", version.ref = "groovy" }
    
    guava = "com.google.guava:guava:17.0-jre"
    
    [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 323 bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

        }
    
        String versionCatalog(String group, String name) {
            return "libs.$group.$name"
        }
    
        String versionCatalogBundle(String bundle) {
            return "libs.bundles.$bundle"
        }
    
        String testFixtures(String expression) {
            return "testFixtures($expression)"
        }
    
        String platform(String expression) {
            return "platform($expression)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            assertUnique(libraries, "library aliases", "");
            assertUnique(bundles, "dependency bundles", "Bundle");
            assertUnique(versions, "dependency versions", "Version");
            assertUnique(plugins, "plugins", "Plugin");
            int size = libraries.size() + bundles.size() + versions.size() + plugins.size();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  5. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/invalid13.toml

    groovy-json = { group = "org.codehaus.groovy", name = "groovy-json", version = "2.5.6" }
    groovy-templates = { group = "org.codehaus.groovy", name = "groovy-templates", version = "2.5.6" }
    
    [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 309 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/kotlin/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)
  7. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/groovy/build.gradle

        suites {
            // tag::version-catalogs-deps[]
            test {
                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)
  8. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/api/plugins/catalog/internal/dependencies.toml

    [libraries]
    groovy = { module = "org.codehaus.groovy:groovy", version.ref = "groovy" }
    groovy-json = { module = "org.codehaus.groovy:groovy-json", version.ref = "groovy" }
    
    guava = "com.google.guava:guava:17.0-jre"
    
    [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 290 bytes
    - Viewed (0)
  9. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected3.toml

    #
    [metadata]
    format.version = "1.1"
    
    [libraries]
    bar = {group = "org", name = "bar", version = { strictly = "1.5" } }
    foo = {group = "org", name = "foo", version = "1.0" }
    
    [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 288 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/kotlin/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)
Back to top