Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 153 for New (0.16 sec)

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

                throw new GradleException("filter isn't ready to transform");
            }
    
            Document document = Jsoup.parse(CharStreams.toString(in));
            document.outputSettings().indentAmount(2).prettyPrint(true);
            document.prependChild(new DocumentType("html", "", ""));
            document.head().
                    append("<meta charset='utf-8'>").
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 25 04:49:56 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  2. .github/workflows/CheckBadMerge.groovy

                List<String> badFiles = MONITORED_FILES.grep { isBadFileInMergeCommit(it, commit, parentCommits[0], parentCommits[1]) }
                if (!badFiles.isEmpty()) {
                    throw new RuntimeException("Found bad files in merge commit $commit: $badFiles")
                } else {
                    println("No bad files found in $commit")
                }
            } else {
    Groovy
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Dec 19 10:35:44 GMT 2023
    - 6.5K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRuleSetup.java

                mapOldAccessorsOfUpgradedProperties(currentUpgradedProperties),
                mapOldAccessorsOfUpgradedProperties(baselineUpgradedProperties)
            ));
            context.putUserData(SEEN_OLD_ACCESSORS_OF_UPGRADED_PROPERTIES, new HashSet<>());
        }
    
        private static Map<AccessorKey, UpgradedProperty> mapCurrentAccessorsOfUpgradedProperties(List<UpgradedProperty> upgradedProperties) {
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java

        @Override
        public void visit(TokenVisitor visitor) {
            lexer.visit(new VisitorImpl(visitor));
        }
    
        private class VisitorImpl extends TokenVisitor {
            private final TokenVisitor visitor;
            private final LinkedList<String> elementStack = new LinkedList<String>();
            private final Map<String, String> attributes = new HashMap<String, String>();
    
            public VisitorImpl(TokenVisitor visitor) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 5.8K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

        }
    
        public static List<String> getDefaultExcludedPackages() {
            // TODO: This should be configured via the extension vs hardcoded in the plugin
            List<String> excludedPackages = new ArrayList<>();
            // These are part of the API, but not the DSL
            excludedPackages.add("org.gradle.tooling.**");
            excludedPackages.add("org.gradle.testfixtures.**");
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/TypeNameResolver.java

     * Resolves partial type names into fully qualified type names.
     */
    public class TypeNameResolver {
        private final Set<String> primitiveTypes = new HashSet<String>();
        private final List<String> groovyImplicitImportPackages = new ArrayList<String>();
        private final List<String> groovyImplicitTypes = new ArrayList<String>();
        private final ClassMetaDataRepository<ClassMetaData> metaDataRepository;
    
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy

                    ])
                    addRule(JApiChangeStatus.NEW, IncubatingMissingRule, [
                            acceptedApiChanges: acceptedChangesMap,
                            apiChangesJsonFile: apiChangesJsonFilePath,
                            projectRootDir: projectRootDirPath
                    ])
                    addRule(JApiChangeStatus.NEW, SinceAnnotationMissingRule, [
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/UserGuideTransformTask.groovy

            ClassMetaDataRepository<ClassLinkMetaData> linkRepository = new SimpleClassMetaDataRepository<ClassLinkMetaData>()
            linkRepository.load(linksFile.get().asFile)
    
            findAll(doc, 'apilink').each { Element element ->
                String className = element.'@class'
                if (!className) {
                    throw new RuntimeException('No "class" attribute specified for <apilink> element.')
                }
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 5.6K bytes
    - Viewed (0)
  9. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithInnerTypes.groovy

             */
            class AnotherInner {
                InnerClass outer
            }
        }
    
        GroovyInterface getSomeProp() {
            // ignore anonymous classes
            return new GroovyInterface() {}
        }
    
        InnerClass.AnotherInner innerClassProp
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 609 bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java

            try {
                URI relativeLocation = projectRootDir.toURI().relativize(file.toURI());
                return new URI("https://github.com/gradle/gradle/blob/" + commitId + "/" + relativeLocation);
            } catch (URISyntaxException e) {
                throw new RuntimeException(e);
            }
        }
    
        private static DokkatooExtension getDokkatooExtension(Project project) {
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 15 14:00:14 GMT 2024
    - 7.7K bytes
    - Viewed (0)
Back to top