Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 278 for Colors (1.22 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. src/expvar/expvar_test.go

    func TestMapInit(t *testing.T) {
    	RemoveAll()
    	colors := NewMap("bike-shed-colors")
    	colors.Add("red", 1)
    	colors.Add("blue", 1)
    	colors.Add("chartreuse", 1)
    
    	n := 0
    	colors.Do(func(KeyValue) { n++ })
    	if n != 3 {
    		t.Errorf("after three Add calls with distinct keys, Do should invoke f 3 times; got %v", n)
    	}
    
    	colors.Init()
    
    	n = 0
    	colors.Do(func(KeyValue) { n++ })
    	if n != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. scripts/docs.py

        new_index_content = f"{missing_translation_snippet}\n\n{en_index_content}"
        new_index_path.write_text(new_index_content, encoding="utf-8")
        typer.secho(f"Successfully initialized: {new_path}", color=typer.colors.GREEN)
        update_languages()
    
    
    @app.command()
    def build_lang(
        lang: str = typer.Argument(
            ..., callback=lang_callback, autocompletion=complete_existing_lang
        ),
    ) -> None:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

        --link-color: #4A6782;
        --link-color-active: #bb7a2a;
        /* Snippet colors */
        --snippet-background-color: #ebecee;
        --snippet-text-color: var(--block-text-color);
        --snippet-highlight-color: #f7c590;
        /* Border colors for structural elements and user defined tables */
        --border-color: #ededed;
        --table-border-color: #000000;
        /* Search input colors */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            @Override
            public Ansi fg(Color color) {
                return this;
            }
    
            @Override
            public Ansi bg(Color color) {
                return this;
            }
    
            @Override
            public Ansi fgBright(Color color) {
                return this;
            }
    
            @Override
            public Ansi bgBright(Color color) {
                return this;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/types2/decl.go

    	if obj.color() == white && obj.Type() != nil {
    		obj.setColor(black)
    		return
    	}
    
    	switch obj.color() {
    	case white:
    		assert(obj.Type() == nil)
    		// All color values other than white and black are considered grey.
    		// Because black and white are < grey, all values >= grey are grey.
    		// Use those values to encode the object's index into the object path.
    		obj.setColor(grey + color(check.push(obj)))
    		defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top