Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 160 for uoml (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    ====
    include::sample[dir="snippets/dependencyManagement/catalogs-toml/kotlin",files="settings.gradle.kts[tags=change_default_extension_name]"]
    include::sample[dir="snippets/dependencyManagement/catalogs-toml/groovy",files="settings.gradle[tags=change_default_extension_name]"]
    ====
    
    [[sub::toml-dependencies-format]]
    ==== The version catalog TOML file format
    
    The https://toml.io/[TOML] file consists of 4 major sections:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/groovy/gradle/libs.versions.toml

    Tom Tresansky <******@****.***> 1713209293 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 542 bytes
    - Viewed (0)
  3. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/one-dependency.toml

    Louis Jacomet <******@****.***> 1615370565 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 88 bytes
    - Viewed (0)
  4. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/with-bundles.toml

    Louis Jacomet <******@****.***> 1615370565 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 346 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/gradle/libs.versions.toml

    Laura Kassovic <******@****.***> 1701107622 -0800
    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/snippets/dependencyManagement/catalogs-javaPlatformCatalog/kotlin/catalog/repo/com/mycompany/catalog/1.0/catalog-1.0.module

          "attributes": {
            "org.gradle.category": "platform",
            "org.gradle.usage": "version-catalog"
          },
          "files": [
            {
              "name": "catalog-1.0.toml",
              "url": "catalog-1.0.toml",
              "size": 258,
              "sha512": "49a192a3bada4380f5365103538cf63cfafd50d8f8e2024df6c84dae8e6026d2ea534b5bf922b3ec89ae3d3ce7d0a01313476f9af6bfb7cd7d716cdd0bb929e5",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1015 bytes
    - Viewed (0)
  7. platforms/software/plugins-version-catalog/src/integTest/groovy/org/gradle/api/plugins/catalog/internal/TomlWriterTest.groovy

            parse("/org/gradle/api/plugins/catalog/internal/wrong.toml")
    
            then:
            def exception = thrown(InvalidUserDataException.class)
            exception.message.contains("In file '")
            exception.message.contains("wrong.toml'")
        }
    
        private Model generateFromModel(Model sourceModel) {
            def tomlFile = Files.createTempFile(tempTomlDir.toPath(), "test-", ".toml")
    
            def writer = Files.newBufferedWriter(tomlFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                contextualLabel == 'Unexpected end of line, expected \', ", \'\'\', """, a number, a boolean, a date/time, an array, or a table'
                details == 'TOML syntax invalid.'
                solutions == [ 'Fix the TOML file according to the syntax described at https://toml.io' ]
                additionalData.asMap.isEmpty()
            }
            verifyAll(receivedProblem(1)) {
                fqid == 'dependency-version-catalog:toml-syntax-error'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. .github/workflows/test.yml

              # cache: "pip"
              # cache-dependency-path: pyproject.toml
          - uses: actions/cache@v4
            id: cache
            with:
              path: ${{ env.pythonLocation }}
              key: ${{ runner.os }}-python-${{ env.pythonLocation }}-pydantic-v2-${{ hashFiles('pyproject.toml', 'requirements-tests.txt', 'requirements-docs-tests.txt') }}-test-v08
          - name: Install Dependencies
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/settings.gradle

    // tag::additional_catalog[]
    dependencyResolutionManagement {
        versionCatalogs {
            // declares an additional catalog, named 'testLibs', from the 'test-libs.versions.toml' file
            testLibs {
                from(files('gradle/test-libs.versions.toml'))
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top