Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 245 for blues (0.25 sec)

  1. src/image/color/color.go

    package color
    
    // Color can convert itself to alpha-premultiplied 16-bits per channel RGBA.
    // The conversion may be lossy.
    type Color interface {
    	// RGBA returns the alpha-premultiplied red, green, blue and alpha values
    	// for the color. Each value ranges within [0, 0xffff], but is represented
    	// by a uint32 so that multiplying by a blend factor up to 0xffff will not
    	// overflow.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            app2Output.assertOutputContains("components = [project :lib]")
            app2Output.assertOutputContains("artifacts = [lib.blue.txt (project :lib)]")
            app2Output.assertOutputContains("files = [lib.blue.txt]")
    
            and:
            output.count("Transforming") == 1
            output.count("Transforming lib.blue to lib.blue.txt") == 1
    
            when:
            run "resolve"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. src/reflect/example_test.go

    	// Output:
    	// 1 0
    	// 3.14 2.72
    }
    
    func ExampleStructTag() {
    	type S struct {
    		F string `species:"gopher" color:"blue"`
    	}
    
    	s := S{}
    	st := reflect.TypeOf(s)
    	field := st.Field(0)
    	fmt.Println(field.Tag.Get("color"), field.Tag.Get("species"))
    
    	// Output:
    	// blue gopher
    }
    
    func ExampleStructTag_Lookup() {
    	type S struct {
    		F0 string `alias:"field_0"`
    		F1 string `alias:""`
    		F2 string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:04:36 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

          taskFaker.sleep(100.µs)
          log += "red:finishing@${taskFaker.nanoTime}"
        }
        assertThat(taskFaker.executeCallCount).isEqualTo(1)
    
        // Enqueueing the blue task doesn't start a thread because the red one is still starting.
        blueQueue.execute("blue task") {
          log += "blue:starting@${taskFaker.nanoTime}"
          taskFaker.sleep(100.µs)
          log += "blue:finishing@${taskFaker.nanoTime}"
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/strings/replace_test.go

    	)
    
    	// gen2 has multiple old strings with no pairwise common prefix.
    	gen2 := NewReplacer(
    		"roses", "red",
    		"violets", "blue",
    		"sugar", "sweet",
    	)
    	testCases = append(testCases,
    		testCase{gen2, "roses are red, violets are blue...", "red are red, blue are blue..."},
    		testCase{gen2, "", ""},
    	)
    
    	// gen3 has multiple old strings with an overall common prefix.
    	gen3 := NewReplacer(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  6. logo/usage_guidelines.md

    horizontal (also known as landscape format), stacked (which is closer to
    square), and icon (which does not include the name and is square), and 5
    colors (color/black/white/all-blue/white-text) -- so over 20 versions -- in the
    CNCF [artwork](https://github.com/cncf/artwork/tree/master/projects/kubernetes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

            System.properties[customPropertyName] = 'BLUE'
    
            when:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>artifact-one</artifactId>
        <version>version-one</version>
        <name>Test Artifact One</name>
        <properties>
            <activate.profile>BLUE</activate.profile>
        </properties>
        <profiles>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. src/image/png/testdata/pngsuite/ftbbn2c16.sng

    #SNG: from ftbbn2c16.png
    IHDR {
        width: 32; height: 32; bitdepth: 16;
        using color;
    }
    gAMA {1.0000}
    bKGD {red: 0;  green: 0;  blue: 65535;}
    tRNS {
        red: 65535; green: 65535; blue: 65535;
    }
    IMAGE {
        pixels hex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 13.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    const shirtInstance1 = `
    kind: Shirt
    apiVersion: tests.example.com/v1
    metadata:
      name: shirt1
    spec:
      color: blue
      quantity: 2
      size: S
      branded: true
    `
    
    const shirtInstance2 = `
    kind: Shirt
    apiVersion: tests.example.com/v1
    metadata:
      name: shirt2
    spec:
      color: blue
      quantity: 3
      size: M
      branded: false
    `
    
    const shirtInstance3 = `
    kind: Shirt
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AsciidoctorPluginSmokeTest.groovy

            """
    
            file('src/docs/asciidoc/test.adoc') << """
                = Line Break Doc Title
                :hardbreaks:
    
                Rubies are red,
                Topazes are blue.
                """.stripIndent()
    
            when:
            runner('asciidoc').deprecations(AsciidocDeprecations) {
                expectAsciiDocDeprecationWarnings(version)
            }.build()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top