Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 115 for blues (0.31 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/VariantAwareDependencyResolutionTestFixture.groovy

                        resolver {
                            attributes.attribute(color, 'blue')
                            extendsFrom implementation
                            assert canBeResolved
                            canBeConsumed = false
                        }
                        outgoing {
                            attributes.attribute(color, 'blue')
                            extendsFrom implementation
                            canBeResolved = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

            given:
            repository {
                'org:test:1.0' {
                    attribute('color', 'red')
                }
                'org:test:1.1' {
                    attribute('color', 'blue')
                }
            }
    
            buildFile << """
                def color = Attribute.of("color", String)
    
                configurations {
                    conf.attributes.attribute(color, 'green')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. .idea/fileColors.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project version="4">
      <component name="SharedFileColors">
        <fileColor scope="TestData" color="Blue" />
        <fileColor scope="IDE" color="Yellow" />
      </component>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Sep 21 07:11:21 UTC 2023
    - 217 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/TransformLoggingIntegrationTest.groovy

                            from.attribute(artifactType, "green")
                            to.attribute(artifactType, "blue")
                        }
                    }
                    configurations {
                        compile {
                            attributes.attribute usage, 'api'
                        }
                    }
                    ["blue", "green"].each { type ->
                        tasks.register("resolve\${type.capitalize()}") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. mkdocs.yml

      palette:
        - media: "(prefers-color-scheme: light)"
          scheme: default
          primary: teal
          accent: blue
          toggle:
            icon: octicons/sun-24
            name: "Switch to Dark Mode"
        - media: "(prefers-color-scheme: dark)"
          scheme: slate
          primary: teal
          accent: blue
          toggle:
            icon: octicons/moon-24
            name: "Switch to Light Mode"
      features:
      - navigation.tabs
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                    void execute(CompatibilityCheckDetails<Thing> details) {
                        if (details.consumerValue.name == 'paid' && details.producerValue.name == 'blue') {
                            details.compatible()
                        } else if (details.producerValue.name == 'red') {
                            details.compatible()
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  7. docs/en/data/sponsors_badge.yml

    logins:
      - jina-ai
      - deta
      - investsuite
      - mikeckennedy
      - deepset-ai
      - cryptapi
      - xoflare
      - DropbaseHQ
      - VincentParedes
      - BLUE-DEVIL1134
      - ObliviousAI
      - Doist
      - nihpo
      - armand-sauzay
      - databento-bot
      - databento
      - nanram22
      - Flint-company
      - porter-dev
      - fern-api
      - ndimares
      - svixhq
      - Alek99
      - codacy
      - zanfaruqui
      - scalar
      - bump-sh
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jan 31 22:13:52 UTC 2024
    - 415 bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

            variants.size() == 4
            variants[0].name == "apiElements"
            variants[0].attributes['color'] == 'blue'
            variants[1].name == "runtimeElements"
            variants[1].attributes['color'] == 'blue'
            variants[2].name == "alternateApiElements"
            variants[2].attributes['color'] == 'green'
            variants[3].name == "alternateRuntimeElements"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top