Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for IsEmpty (0.16 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDescriptionRenderer.java

            apilink.setAttribute("style", classDoc.getStyle());
        }
    
        private void addSubtypeLinks(ClassDoc classDoc, Element parent, Document document) {
            if (!classDoc.getSubClasses().isEmpty()) {
                Element list = document.createElement("segmentedlist");
                parent.appendChild(list);
                Element segtitle = document.createElement("segtitle");
                list.appendChild(segtitle);
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.1K bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/groovy/gradlebuild/docs/XmlSpecification.groovy

                            list << child
                        }
                        return list
                    }
                }
    
                if (trimmedContent.isEmpty()) {
                    target.append('/>')
                    return
                }
                target.append('>')
    
    
                trimmedContent.each { child ->
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.1K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaData.java

                if (methodLinkMetaData.name.equals(method)) {
                    candidates.add(methodLinkMetaData);
                }
            }
            if (candidates.isEmpty()) {
                String message = String.format("No method '%s' found for class '%s'.\nFound the following methods:", method, className);
                for (MethodLinkMetaData methodLinkMetaData : methods.values()) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 7.4K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                    .map { it.name }
                val subprojectsInModelButNotInBucketJson = allSubprojectsInModel.toMutableList().apply { removeAll(allSubprojectsInBucketJson) }
    
                if (subprojectsInModelButNotInBucketJson.isEmpty()) {
                    testCoverage to buckets
                } else {
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu Jan 18 05:14:09 GMT 2024
    - 9K bytes
    - Viewed (0)
Back to top