Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for styled (0.16 sec)

  1. .editorconfig

    # EditorConfig helps developers define and maintain consistent
    # coding styles between different editors and IDEs
    # editorconfig.org
    
    root = true
    
    [*]
    # Change these settings to your own preference
    indent_style = space
    indent_size = 4
    
    # We recommend you to keep these unchanged
    end_of_line = lf
    charset = utf-8
    trim_trailing_whitespace = true
    insert_final_newline = true
    
    # Markdown files sometimes need trailing whitespaces.
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Oct 02 11:48:19 GMT 2023
    - 643 bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/UserGuideTransformTask.groovy

                String style = element.'@style' ?: linkMetaData.style.toString().toLowerCase()
    
                Element ulinkElement = doc.createElement('ulink')
    
                String href
                if (style == 'dsldoc') {
                    href = "${dsldocUrl.get()}/${className}.html"
                } else if (style == "javadoc") {
                    def base = javadocUrl.get()
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 5.6K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

        }
    
        private void addCssToHead(Document document) {
            appendFileContentsTo(document.head(), "<style>", baseCss, "</style>");
            appendFileContentsTo(document.head(), "<style>", releaseNotesCss, "</style>");
        }
    
        private void appendFileContentsTo(Element element, String open, File file, String close) {
            try (FileReader reader = new FileReader(file)) {
    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)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy

                def linkMetaData = linkRepository.get(classDoc.name)
                linkMetaData.style = LinkMetaData.Style.Dsldoc
                classDoc.classMethods.each { methodDoc ->
                    linkMetaData.addMethod(methodDoc.metaData, LinkMetaData.Style.Dsldoc)
                }
                classDoc.classBlocks.each { blockDoc ->
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 9.8K bytes
    - Viewed (0)
  5. .idea/codeStyles/Project.xml

            </value>
          </option>
          <option name="NAME_COUNT_TO_USE_STAR_IMPORT" value="2147483647" />
          <option name="NAME_COUNT_TO_USE_STAR_IMPORT_FOR_MEMBERS" value="2147483647" />
          <option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
        </JetCodeStyleSettings>
        <codeStyleSettings language="Groovy">
          <option name="IF_BRACE_FORCE" value="3" />
          <option name="DOWHILE_BRACE_FORCE" value="3" />
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jul 31 14:47:08 GMT 2023
    - 3.4K bytes
    - Viewed (1)
  6. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/model/License.kt

     * limitations under the License.
     */
    
    package gradlebuild.modules.model
    
    
    enum class License(val displayName: String) {
        Apache2("Apache 2.0"),
        BSD3("3-Clause BSD"),
        BSDStyle("BSD-style"),
        CDDL("CDDL"),
        EDL("Eclipse Distribution License 1.0"),
        EPL("Eclipse Public License 1.0"),
        LGPL21("LGPL 2.1"),
        MIT("MIT")
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Jan 08 10:41:04 GMT 2021
    - 922 bytes
    - Viewed (0)
  7. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

            <title>Class</title>
            <segmentedlist>
                <segtitle>API Documentation</segtitle>
                <seglistitem>
                    <seg>
                        <apilink class="org.gradle.Class" style="java"/>
                    </seg>
                </seglistitem>
            </segmentedlist>
            <para>class comment</para>
            <section>
                <title>Properties</title>
                <para>No properties</para>
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 40.8K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/links/LinkMetaData.java

        public enum Style { Javadoc, Dsldoc }
    
        private final Style style;
        private final String displayName;
        private final String urlFragment;
    
        public LinkMetaData(Style style, String displayName, String urlFragment) {
            this.style = style;
            this.displayName = displayName;
            this.urlFragment = urlFragment;
        }
    
        public Style getStyle() {
            return style;
        }
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/DecorateReleaseNotes.java

        @InputFile
        @PathSensitive(PathSensitivity.NONE)
        public abstract RegularFileProperty getBaseCssFile();
    
        /**
         * Key-value pairs that are replaced in the generated HTML.
         *
         * This uses Ant style replacement tokens.
         */
        @Input
        public abstract MapProperty<String, String> getReplacementTokens();
    
        @Inject
        protected abstract FileSystemOperations getFs();
    
        @TaskAction
    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)
  10. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

                        // Add the link to the DOM so that it can be clicked
                        downloadLink.href = window.URL.createObjectURL(textFileAsBlob);
                        downloadLink.style.display = "none";
                        document.body.appendChild(downloadLink);
    
                        downloadLink.click();
                    }
                </script>
    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)
Back to top