Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for title (0.17 sec)

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

            document.head().
                    append("<meta charset='utf-8'>").
                    append("<meta name='viewport' content='width=device-width, initial-scale=1'>").
                    append("<title>Gradle @version@ Release Notes</title>").
                    append("<link rel='stylesheet' type='text/css' href='https://assets.gradle.com/lato/css/lato-font.css'/>");
            addCssToHead(document);
            addJavascriptToHead(document);
    
    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/slack-notifier.yml

            with:
              payload: |
                {
                  "text": "<https://github.com/gradle/gradle/issues/${{ github.event.issue.number }}|[gradle/gradle#${{ github.event.issue.number }}]> `${{ github.event.issue.title }}` has label `${{ github.event.label.name }}`",
                  "blocks": [
                    {
                      "type": "section",
                      "text": {
                        "type": "mrkdwn",
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 04 06:43:15 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

                    token = "%github.bot-gradle.token%"
                }
            }
        }
    }
    
    fun ProjectFeatures.buildReportTab(title: String, startPage: String) {
        feature {
            type = "ReportTab"
            param("startPage", startPage)
            param("title", title)
            param("type", "BuildReportTab")
        }
    }
    
    fun BaseGradleBuildType.gradleRunnerStep(
        model: CIBuildModel,
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

    
    data class GitHubPullRequestSearchResult(val items: List<GitHubPullRequest>)
    
    
    data class GitHubUser(val login: String, val name: String?)
    
    
    data class GitHubPullRequestMilestone(val title: String)
    
    
    data class GitHubPullRequest(
        val number: Int,
        val user: GitHubUser,
        val milestone: GitHubPullRequestMilestone?,
    )
    
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon May 16 05:03:11 GMT 2022
    - 5.7K bytes
    - Viewed (0)
  5. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

            archiveBaseName = moduleIdentity.baseName
            archiveVersion = moduleIdentity.version.map { it.baseVersion.version }
            manifest.attributes(
                mapOf(
                    Attributes.Name.IMPLEMENTATION_TITLE.toString() to "Gradle",
                    Attributes.Name.IMPLEMENTATION_VERSION.toString() to moduleIdentity.version.map { it.baseVersion.version }
                )
            )
        }
    }
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Mar 28 20:26:58 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  6. .cm/plugins/filters/summaryTable/index.js

        let result = `:bar_chart: **Changes by ${title}: this PR is ${Math.round(newRatio, 2)}% new code**`;
    
        // Only title by Platform
        if (title === "Platform") {
            result += `
      <br>${platformsAffected(preppedStatistics)}`;
        }
    
        result += `
      <details>
      <summary>See details</summary>
      <table>
                <tr>
                    <td>${title}</td>
                    <td>Added Lines</td>
    JavaScript
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                attributes.put("icons", "font");
                attributes.put("source-highlighter", "prettify");
                attributes.put("toc", "auto");
                attributes.put("toclevels", 1);
                attributes.put("toc-title", "Contents");
                attributes.put("groovyDslPath", "../dsl");
                attributes.put("javadocPath", "../javadoc");
                attributes.put("kotlinDslPath", "../kotlin-dsl");
    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)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                            txtOutputFile.set(file("build/japi-report.txt"))
    
                            richReport {
    
                                title.set("Gradle Binary Compatibility Check")
                                destinationDir.set(file("build/japi"))
                                reportName.set("japi.html")
    
                                includedClasses.set(listOf(".*"))
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 16.4K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

            Please open Gradle Native-related issues on [the Gradle Native repository](https://github.com/gradle/gradle-native/issues)
    
            Provide a brief summary of the issue in the title above
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us how it should work
        validations:
          required: true
      - type: textarea
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 06 11:10:39 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  10. build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report.gradle.kts

    plugins {
        java
        groovy
    }
    
    val reportTask = tasks.register<IncubatingApiReportTask>("incubationReport") {
        group = "verification"
        description = "Generates a report of incubating APIS"
        title = project.name
        versionFile = repoRoot().file("version.txt")
        releasedVersionsFile = releasedVersionsFile()
        sources.from(sourceSets.main.get().java.sourceDirectories)
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 2.3K bytes
    - Viewed (0)
Back to top