Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 270 for Colors (0.13 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // and logs them as failures.
    GTEST_DECLARE_bool_(catch_exceptions);
    
    // This flag enables using colors in terminal output. Available values are
    // "yes" to enable colors, "no" (disable colors), or "auto" (the default)
    // to let Google Test decide.
    GTEST_DECLARE_string_(color);
    
    // This flag sets up the filter to select by name using a glob pattern
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. hack/lib/util.sh

      while IFS= read -r "$1[__read_array_i++]"; do :; done
      if ! eval "[[ \${$1[--__read_array_i]} ]]"; then
        unset "$1[__read_array_i]" # ensures last element isn't empty
      fi
    }
    
    # Some useful colors.
    if [[ -z "${color_start-}" ]]; then
      declare -r color_start="\033["
      declare -r color_red="${color_start}0;31m"
      declare -r color_yellow="${color_start}0;33m"
      declare -r color_green="${color_start}0;32m"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. docs/en/docs/async.md

    For example:
    
    * **Audio** or **image processing**.
    * **Computer vision**: an image is composed of millions of pixels, each pixel has 3 values / colors, processing that normally requires computing something on those pixels, all at the same time.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/image/draw/draw.go

    // calling Set, but it can avoid allocations from converting concrete color
    // types to the [color.Color] interface type.
    type RGBA64Image interface {
    	image.RGBA64Image
    	Set(x, y int, c color.Color)
    	SetRGBA64(x, y int, c color.RGBA64)
    }
    
    // Quantizer produces a palette for an image.
    type Quantizer interface {
    	// Quantize appends up to cap(p) - len(p) colors to p and returns the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. 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)
  6. src/image/gif/writer_test.go

    	const w, h = 5, 5
    	pals := []color.Palette{{
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    		color.RGBA{0x01, 0x00, 0x00, 0xff},
    		color.RGBA{0x02, 0x00, 0x00, 0xff},
    	}, {
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    		color.RGBA{0x00, 0x01, 0x00, 0xff},
    	}, {
    		color.RGBA{0x00, 0x00, 0x03, 0xff},
    		color.RGBA{0x00, 0x00, 0x02, 0xff},
    		color.RGBA{0x00, 0x00, 0x01, 0xff},
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    	}, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. docs/logging/README.md

    mc admin service restart myminio
    ```
    
    NOTE: `http://endpoint:port/path` is a placeholder value to indicate the URL format, please change this accordingly as per your configuration.
    
    MinIO also honors environment variable for HTTP target logging as shown below, this setting will override the endpoint settings in the MinIO server config.
    
    ```
    export MINIO_LOGGER_WEBHOOK_ENABLE_target1="on"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/documentation/docs/src/docs/css/manual.css

    	--black-color: #000;
    	--white-color: #fff;
    	--text-color: #02303A;
    	--title-color: #02303A;
    	--header-color: rgba(0, 0, 0, 0.85);
    	--footer-color: rgba(0, 0, 0, 0.8);
    	--code-color: #f7f7f8;
    	--code-text-color: rgba(0, 0, 0, 0.9);
    	--code-link-color: #021274;
    	--num-color: rgba(0, 0, 0, 0.8);
    	--nav-color: #f8f8f7;
    	--table-color: #f7f8f7;
    	--box-shadow-color: rgba(0, 0, 0, .15);
    	--top-header-color: #fff;
    	--footer-white-color: #fff;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top