Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for Name (0.12 sec)

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

                File docInfo = new File(destinationDirectory, docInfoName);
                try {
                    Files.write(docInfo.toPath(), Collections.singleton(String.format("<meta name=\"adoc-src-path\" content=\"%s\">", relativePath)), StandardOpenOption.CREATE);
                } catch (IOException e) {
                    throw new UncheckedIOException(e);
                }
            });
        }
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Sep 28 06:35:34 GMT 2021
    - 2.9K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertyTableRenderer.java

            tr.appendChild(td);
            td.appendChild(document.createTextNode("Description"));
    
            for (PropertyDoc propDoc : properties) {
                // <tr>
                //   <td><link linkend="$id"><literal>$name</literal></link</td>
                //   <td>$description</td>
                // </tr>
                tr = document.createElement("tr");
                parent.appendChild(tr);
    
                td = document.createElement("td");
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.1K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/MethodTableRenderer.java

            tr.appendChild(td);
            td.appendChild(document.createTextNode("Description"));
    
            for (MethodDoc methodDoc : methods) {
                // <tr>
                //   <td><literal><link linkend="$id">$name</link>$signature</literal></td>
                //   <td>$description</td>
                // </tr>
                tr = document.createElement("tr");
                parent.appendChild(tr);
    
                td = document.createElement("td");
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.3K bytes
    - Viewed (0)
Back to top