Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for toLowerCamelCase (0.17 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

         */
        public static String toCamelCase(CharSequence string) {
            return toCamelCase(string, false);
        }
    
        public static String toLowerCamelCase(CharSequence string) {
            return toCamelCase(string, true);
        }
    
        private static String toCamelCase(CharSequence string, boolean lower) {
            if (string == null) {
                return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

         */
        public static String toCamelCase(CharSequence string) {
            return toCamelCase(string, false);
        }
    
        public static String toLowerCamelCase(CharSequence string) {
            return toCamelCase(string, true);
        }
    
        private static String toCamelCase(CharSequence string, boolean lower) {
            if (string == null) {
                return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/build.gradle

        }
    
        snippetDirs.each { File snippetDir ->
            String snippetName = snippetDir.name
            String categoryName = snippetDir.parentFile.name
            def id = org.gradle.docs.internal.StringUtils.toLowerCamelCase("snippet-" + categoryName + "-" + snippetName)
            publishedSamples.create(id) {
                description = "Snippet from $snippetDir"
                category = "Other"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top