Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 89 for Colours (0.11 sec)

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

    public class Ansi implements Appendable {
    
        private static final char FIRST_ESC_CHAR = 27;
        private static final char SECOND_ESC_CHAR = '[';
    
        /**
         * <a href="https://en.wikipedia.org/wiki/ANSI_escape_code#Colors">ANSI 8 colors</a> for fluent API
         */
        public enum Color {
            BLACK(0, "BLACK"),
            RED(1, "RED"),
            GREEN(2, "GREEN"),
            YELLOW(3, "YELLOW"),
            BLUE(4, "BLUE"),
    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. common/config/.golangci.yml

        local-prefixes: istio.io/
      misspell:
        # Correct spellings using locale preferences for US or UK.
        # Default is to use a neutral variety of English.
        # Setting locale to US will correct the British spelling of 'colour' to 'color'.
        locale: US
        ignore-words:
          - cancelled
      lll:
        # max line length, lines longer will be reported. Default is 120.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/image/png/writer_test.go

    			c0 := m0.At(x, y)
    			c1 := m1.At(x+dx, y+dy)
    			r0, g0, b0, a0 := c0.RGBA()
    			r1, g1, b1, a1 := c1.RGBA()
    			if r0 != r1 || g0 != g1 || b0 != b1 || a0 != a1 {
    				return fmt.Errorf("colors differ at (%d, %d): %T%v vs %T%v", x, y, c0, c0, c1, c1)
    			}
    		}
    	}
    	return nil
    }
    
    func encodeDecode(m image.Image) (image.Image, error) {
    	var b bytes.Buffer
    	err := Encode(&b, m)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 14 08:14:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            result.assertTasksNotSkipped(":compileJava", ":classes", ":jar", ":startScripts", ":distTar", ":distZip", ":assemble", ":build")
            classFile.isFile()
            jarFile.isFile()
        }
    
        def "jar manifest honours build logic inputs"() {
            given:
            buildFile << """
                plugins {
                    id 'java'
                }
    
                jar {
                    manifest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/image/image_test.go

    			tc.C = color.RGBA64{0x7FFF, 0x3FFF, 0x0000, 0x7FFF}
    
    		case *YCbCr:
    			memset(tc.Y, 0x77)
    			memset(tc.Cb, 0x88)
    			memset(tc.Cr, 0x99)
    
    		case Rectangle:
    			// No-op. Rectangle pixels' colors are immutable. They're always
    			// color.Opaque.
    
    		default:
    			t.Errorf("could not initialize pixels for %T", tc)
    			continue
    		}
    
    		// Check that RGBA64At(x, y) is equivalent to At(x, y).RGBA().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 30 02:00:49 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

                    project(":buildB:b1", "org.test:b1:2.0") {
                        project(":buildB:b1:b11", "org.test:b11:2.0")
                    }
                }
            }
        }
    
        def "honours excludes defined in substituted subproject dependency that has transitive dependencies"() {
            given:
            def transitive1 = mavenRepo.module("org.test", "transitive1").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/decl.go

    		}()
    	}
    
    	// Checking the declaration of obj means inferring its type
    	// (and possibly its value, for constants).
    	// An object's type (and thus the object) may be in one of
    	// three states which are expressed by colors:
    	//
    	// - an object whose type is not yet known is painted white (initial color)
    	// - an object whose type is in the process of being inferred is painted grey
    	// - an object whose type is fully inferred is painted black
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. src/go/types/decl.go

    		}()
    	}
    
    	// Checking the declaration of obj means inferring its type
    	// (and possibly its value, for constants).
    	// An object's type (and thus the object) may be in one of
    	// three states which are expressed by colors:
    	//
    	// - an object whose type is not yet known is painted white (initial color)
    	// - an object whose type is in the process of being inferred is painted grey
    	// - an object whose type is fully inferred is painted black
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. src/image/gif/writer.go

    				return
    			}
    		}
    	}
    	lzww.Close() // flush to bw
    	bw.close()   // flush to e.w
    }
    
    // Options are the encoding parameters.
    type Options struct {
    	// NumColors is the maximum number of colors used in the image.
    	// It ranges from 1 to 256.
    	NumColors int
    
    	// Quantizer is used to produce a palette with size NumColors.
    	// palette.Plan9 is used in place of a nil Quantizer.
    	Quantizer draw.Quantizer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/image/png/writer.go

    	}
    	pr := e.pr
    
    	gray, _ := m.(*image.Gray)
    	rgba, _ := m.(*image.RGBA)
    	paletted, _ := m.(*image.Paletted)
    	nrgba, _ := m.(*image.NRGBA)
    
    	for y := b.Min.Y; y < b.Max.Y; y++ {
    		// Convert from colors to bytes.
    		i := 1
    		switch cb {
    		case cbG8:
    			if gray != nil {
    				offset := (y - b.Min.Y) * gray.Stride
    				copy(cr[0][1:], gray.Pix[offset:offset+b.Dx()])
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top