Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for Style (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaData.java

        }
    
        public LinkMetaData.Style getStyle() {
            return style;
        }
    
        public void setStyle(LinkMetaData.Style style) {
            this.style = style;
        }
    
        public void addMethod(MethodMetaData method, LinkMetaData.Style style) {
            methods.put(method.getOverrideSignature(), new MethodLinkMetaData(method.getName(), method.getOverrideSignature(), style));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  5. 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)
  6. docs/en/docs/img/deployment/https/https06.drawio

                    <mxCell id="101" value="&lt;span style=&quot;font-family: &amp;#34;roboto&amp;#34; ; font-size: 24px&quot;&gt;IP:&lt;/span&gt;&lt;br style=&quot;font-family: &amp;#34;roboto&amp;#34;&quot;&gt;&lt;span style=&quot;font-family: &amp;#34;roboto&amp;#34; ; font-size: 24px&quot;&gt;123.124.125.126&lt;/span&gt;" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;strokeWidth=3;" parent="1" vertex="1">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. docs/en/docs/img/deployment/https/https02.drawio

                        <mxGeometry x="270" y="-290" width="240" height="80" as="geometry"/>...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  10. docs/en/docs/img/deployment/https/https.drawio

                    <mxCell id="101" value="&lt;span style=&quot;font-family: &amp;#34;roboto&amp;#34; ; font-size: 24px&quot;&gt;IP:&lt;/span&gt;&lt;br style=&quot;font-family: &amp;#34;roboto&amp;#34;&quot;&gt;&lt;span style=&quot;font-family: &amp;#34;roboto&amp;#34; ; font-size: 24px&quot;&gt;123.124.125.126&lt;/span&gt;" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;strokeWidth=3;" vertex="1" parent="1">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 25.7K bytes
    - Viewed (0)
Back to top