Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for kebabCase (0.09 sec)

  1. subprojects/core/src/test/groovy/org/gradle/util/internal/TextUtilTest.groovy

            TextUtil.shorterOf("", "bb") == ""
            TextUtil.shorterOf("", "") == ""
        }
    
        def "#camelCase to kebab = #kebabCase"() {
            expect:
            TextUtil.camelToKebabCase(camelCase) == kebabCase
    
            where:
            camelCase   | kebabCase
            ""          | ""
            "foo"       | "foo"
            "fooBar"    | "foo-bar"
            "Foo"       | "foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeRootProjectAccessorsIntegrationTest.groovy

            outputContains 'Dependency path: ":"'
    
            where:
            root         | accessor
            'test'       | 'test'
            'root'       | 'root'
            'snake_case' | 'snakeCase'
            'kebab-case' | 'kebabCase'
            'camelCase'  | 'camelCase'
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    You can use https://en.wikipedia.org/wiki/Camel_case[camel case] patterns for more complex abbreviations. These patterns are expanded to match camel case and https://en.wikipedia.org/wiki/Kebab_case[kebab case] names.
    For example, the pattern `foBa` (or `fB`) matches `fooBar` and `foo-bar`.
    
    More concretely, you can run the `compileTest` task in the `my-awesome-library` subproject with the command `gradle mAL:cT`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top