Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,952 for Style (0.08 sec)

  1. samples/ambient-argo/documentation/argo-reference-arch.dot

    digraph G {
      rankdir=LR
      graph[fontname="Arial"]
      node [fontname = "Arial"];
      subgraph cluster_0 {
        style=filled;
        color=lightgrey;
        node [style=filled,color=white,class=application];
        meta[label="meta-application.yaml"]
        app[label="application/application.yaml"]
        meta -> app
        istio[label="istio/*"]
        meta -> istio
        cni[label="istio/cni.yaml"]
        istio -> cni
        cpt[label="istio/control-plane-appset.yaml"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/visual-studio-task-graph.dot

      {nameVisualStudioProject, nameVisualStudioFilters} -> visualStudio [dir=back, style=dashed]
      nameVisualStudioSolution -> visualStudio -> openVisualStudio [dir=back]
    
      nameVisualStudioSolution[label=<<i>projectName</i>VisualStudioSolution>]
    
      nameVisualStudioSolution -> cleanVisualStudio [style=invis]
      {rank=same nameVisualStudioSolution cleanVisualStudio}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/StyledTextOutputBackedRenderer.java

            public OutputEventTextOutputImpl(StyledTextOutput textOutput) {
                this.textOutput = textOutput;
            }
    
            @Override
            protected void doStyleChange(Style style) {
                textOutput.style(style);
            }
    
            @Override
            protected void doLineText(CharSequence text) {
                textOutput.text(text);
                atEndOfLine = false;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/format/PrettyPrefixedLogHeaderFormatter.java

            StyledTextOutput.Style messageStyle = failed ? StyledTextOutput.Style.FailureHeader : StyledTextOutput.Style.Header;
            return new StyledTextOutputEvent.Span(messageStyle, "> " + message);
        }
    
        private StyledTextOutputEvent.Span status(String status, boolean failed) {
            StyledTextOutput.Style statusStyle = failed ? StyledTextOutput.Style.Failure : StyledTextOutput.Style.Info;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/StyledAttributeDescriber.java

        public String describeAttributeSet(Map<Attribute<?>, ?> attributes) {
            return StyledException.style(StyledTextOutput.Style.Header, delegate.describeAttributeSet(attributes));
        }
    
        @Override
        public String describeMissingAttribute(Attribute<?> attribute, Object consumerValue) {
            return StyledException.style(StyledTextOutput.Style.Info, delegate.describeMissingAttribute(attribute, consumerValue));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:37:51 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/java-test-configurations.dot

        testRuntimeOnly -> runtimeOnly
        testRuntimeClasspath -> {testRuntimeOnly testImplementation}
    
        /* tasks */
        test -> testRuntimeClasspath [style=dashed label="uses"]
        compileTestJava -> testCompileClasspath [style=dashed label="uses"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 782 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileTestCpp -> linkTest -> installTest -> runTest -> test -> check -> build [dir=back]
      compileDebugCpp -> linkTest [dir=back]
      assemble -> build [dir=back]
      tripleDots -> assemble [dir=back]
      clean
    
      compileDebugCpp [style="dashed,filled", fillcolor=grey]
      tripleDots [style="dashed,filled", fillcolor=grey, label="..."]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/StreamingStyledTextOutputTest.groovy

        def ignoresStyleInformation() {
            StandardOutputListener listener = Mock()
            StreamingStyledTextOutput output = new StreamingStyledTextOutput(listener)
    
            when:
            output.style(Style.Error).text('text').style(Style.Normal)
    
            then:
            1 * listener.onOutput('text')
        }
    
        def closeDoesNothingWhenForwardingToANonCloseable() {
            Appendable appendable = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/cpp-application-configurations.dot

      subgraph central {
        node[style=filled, fillcolor=white]
        implementation -> mainVariantImplementation [style=invis, weight=1000]
        mainVariantImplementation -> implementation [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.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultColorMapTest.groovy

            1 * ansi.a(Attribute.ITALIC_OFF)
    
            when: 'A Style is overridden with a compound property'
            color = map.getColourFor(Style.Error)
            color.on(ansi)
    
            then: 'Both properties are applied'
            1 * ansi.fg(Color.RED)
            1 * ansi.a(Attribute.INTENSITY_BOLD)
    
            when: 'That style is disabled'
            color.off(ansi)
    
            then: 'Both properties are suppressed'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top