Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for bgBright (0.14 sec)

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

        public Ansi bgBright(Color color) {
            attributeOptions.add(color.bgBright());
            return this;
        }
    
        public Ansi bgBrightCyan() {
            return this.bgBright(Color.CYAN);
        }
    
        public Ansi bgBrightDefault() {
            return this.bgBright(Color.DEFAULT);
        }
    
        public Ansi bgBrightGreen() {
            return this.bgBright(Color.GREEN);
        }
    
        public Ansi bgBrightMagenta() {
    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. pkg/kubelet/cm/helpers_linux.go

    	for _, mount := range allCgroups {
    		// BEFORE kubelet used a random mount point per cgroups subsystem;
    		// NOW    more deterministic: kubelet use mount point with shortest path;
    		// FUTURE is bright with clear expectation determined in doc.
    		// ref. issue: https://github.com/kubernetes/kubernetes/issues/95488
    
    		for _, subsystem := range mount.Subsystems {
    			previous := mountPoints[subsystem]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    the Sines are as 11 to 17. And if this thickness be doubled, it transmits the same bright Light of the second Ring; if tripled, it transmits that of the third, and so on; the bright yellow Light in all these cases being in its Fits of Transmission. And therefore if its thickness be multiplied 34386 times, so as to become 1/4 of an Inch, it transmits the same bright Light of the 34386th Ring. Suppose this be the bright yellow Light transmitted perpendicularly from the reflecting convex side of the Glass...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  5. src/testdata/Isaac.Newton-Opticks.txt

    transmits the same bright Light of the second Ring; if tripled, it
    transmits that of the third, and so on; the bright yellow Light in all
    these cases being in its Fits of Transmission. And therefore if its
    thickness be multiplied 34386 times, so as to become 1/4 of an Inch, it
    transmits the same bright Light of the 34386th Ring. Suppose this be the
    bright yellow Light transmitted perpendicularly from the reflecting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    passage, not much larger than a rat-hole:  she knelt down and
    looked along the passage into the loveliest garden you ever saw.
    How she longed to get out of that dark hall, and wander about
    among those beds of bright flowers and those cool fountains, but
    she could not even get her head though the doorway; `and even if
    my head would go through,' thought poor Alice, `it would be of
    very little use without my shoulders.  Oh, how I wish
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    passage, not much larger than a rat-hole:  she knelt down and
    looked along the passage into the loveliest garden you ever saw.
    How she longed to get out of that dark hall, and wander about
    among those beds of bright flowers and those cool fountains, but
    she could not even get her head though the doorway; `and even if
    my head would go through,' thought poor Alice, `it would be of
    very little use without my shoulders.  Oh, how I wish
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    		// and passing around context is finicky, so don't bother for now.
    
    		bRight := s.f.NewBlock(ssa.BlockPlain)
    		bResult := s.f.NewBlock(ssa.BlockPlain)
    		if n.Op() == ir.OANDAND {
    			b.AddEdgeTo(bRight)
    			b.AddEdgeTo(bResult)
    		} else if n.Op() == ir.OOROR {
    			b.AddEdgeTo(bResult)
    			b.AddEdgeTo(bRight)
    		}
    
    		s.startBlock(bRight)
    		er := s.expr(n.Y)
    		s.vars[n] = er
    
    		b = s.endBlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top