Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BR (0.16 sec)

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

            try (BufferedReader br = new BufferedReader(new FileReader(sourceFile))) {
                String line = br.readLine();
                while (line != null) {
                    lineNumber++;
                    gatherDeadLinksInLine(sourceFile, line, lineNumber, errorsForFile);
                    gatherDeadJavadocLinksInLine(sourceFile, line, lineNumber, errorsForFile);
    
                    line = br.readLine();
                }
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 05 07:57:56 GMT 2023
    - 8.6K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

            def changeId = (change.type + change.member).replaceAll('[^a-zA-Z0-9]', '_')
            Violation violation = Violation.error(
                member,
                rejection.getHumanExplanation() + """.
                    <br>
                    <p>
                    If you did this intentionally, please accept the change and provide an explanation:
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  3. .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 Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  4. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

           <h1>Incubating APIs</h1>
           <h2>Index</h2>
           <ul>
        """
                )
    
                data.toSortedMap().forEach { (category, _) ->
                    writer.println("<li><a href=\"#$category\">$category</a><br></li>")
                }
                writer.println("</ul>")
                data.toSortedMap().forEach { (category, problems) ->
                    writer.println("<a name=\"$category\"></a>")
    HTML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jan 18 06:55:55 GMT 2021
    - 3.4K bytes
    - Viewed (0)
Back to top