Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 220 for Colors (0.1 sec)

  1. src/image/draw/draw_test.go

    	Rect   image.Rectangle
    }
    
    func (p *slowestRGBA) ColorModel() color.Model { return color.RGBAModel }
    
    func (p *slowestRGBA) Bounds() image.Rectangle { return p.Rect }
    
    func (p *slowestRGBA) At(x, y int) color.Color {
    	return p.RGBA64At(x, y)
    }
    
    func (p *slowestRGBA) RGBA64At(x, y int) color.RGBA64 {
    	if !(image.Point{x, y}.In(p.Rect)) {
    		return color.RGBA64{}
    	}
    	i := p.PixOffset(x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K 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. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    Runtime classpath for running tests. Used by task `test`.
    
    The following diagrams show the dependency configurations for the _main_ and _test_ source sets respectively. You can use this legend to interpret the colors:
    
     * Green background — you can declare dependencies against the configuration.
     * Blue-gray background — the configuration is for consumption by tasks, not for you to declare dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K 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/fr/docs/tutorial/first-steps.md

    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    <span style="color: green;">INFO</span>:     Started reloader process [28720]
    <span style="color: green;">INFO</span>:     Started server process [28722]
    <span style="color: green;">INFO</span>:     Waiting for application startup.
    <span style="color: green;">INFO</span>:     Application startup complete.
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. 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)
  9. android/guava/src/com/google/common/net/HostAndPort.java

     *   <li>2001:db8::1 - Use {@link #requireBracketsForIPv6()} to prohibit this
     * </ul>
     *
     * <p>Note that this is not an exhaustive list, because these methods are only concerned with
     * brackets, colons, and port numbers. Full validation of the host field (if desired) is the
     * caller's responsibility.
     *
     * @author Paul Marks
     * @since 10.0
     */
    @Immutable
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

                inputFiles: [(COLOR): { it instanceof Color && it.declaredBy() == "method" }]
            ], [
                strict(conflictingAnnotationsMessage { property('inputFiles').inConflict('Color', 'Color').includeLink().kind('color annotations declared') })
            ]
        }
    
        @SuppressWarnings("unused")
        class WithBothFieldAndGetterAnnotation {
            @Color(declaredBy = "field")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top