Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for uncapitalise (0.22 sec)

  1. src/mdo/model-version.vm

                $pfx ${var}.get${Helper.capitalise($field.name)}().stream().anyMatch(this::is_${v}) // ${class.name} : ${field.name}
                    #else
                $pfx !${var}.get${Helper.capitalise($field.name)}().isEmpty() // ${class.name} : ${field.name}
                    #end
                #elseif ( $field.isOneMultiplicity() )
                $pfx is_${v}(${var}.get${Helper.capitalise($field.name)}()) // ${class.name} : ${field.name}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSet.java

         *
         * <p>If this is the main source set, returns the uncapitalized {@code baseName}, otherwise, returns the
         * base name prefixed with this source set's name.</p>
         */
        public String configurationNameOf(String baseName) {
            return StringUtils.uncapitalize(getTaskBaseName() + StringUtils.capitalize(baseName));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/lastafluteMap.dfprop

    #         ; propertiesHtmlList = list:{ [env or config or label or message] }
    #     }
    #     ; appMap = map:{
    #         ; [application name, camel case, initial uncapitalised] = map:{
    #             ; path = [relative path to application project from DBFlute client]
    #             ; freeGenList = list:{ [env or config or label or message or html] }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 20 08:20:11 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/api/internal/plugins/BuildConfigurationRule.java

        }
    
        @Override
        public void apply(String taskName) {
            if (taskName.startsWith(PREFIX)) {
                String configurationName = StringUtils.uncapitalize(taskName.substring(PREFIX.length()));
                Configuration configuration = configurations.findByName(configurationName);
    
                if (configuration != null) {
                    Task task = tasks.create(taskName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/plugins/CleanRule.java

            String targetTaskName = taskName.substring(CLEAN.length());
            if (Character.isLowerCase(targetTaskName.charAt(0))) {
                return;
            }
    
            Task task = tasks.findByName(StringUtils.uncapitalize(targetTaskName));
            if (task == null) {
                return;
            }
    
            Delete clean = tasks.create(taskName, Delete.class);
            clean.delete(task.getOutputs().getFiles());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageDisplayConfiguration.groovy

            if (!hasIntro) {
                return ''
            }
            String intro = typeName ? getTypeIntro() : getPropertyDescription()
            if (pluginId) {
                return "In plugin '${pluginId}' ${intro.uncapitalize()}"
            }
            return intro
        }
    
        private String getPropertyDescription() {
            property ? "${propertyIntro.capitalize()} '${property}' " : ""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/VariantContext.groovy

                return ''
            }
            return dimensions.values()*.name.join('/') + '/'
        }
    
        String getAsVariantName() {
            return dimensions.values()*.name*.capitalize().join('').uncapitalize()
        }
    
        String getAsPublishName() {
            if (dimensions.isEmpty()) {
                return ''
            }
            return '_' + dimensions.values()*.name.join('_').replaceAll('-', '_')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. src/mdo/transformer.vm

        #foreach ( $field in $allFields )
            builder = (${class.name}.Builder) transform${field.modelClass.name}_${Helper.capitalise($field.name)}(creator, builder, target);
        #end
            return builder != null ? builder.build() : target;
        }
    
        #foreach ( $field in $allFields )
          #set ( $capField = ${Helper.capitalise($field.name)} )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskReportRenderer.java

        }
    
        @Override
        protected String createHeader(ProjectDetails project) {
            String header = super.createHeader(project);
            return "Tasks runnable from " + StringUtils.uncapitalize(header);
        }
    
        public void showDetail(boolean detail) {
            this.detail = detail;
        }
    
        public void showTypes(boolean showTypes) {
            this.showTypes = showTypes;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:53:41 UTC 2021
    - 5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/attributes/Attribute.java

         * @param <T> the type of the attribute
         * @return an attribute with the given name and type
         */
        public static <T> Attribute<T> of(Class<T> type) {
            return of(WordUtils.uncapitalize(type.getCanonicalName()), type);
        }
    
        private Attribute(String name, Class<T> type) {
            this.name = name;
            this.type = type;
            int hashCode = name.hashCode();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 22 02:54:35 UTC 2019
    - 4K bytes
    - Viewed (0)
Back to top