Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for flavor (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

      - Variant 'bar':
          - Incompatible because this component declares attribute 'buildType' with value 'release', attribute 'flavor' with value 'paid' and the consumer needed attribute 'buildType' with value 'debug', attribute 'flavor' with value 'free'
      - Variant 'foo' declares attribute 'flavor' with value 'free':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            conf.attributes.getAttribute(flavor).name == 'free'
            conf.attributes.getAttribute(buildType).name == 'release'
        }
    
        def "cannot define two attributes with the same name but different types"() {
            def conf = conf()
            def flavor = Attribute.of('flavor', Flavor)
    
            when:
            conf.getAttributes().attribute(flavor, new FlavorImpl(name: 'free'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            taskTypeLogsInputFileCollectionContent()
    
            buildFile << """
                def flavor = Attribute.of('flavor', String)
    
                allprojects {
                    configurations {
                        outgoing.outgoing.variants {
                            one {
                                attributes.attribute(flavor, 'bland')
                                artifact(producer.output)
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[native_binaries:flavor]]
    === Flavor
    
    Each component can have a set of named `flavors`, and a separate binary variant can be produced for each flavor. While the `build type` and `target platform` variant dimensions have a defined meaning in Gradle, each project is free to define any number of flavors and apply meaning to them in any way.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                        byConstraint()
                        byConflictResolution("between versions 1.1 and 1.0")
                    }
                }
            }
        }
    
        // We only need to test one flavor
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy_test.go

    		w.Header().Set("Upgrade", "foo")
    		w.Header().Set(fakeHopHeader, "foo")
    		w.Header().Add("X-Multi-Value", "foo")
    		w.Header().Add("X-Multi-Value", "bar")
    		http.SetCookie(w, &http.Cookie{Name: "flavor", Value: "chocolateChip"})
    		w.WriteHeader(backendStatus)
    		w.Write([]byte(backendResponse))
    		w.Header().Set("X-Trailer", "trailer_value")
    		w.Header().Set(http.TrailerPrefix+"X-Unannounced-Trailer", "unannounced_trailer_value")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    				// curl -H "Metadata-Flavor: Google" 169.254.169.254/computeMetadata/v1/instance/service-accounts/default/identity
    				opts := echo.CallOptions{
    					Address: "169.254.169.254",
    					Port:    echo.Port{ServicePort: 80},
    					Scheme:  scheme.HTTP,
    					HTTP: echo.HTTP{
    						// TODO: detect which platform?
    						Headers: headers.New().With("Metadata-Flavor", "Google").Build(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    function Get_IpAliasRange {
      $url = ("http://${GCE_METADATA_SERVER}/computeMetadata/v1/instance/" +
              "network-interfaces/0/ip-aliases/0")
      $client = New-Object Net.WebClient
      $client.Headers.Add('Metadata-Flavor', 'Google')
      return ($client.DownloadString($url)).Trim()
    }
    
    # Retrieves the pod CIDR and sets it in $env:POD_CIDR.
    function Set-PodCidr {
      while($true) {
        $pod_cidr = Get_IpAliasRange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. tensorflow/BUILD

        values = {
            "crosstool_top": "//external:android/crosstool",
            "cpu": "mips64",
        },
        visibility = ["//visibility:public"],
    )
    
    # TODO(jakeharmon8): Remove in favor of TSL version
    config_setting(
        name = "windows",
        # Internal builds query the target OS.
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:windows"],
            [],
        ),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  10. .bazelrc

    #     nonccl:       Disable nccl support.
    #
    #
    # Remote build execution options (only configured to work with TF team projects for now.)
    #     rbe_base:  General RBE options shared by all flavors.
    #     rbe_linux: General RBE options used on all linux builds.
    #     rbe_win_base:   General RBE options used on all Windows builds. Not to be used standalone.
    #     rbe_win_clang:  Options specific to compiling using Clang.
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top