Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for Colors (0.31 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

            }
        }
    
        private static class CompositeColor implements Color {
            private final List<Color> colors;
    
            public CompositeColor(List<Color> colors) {
                this.colors = colors;
            }
    
            @Override
            public void on(Ansi ansi) {
                for (Color color : colors) {
                    color.on(ansi);
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. internal/color/color.go

    			return color.New(color.Bold).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    	RedBold = func() func(a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgRed, color.Bold).SprintFunc()
    		}
    		return fmt.Sprint
    	}()
    
    	RedBoldf = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgRed, color.Bold).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. maven-slf4j-provider/pom.xml

      </parent>
    
      <artifactId>maven-slf4j-provider</artifactId>
    
      <name>Maven SLF4J Simple Provider</name>
      <description>Maven SLF4J provider based on SLF4J's simple provider, extended to support Maven styled colors
        for levels and stacktrace rendering.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    	// 4,6,9,10, the Places entry for X will contain [S,4].
    	Places []StackSlot
    
    	// Combined count of stacks where this source is the leaf.
    	Self int64
    
    	// Color number to use for this source.
    	// Colors with high numbers than supported may be treated as zero.
    	Color int
    }
    
    // StackSlot identifies a particular StackSlot.
    type StackSlot struct {
    	Stack int // Index in StackSet.Stacks
    	Pos   int // Index in Stack.Sources
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. hack/ginkgo-e2e.sh

    CLOUD_CONFIG=${CLOUD_CONFIG:-""}
    
    
    # If 'y', Ginkgo's reporter will not use escape sequence to color output.
    #
    # Since Kubernetes 1.25, the default is to use colors only when connected to
    # a terminal. That is the right choice for all Prow jobs (Spyglass doesn't
    # render them properly).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. architecture/standards/0001-use-architectural-decision-records.md

    # ADR-000X - Title
    
    ## Date
    
    20YY-MM-DD
    
    ## Context
    
    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
    aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
    Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/EnumMultisetTest.java

        assertEquals(2, ms.count(Color.RED));
      }
    
      public void testCollectionCreate() {
        Multiset<Color> ms = EnumMultiset.create(asList(Color.RED, Color.YELLOW, Color.RED));
        assertEquals(0, ms.count(Color.BLUE));
        assertEquals(1, ms.count(Color.YELLOW));
        assertEquals(2, ms.count(Color.RED));
      }
    
      public void testIllegalCreate() {
        Collection<Color> empty = EnumSet.noneOf(Color.class);
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 16:35:21 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/console/AbstractConsoleGroupedTaskFunctionalTest.groovy

                    styled += "{bold-off}"
                }
                if (color != null && color != previousColor) {
                    styled += "{foreground-color " + color.name().toLowerCase() + "}"
                }
                if (color == null && previousColor != null) {
                    styled += "{foreground-color default}"
                }
                this.styledOutput = styled
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. docs/en/docs/fastapi-cli.md

     ╭─ <font color="#8AE234"><b>Importable FastAPI app</b></font> ─╮
     │                          │
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. docs/pt/docs/fastapi-cli.md

     ╭─ <font color="#8AE234"><b>Importable FastAPI app</b></font> ─╮
     │                          │
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top