Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,977 for Style (0.06 sec)

  1. platforms/software/reporting/src/main/resources/org/gradle/api/reporting/internal/style.css

    Tom Tresansky <******@****.***> 1697026569 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 36 bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/style.css

        font-size: 10pt;
    }
    
    #controls {
        float: right;
        text-align: right;
        font-size: 10pt;
    }
    
    #controls label {
        font-weight: bold;
        cursor: pointer;
    }
    
    nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #f1f1f1;;
    }
    
    nav li {
        float: left;
    }
    
    nav li a {
        display: block;
        text-align: center;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/Style.java

    import java.util.EnumSet;
    import java.util.Set;
    
    public class Style {
        public static final Style NORMAL = Style.of(Color.DEFAULT);
        public enum Emphasis {
            BOLD, REVERSE, ITALIC
        }
    
        public enum Color {
            DEFAULT, YELLOW, RED, GREY, GREEN, BLACK
        }
    
        public final Set<Emphasis> emphasises;
        public final Color color;
    
        public Style(Set<Emphasis> emphasises, Color color) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/resources/org/gradle/api/internal/tasks/testing/report/style.css

        color: #c09853;
    }
    
    div.failures, #successRate.failures {
        background-color: #ecdada;
        border-color: #b60808;
    }
    
    ul.linkList {
        padding-left: 0;
    }
    
    ul.linkList li {
        list-style: none;
        margin-bottom: 5px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutput.java

         * and then return to the current style. For example:
         * <pre>
         * output.style(Info)
         * output.withStyle(Description).format("%s %s", name, description) // output in Description style
         * output.println(" text") // output in Info style
         * </pre>
         *
         * @param style The temporary style
         * @return the copy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

        }
    
    
        private void addDefault(StyledTextOutput.Style style, String colorSpec) {
            addDefault(style.name().toLowerCase(Locale.ROOT), colorSpec);
        }
    
        private void addDefault(String style, String color) {
            defaults.put(style, color);
        }
    
        private void addDefault(StyledTextOutput.Style style, StyledTextOutput.Style... styles) {
            String colorSpec = getColorSpecForStyle(styles[0]);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractStyledTextOutputTest.groovy

        }
    
        def canMixInStyleInformation() {
            when:
            output.style(Style.Info).text('info test').style(Style.Normal)
    
            then:
            output.value == '{info}info test{normal}'
        }
    
        def ignoresStyleChangeWhenAlreadyUsingTheGivenStyle() {
            when:
            output.style(Style.Info).text('info test').style(Style.Info)
    
            then:
            output.value == '{info}info test'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiContext.java

        /**
         * Change the ANSI style before executing the specified action. The style is reverted back after the action is executed.
         *
         * @param style the style to use
         * @param action the action to execute on ANSI with the specified style
         * @return the current context
         */
        AnsiContext withStyle(Style style, Action<? super AnsiContext> action);
    
        /**
    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/main/java/org/gradle/internal/logging/events/StyledTextOutputEvent.java

            private final String text;
            private final StyledTextOutput.Style style;
    
            public Span(StyledTextOutput.Style style, String text) {
                this.style = style;
                this.text = text;
            }
    
            public Span(String text) {
                this.style = StyledTextOutput.Style.Normal;
                this.text = text;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/AbstractStyledTextOutput.java

        @Override
        public StyledTextOutput withStyle(Style style) {
            return new StyleOverrideTextOutput(style, this);
        }
    
        @Override
        public StyledTextOutput style(Style style) {
            if (style != this.style) {
                this.style = style;
                doStyleChange(style);
            }
            return this;
        }
    
        public Style getStyle() {
            return style;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top