Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for notes (0.81 sec)

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckContributorsInReleaseNotes.kt

                throw IllegalStateException(
                    """The contributors in the release notes $releaseNotes don't match the contributors in the PRs.
                    Release notes:  $contributorsInReleaseNotes
                    Pull requests:  $contributorsFromPullRequests
                    Missed in notes:$contributorsInPullRequestsButNotInReleaseNotes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

    import model.Stage
    
    class SanityCheck(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id(buildTypeId(model))
        name = "Sanity Check"
        description = "Static code analysis, checkstyle, release notes verification, etc."
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyDefaults(
            model,
            this,
            "sanityCheck",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 30 11:15:05 UTC 2021
    - 708 bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

            }
    
            val contributorSectionEndIndex = (contributorSectionBeginIndex until releaseNotesLines.size).firstOrNull {
                val line = releaseNotesLines[it].trim()
                line.isNotEmpty() && !line.startsWith("[")
            } ?: throw IllegalStateException("Can't find the contributors section end in the release notes $releaseNotes.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  4. JavadocStyleGuide.md

    | 10 | `@implNote`   | Adds a “Implementation Note” heading                                           | This section contains informative notes about the implementation, such as advice to implementors, or performance characteristics that are specific to the implementation in this class of this version of the JDK  |
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateContributorsInReleaseNotes.kt

                )
            } else {
                println("Contributors in the release notes are up to date.")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 01 00:58:07 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    * For Javadocs, follow the [Javadoc Style Guide](JavadocStyleGuide.md).
    * For new features, the feature should be mentioned in the [Release Notes](platforms/documentation/docs/src/docs/release/notes.md).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. .teamcity/README.md

      - If there are any errors, read the error and fix your code.
      - IMPORTANT NOTE: if the first import fails, you have to select and apply `Synchronization disabled`, then repeat the step above.
        Otherwise, TeamCity complains "Can't find the previous revision, please commit current settings first".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. architecture/platforms.md

    <!-- 
      -- Note: this file contains a generated diagram. Use `./gradlew :architectureDoc` to generate 
      -->
    
    # Gradle platform architecture
    
    Gradle is arranged into coarse-grained components called "architecture modules" and "platforms".
    See [ADR4](standards/0004-use-a-platform-architecture.md) for a definition of these terms.
    
    The diagram below shows the current set of architecture modules and platforms:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package gradlebuild.binarycompatibility
    
    import org.jsoup.Jsoup
    import org.jsoup.nodes.Document
    import java.io.File
    
    
    internal
    fun scrapeRichReport(richReportFile: File): RichReport =
    
        Jsoup.parse(richReportFile, "UTF-8").run {
            RichReport(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 16:02:23 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

    
    /**
     * This is the definition of what constitutes the Gradle public API.
     *
     * A type is part of the Gradle public API if and only if its FQCN matches {@link #includes} and does not match {@link #excludes}.
     */
    // NOTE: If you update this, please also change .idea/scopes/Gradle_public_API.xml
    // and also change `avoiding_gradle_internal_apis` section in `src/docs/userguide/authoring-builds/authoring_maintainable_build_scripts.adoc`
    object PublicApi {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top