Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for Style (0.05 sec)

  1. docs/en/docs/img/deployment/https/https03.drawio

                    <mxCell id="2" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;" parent="1" vertex="1">
                        <mxGeometry x="450" y="-50" width="820" height="970" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/img/swift-sourcesets-compilation.dot

        variantImplementation -> modules
    
        swiftCompileVariant[style=dashed, label=<swiftCompile<i>Variant</i><br/>(configuration)>]
        implementation[style=dashed, label="implementation\n(configuration)"]
        variantImplementation[style=dashed, label=<main<i>Variant</i>Implementation<br/>(configuration)>]
      }
    
      subgraph secondLine {
        modules[style="rounded,filled", fillcolor="#bfffbf", label="Compilation modules"]
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/xctest-configurations.dot

      subgraph central {
        node[style=filled, fillcolor=white]
        implementation -> testVariantExecutableImplementation [style=invis, weight=1000]
        testVariantExecutableImplementation -> implementation [headport=s, tailport=n]
    
        testVariantExecutableImplementation[label=<test<i>Variant</i>ExecutableImplementation>]
        implementation[style=dashed]
      }
    
      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
    - 2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/cpp-sourcesets-compilation.dot

        variantImplementation -> includeRoot
    
        cppCompileVariant[style=dashed, label=<cppCompile<i>Variant</i><br/>(configuration)>]
        implementation[style=dashed, label="implementation\n(configuration)"]
        variantImplementation[style=dashed, label=<main<i>Variant</i>Implementation<br/>(configuration)>]
      }
    
      subgraph secondLine {
        includeRoot[style="rounded,filled", fillcolor="#bfffbf", label="Compilation include roots"]
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/serializer/StyledTextOutputEventSerializerTest.groovy

            result.category == CATEGORY
            result.logLevel == LogLevel.LIFECYCLE
            result.spans.size() == 2
            result.spans[0].style == StyledTextOutput.Style.Description
            result.spans[0].text == "description"
            result.spans[1].style == StyledTextOutput.Style.Error
            result.spans[1].text == "error"
            result.buildOperationId == new OperationIdentifier(42L)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/testFixtures/groovy/org/gradle/internal/logging/text/TestStyledTextOutput.groovy

    import org.gradle.internal.logging.text.StyledTextOutput.Style
    
    class TestStyledTextOutput extends AbstractStyledTextOutput {
        StringBuilder result = new StringBuilder()
    
        @Override
        String toString() {
            result.toString()
        }
    
        TestStyledTextOutput ignoreStyle() {
            return new TestStyledTextOutput() {
                @Override protected void doStyleChange(Style style) {
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top