Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,952 for Style (0.04 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/Span.java

    public class Span implements Serializable {
        private final Style style;
        private final String text;
    
        public Span(Style style, String text) {
            this.style = style;
            this.text = text;
        }
    
        public Span(String text) {
            this(Style.NORMAL, text);
        }
    
        public Style getStyle() {
            return style;
        }
    
        public String getText() {
            return text;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. docs/en/overrides/main.html

          </a>
        </div>
        <div class="item">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

         * By default, cyan
         *
         * @param message the message to append
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder project(Object message) {
            return style(".project:-f:cyan", message);
        }
    
        @Nonnull
        default MessageBuilder style(String style, Object message) {
            return style(style).a(message).resetStyle();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/TestColorMap.groovy

        ColorMap.Color getColourFor(StyledTextOutput.Style style) {
            if (style != StyledTextOutput.Style.Header) {
                return {} as ColorMap.Color
            }
            return [on : { ansi -> ansi.fg(Ansi.Color.YELLOW) },
                    off: { ansi -> ansi.fg(Ansi.Color.DEFAULT) }
            ] as ColorMap.Color
        }
    
        @Override
        ColorMap.Color getColourFor(Style style) {
            return null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/swift-library-configurations.dot

      subgraph central {
        node[style=filled, fillcolor=white]
        api -> implementation -> mainVariantImplementation [style=invis, weight=1000]
        mainVariantImplementation -> implementation -> api [headport=s, tailport=n]
    
        mainVariantImplementation[label=<main<i>Variant</i>Implementation>]
      }
    
      subgraph left {
        node[style=filled, fillcolor="#cfe2f3"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/cpp-library-configurations.dot

      subgraph central {
        node[style=filled, fillcolor=white]
        api -> implementation -> mainVariantImplementation [style=invis, weight=1000]
        mainVariantImplementation -> implementation -> api [headport=s, tailport=n]
    
        mainVariantImplementation[label=<main<i>Variant</i>Implementation>]
      }
    
      subgraph left {
        node[style=filled, fillcolor="#cfe2f3"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-test.dot

       "api" [shape="box", label=<<B>api</B>>, color="chartreuse3", bgcolor="chartreuse3", style="filled"]
    
       "compileOnlyApi" [shape="box", label=<<B>compileOnlyApi</B>>, color="chartreuse3", bgcolor="chartreuse3", style="filled"]
    
       "implementation" [shape="box", label=<<B>implementation</B>>, color="chartreuse3", bgcolor="chartreuse3", style="filled"]
       "implementation" -> "api"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/format/PrettyPrefixedLogHeaderFormatterTest.groovy

            def formattedText = formatter.format(":test", "XYZ", true)
    
            then:
            formattedText.size() == 3
            formattedText[0].style == StyledTextOutput.Style.FailureHeader
            formattedText[0].text == "> :test"
            formattedText[1].style == StyledTextOutput.Style.Failure
            formattedText[1].text == " XYZ"
            formattedText[2] == StyledTextOutputEvent.EOL
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/multiThreaded/build.gradle

                        textOut.text("styled text message from thread ")
                        textOut.style(UserInput).text(thread).style(Normal)
                        textOut.text(' iteration ')
                        textOut.style(UserInput).text(iteration).style(Normal)
                        textOut.println()
                    }
                }
            }
    
            executor.shutdown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ColorMap.java

     */
    
    package org.gradle.internal.logging.console;
    
    import org.fusesource.jansi.Ansi;
    import org.gradle.internal.logging.text.Style;
    import org.gradle.internal.logging.text.StyledTextOutput;
    
    public interface ColorMap {
        Color getColourFor(StyledTextOutput.Style style);
    
        Color getColourFor(Style style);
    
        Color getStatusBarColor();
    
        interface Color {
            void on(Ansi ansi);
    
            void off(Ansi ansi);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top