Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for otherGroup (0.14 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/DefaultGroupTaskReportModel.java

            }
            if (groups.keySet().contains(DEFAULT_GROUP) && groups.keySet().size() > 1) {
                groups.putAll(OTHER_GROUP, groups.removeAll(DEFAULT_GROUP));
            }
            return new DefaultGroupTaskReportModel(groups);
        }
    
        public static final String OTHER_GROUP = "other";
        private static final Comparator<String> STRING_COMPARATOR = GUtil.caseInsensitive();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 08 21:50:18 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtraPropertiesExtension.java

     * </pre>
     *
     * You can also use the Groovy accessor syntax to get and set properties on an extra properties extension.
     *
     * <pre class='autoTested'>
     * project.ext["otherProp"] = "a"
     * assert project.otherProp == "a"
     * assert project.ext["otherProp"] == "a"
     * </pre>
     *
     * The exception that is thrown when an attempt is made to get the value of a property that does not exist is different depending on whether the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:35:02 UTC 2017
    - 6.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

            task3.target.name == 'target3'
        }
    
        def "can nest elements"() {
            when:
            ant.otherProp = 'true'
            ant.condition(property: 'prop', value: 'someValue') {
                or {
                    and {
                        isSet(property: 'otherProp')
                        not { isSet(property: 'missing') }
                    }
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
Back to top