Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fgBright (0.14 sec)

  1. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

        }
    
        public Ansi fgBright(Color color) {
            attributeOptions.add(color.fgBright());
            return this;
        }
    
        public Ansi fgBrightBlack() {
            return this.fgBright(Color.BLACK);
        }
    
        public Ansi fgBrightBlue() {
            return this.fgBright(Color.BLUE);
        }
    
        public Ansi fgBrightCyan() {
            return this.fgBright(Color.CYAN);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

            public BrightForegroundColor(Ansi.Color ansiColor) {
                this.ansiColor = ansiColor;
            }
    
            @Override
            public void on(Ansi ansi) {
                ansi.fgBright(ansiColor);
            }
    
            @Override
            public void off(Ansi ansi) {
                ansi.fg(DEFAULT);
            }
        }
    
        private static class ForegroundColor implements Color {
    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. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    began again:  `Ou est ma chatte?' which was the first sentence in
    her French lesson-book.  The Mouse gave a sudden leap out of the
    water, and seemed to quiver all over with fright.  `Oh, I beg
    your pardon!' cried Alice hastily, afraid that she had hurt the
    poor animal's feelings.  `I quite forgot you didn't like cats.'
    
      `Not like cats!' cried the Mouse, in a shrill, passionate
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    began again:  `Ou est ma chatte?' which was the first sentence in
    her French lesson-book.  The Mouse gave a sudden leap out of the
    water, and seemed to quiver all over with fright.  `Oh, I beg
    your pardon!' cried Alice hastily, afraid that she had hurt the
    poor animal's feelings.  `I quite forgot you didn't like cats.'
    
      `Not like cats!' cried the Mouse, in a shrill, passionate
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top