Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for fromJS (0.3 sec)

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

                // release notes goes in the root of the docs
                task.from(extension.getReleaseNotes().getRenderedDocumentation());
    
                // DSL reference goes into dsl/
                task.from(extension.getDslReference().getRenderedDocumentation(), sub -> sub.into("dsl"));
    
                // Javadocs reference goes into javadoc/
                task.from(extension.getJavadocs().getRenderedDocumentation(), sub -> sub.into("javadoc"));
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 17 20:04:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

        startScriptsDir = layout.buildDirectory.dir("startScripts")
        launcherJar.from(tasks.jar)
        agentJars.from(agentsClasspath)
        // The trick below is to use the templates from the current code instead of the wrapper. It does not cover the case where the generation logic is updated though.
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Feb 28 23:38:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/Docbook2Xhtml.groovy

            }
    
            def xslClasspath = classpath.plus(objects.fileCollection().from(ClasspathUtil.getClasspathForClass(XslTransformer)))
    
            fs.copy {
                from(getStylesheetDirectory()) {
                    include "**/*.xml"
                    include "*.xsl"
                }
                from(archives.zipTree(getDocbookStylesheets().singleFile)) {
                    eachFile {
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 05 19:36:14 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

        extraParameters = "-PpromotedBranch=%branch.qualifier% ",
        vcsRootId = gradlePromotionBranches
    ) {
        init {
            id("Promotion_PublishBranchSnapshotFromQuickFeedback")
            name = "Publish Branch Snapshot (from Quick Feedback)"
            description = "Deploys a new distribution snapshot for the selected build/branch. Does not update master or the documentation."
    
            val triggerName = this.triggerName
    
            params {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  5. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ModuleIdentityExtension.kt

                this.commitId = project.buildCommitId
                this.receiptFolder = project.layout.buildDirectory.dir("generated-resources/build-receipt")
            }
            tasks.named<Jar>("jar").configure {
                from(createBuildReceipt.map { it.receiptFolder })
            }
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  6. .cm/summary_table.cm

    author:
      using_gitstream: {{ (pr.author | isEnabledUser ) }}
    
    # Perhaps a task could generate this list from the CODEOWNERS, or both this and CODEOWNERS could be generated from different single source of truth?
    # Keys like `- build_infrastructure:` do not mean anything, they just need to be unique
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Feb 08 15:20:44 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/MethodMetaData.java

    import org.gradle.api.Action;
    
    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.Objects;
    
    /**
     * Static meta-data about a method extracted from the source for the class.
     */
    public class MethodMetaData extends AbstractLanguageElement implements Serializable, TypeContainer {
        private final String name;
        private final ClassMetaData ownerClass;
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.9K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/DecorateReleaseNotes.java

        @TaskAction
        public void transform() {
            File destinationFile = getDestinationFile().get().getAsFile();
    
            getFs().copy(copySpec -> {
                copySpec.from(getHtmlFile());
                copySpec.into(destinationFile.getParentFile());
                copySpec.rename(s -> destinationFile.getName());
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Sep 28 06:35:15 GMT 2021
    - 4.1K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

                        return result;
                    }
    
                    function appendErrorCorrections(reason) {
                        var result = JSON.parse('${currentApiChanges.replace('\n', '')}'); // JSON string from report uses double quotes, contain it within single quotes
                        getAllErrorCorrections().forEach((correction) => {
                            correction.acceptation = reason;
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 07 20:38:43 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/ClassMetaData.java

    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeSet;
    
    /**
     * Static meta-data about a class extracted from the source for the class.
     */
    public class ClassMetaData extends AbstractLanguageElement implements Serializable, Attachable<ClassMetaData>, TypeContainer {
        private final String className;
        private String superClassName;
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 10.1K bytes
    - Viewed (0)
Back to top