Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for have (0.15 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java

         */
        public abstract ConfigurableFileCollection getClasspath();
    
        /**
         * A working directory to be used to stage documentation as its generated.
         * All of the sections of the documentation have working directories off of this one.
         */
        public abstract DirectoryProperty getStagingRoot();
    
        /**
         * The final location to place all rendered documentation.
         */
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Aug 11 08:52:40 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationMissingRule.java

        }
    
        private boolean isOverrideMethod(JApiCompatibility member) {
            return member instanceof JApiMethod && isOverride((JApiMethod) member);
        }
    
        /**
         * Kotlin file-facade classes can't have kdoc comments.
         */
        private boolean isKotlinFileFacadeClass(JApiCompatibility member) {
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Sep 21 16:02:23 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/GenerateApiMapping.java

                    if (entry.getValue().size() > 1) {
                        StringBuilder warning = new StringBuilder();
                        warning.append(String.format("Multiple DSL types have short name '%s':\n", entry.getKey()));
                        for (String className : entry.getValue()) {
                            warning.append("    * " + className + "\n");
                        }
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.1K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocMethodsBuilder.java

            this.javadocConverter = converter;
            this.listener = listener;
        }
    
        /**
         * Builds the methods and script blocks of the given class. Assumes properties have already been built.
         */
        public void build(ClassDoc classDoc) {
            Set<String> signatures = new HashSet<String>();
    
            for (Element tr : children(classDoc.getMethodsTable(), "tr")) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.2K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocLinkConverter.java

                targetClass = classMetaData;
            }
    
            String value = targetClass.getConstants().get(parts[1]);
            if (value == null) {
                listener.warning(String.format("Field '%s' does not have any value", fieldName));
                Element element = document.createElement("NO-VALUE-FOR_FIELD");
                element.appendChild(document.createTextNode(targetClass.getClassName() + ":" + parts[1]));
                return element;
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 7K bytes
    - Viewed (0)
Back to top