Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,847 for Style (0.06 sec)

  1. maven-jline/src/main/java/org/apache/maven/jline/JLineMessageBuilderFactory.java

            }
    
            @Override
            public MessageBuilder style(String style) {
                if (MessageUtils.isColorEnabled()) {
                    builder.style(resolver.resolve(style));
                }
                return this;
            }
    
            @Override
            public MessageBuilder resetStyle() {
                builder.style(AttributedStyle.DEFAULT);
                return this;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/xcode-task-graph.dot

        cppLibrary_xcodeProject[label="xcodeProject"]
      }
    
      {cppApplication_xcodeProject, cppLibrary_xcodeProject} -> xcode [dir=back, style=dashed]
      xcodeWorkspaceWorkspaceSettings -> xcodeWorkspace -> xcode -> openXcode [dir=back]
    
      xcodeWorkspace[label=<xcodeWorkspace>]
    
      xcodeWorkspace -> cleanXcode [style=invis]
      {rank=same xcodeWorkspace cleanXcode}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/swift-library-variant-task-graph.dot

      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style="dashed,filled", fillcolor=grey]
      rankdir=LR
    
      compileVariantSwift -> {linkVariant, createVariant} -> assembleVariant [dir=back, style=dashed]
      compileVariantSwift[label=<compile<i>Variant</i>Swift>]
      linkVariant[label=<link<i>Variant</i>>]
      createVariant[label=<create<i>Variant</i>>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/cpp-library-variant-task-graph.dot

      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style="dashed,filled", fillcolor=grey]
      rankdir=LR
    
      compileVariantCpp -> {linkVariant, createVariant} -> assembleVariant [dir=back, style=dashed]
      compileVariantCpp[label=<compile<i>Variant</i>Cpp>]
      linkVariant[label=<link<i>Variant</i>>]
      createVariant[label=<create<i>Variant</i>>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultRedrawableLabelTest.groovy

            then:
            1 * ansi.a("text")
            0 * ansi._
        }
    
        def "setting styled text (emphasis only) to the label will change the style and write the text to ansi"() {
            given:
            label.text = new StyledTextOutputEvent.Span(StyledTextOutput.Style.Header, "text")
    
            when:
            redraw()
    
            then:
            1 * ansi.a(Ansi.Attribute.INTENSITY_BOLD)
            1 * ansi.a('text')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/code_check_changed_files.bats

            bash -c 'clang-format-12 --style=Google {} | git diff --no-index {} -' \
            | tee $BATS_TEST_TMPDIR/needs_help.txt
        echo "You can use clang-format --style=Google -i <file> to apply changes to a file."
        [[ ! -s $BATS_TEST_TMPDIR/needs_help.txt ]]
    }
    
    # Note: this is excluded on the full code base, since any submitted code must
    # have passed Google's internal style guidelines.
    @test "Check pylint for Python files" {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/html.go

        var e = document.getElementById(id);
        if (e.style.display == 'block') {
            e.style.display = 'none';
        } else {
            e.style.display = 'block';
        }
    }
    
    function hideBlock(el) {
        var es = el.parentNode.parentNode.getElementsByClassName("ssa-value-list");
        if (es.length===0)
            return;
        var e = es[0];
        if (e.style.display === 'block' || e.style.display === '') {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/swift-shared-library-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugSwift -> linkDebug -> assembleDebug -> assemble -> build [dir=back]
      check -> build [dir=back]
      compileReleaseSwift -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugSwift -> compileReleaseSwift -> clean [style=invis]
      {rank=same compileDebugSwift compileReleaseSwift clean}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/IncompatibleRequestedConfigurationFailureDescriber.java

            TreeFormatter formatter = new TreeFormatter();
            String candidateName = assessedCandidate.getDisplayName();
            formatter.node("Configuration '" + candidateName + "' in " + style(StyledTextOutput.Style.Info, failure.getRequestedName()) + " does not match the consumer attributes");
            formatUnselectable(assessedCandidate, formatter, describer);
            return formatter.toString();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        chart.style.height = h+'px';
        chart.replaceChildren(...divs);
      }
    
      function drawBox(xscale, box) {
        const srcIndex = box.src;
        const src = stacks.Sources[srcIndex];
    
        function makeRect(cl, x, y, w, h) {
          const r = document.createElement('div');
          r.style.left = x+'px';
          r.style.top = y+'px';
          r.style.width = w+'px';
          r.style.height = h+'px';
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top