Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for ToCamelCase (0.17 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

            expect:
            toCamelCase(null) == null
            toCamelCase("") == ""
            toCamelCase("word") == "Word"
            toCamelCase("twoWords") == "TwoWords"
            toCamelCase("TwoWords") == "TwoWords"
            toCamelCase("two-words") == "TwoWords"
            toCamelCase("two.words") == "TwoWords"
            toCamelCase("two words") == "TwoWords"
            toCamelCase("two Words") == "TwoWords"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.RequiredFeature
    import org.gradle.integtests.resolve.AbstractModuleDependencyResolveTest
    import org.gradle.test.fixtures.maven.MavenFileRepository
    
    import static org.gradle.util.internal.GUtil.toCamelCase
    
    abstract class AbstractDependencyMetadataRulesIntegrationTest extends AbstractModuleDependencyResolveTest {
        @Override
        String getTestConfiguration() { variantToTest }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/ParamMap.java

            }
            return parent.containsKey(toCamelCase(key));
        }
    
        @Override
        public boolean containsValue(final Object value) {
            return parent.containsValue(value);
        }
    
        @Override
        public V get(final Object key) {
            final V value = parent.get(key);
            if (value != null) {
                return value;
            }
            return parent.get(toCamelCase(key));
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ModuleNameBuilder.java

     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.util.internal.GUtil;
    
    public class ModuleNameBuilder {
        public static String toModuleName(String name) {
            return GUtil.toCamelCase(name);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 839 bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmGradlePluginProjectInitDescriptor.java

            String pluginId = settings.getPackageName() + ".greeting";
            String pluginClassName = StringUtils.capitalize(GUtil.toCamelCase(settings.getProjectName())) + "Plugin";
    
            buildScriptBuilder
                .fileComment("This generated file contains a sample Gradle plugin project to get you started.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. tensorflow/cc/framework/cc_op_gen_util.h

    string PrintTensorProto(const TensorProto& proto);
    
    string PrintAttrValue(StringPiece, const AttrValue& attr_value);
    
    bool IsEmptyList(const AttrValue::ListValue& list);
    
    string ToCamelCase(StringPiece str);
    
    string SeparateNamespaces(StringPiece str);
    
    // Returns a <string, bool> pair. The string is the C++ type name to be used for
    // attr_type when defining an object of that type. The bool is a flag to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/swift/plugins/SwiftApplicationPlugin.java

            project.getExtensions().add(SwiftApplication.class, "application", application);
            project.getComponents().add(application);
    
            // Setup component
            application.getModule().convention(GUtil.toCamelCase(project.getName()));
    
            application.getTargetMachines().convention(Dimensions.useHostAsDefaultTargetMachine(targetMachineFactory));
            application.getDevelopmentBinary().convention(project.provider(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSet.java

        @Inject
        public DefaultSourceSet(String name, ObjectFactory objectFactory) {
            this.name = name;
            this.baseName = name.equals(SourceSet.MAIN_SOURCE_SET_NAME) ? "" : GUtil.toCamelCase(name);
            displayName = GUtil.toWords(this.name);
            namingScheme = new ClassDirectoryBinaryNamingScheme(name);
    
            String javaSrcDisplayName = displayName + " Java source";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top