Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 361 for flavor (0.09 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

            NativePlatform platform,
            BuildType buildType,
            Flavor flavor
        ) {
            if (component instanceof NativeLibrarySpec) {
                createNativeBinary(SharedLibraryBinarySpec.class, binaries, resolver, fileCollectionFactory, namingScheme.withBinaryType("SharedLibrary").withRole("shared", false), platform, buildType, flavor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

                    def distinguishingValues = distinguisher == 'flavor' ? "\n  - Value: 'paid' selects variant: 'bar'\n  - Value: 'free' selects variant: 'foo'" : "\n  - Value: 'bar' selects variant: 'bar'\n  - Value: 'foo' selects variant: 'foo'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/example_test.go

    )
    
    func ExampleNew() {
    	// Start a server to give us cookies.
    	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if cookie, err := r.Cookie("Flavor"); err != nil {
    			http.SetCookie(w, &http.Cookie{Name: "Flavor", Value: "Chocolate Chip"})
    		} else {
    			cookie.Value = "Oatmeal Raisin"
    			http.SetCookie(w, cookie)
    		}
    	}))
    	defer ts.Close()
    
    	u, err := url.Parse(ts.URL)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 03:47:00 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/AbstractPrebuiltLibraryBinary.java

        private final BuildType buildType;
        private final NativePlatform targetPlatform;
        private final Flavor flavor;
        protected final FileCollectionFactory fileCollectionFactory;
    
        public AbstractPrebuiltLibraryBinary(String name, PrebuiltLibrary library, BuildType buildType, NativePlatform targetPlatform, Flavor flavor, FileCollectionFactory fileCollectionFactory) {
            this.name = name;
            this.library = library;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cpp/tests/nativeComponentReport.out

            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractTargetedNativeComponentSpec.java

            Collections.addAll(flavors, flavorSelectors);
        }
    
        @Override
        public void targetBuildTypes(String... buildTypeSelectors) {
            Collections.addAll(buildTypes, buildTypeSelectors);
        }
    
        @Override
        public Set<Flavor> chooseFlavors(Set<? extends Flavor> candidates) {
            return chooseElements(Flavor.class, candidates, flavors);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ArtifactViewAttributesIntegrationTest.groovy

            buildFile << """
                def usage = Attribute.of('usage', String)
                def buildType = Attribute.of('buildType', String)
                def flavor = Attribute.of('flavor', String)
                configurations {
                    conf {
                        attributes {
                            attribute(usage, 'usage-value')
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultFlavor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal;
    
    import org.gradle.nativeplatform.Flavor;
    
    public class DefaultFlavor implements Flavor {
        public static final String DEFAULT = "default";
        private final String name;
    
        public DefaultFlavor(String name) {
            this.name = name;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultFlavorContainer.java

    import org.gradle.nativeplatform.Flavor;
    import org.gradle.nativeplatform.FlavorContainer;
    
    public class DefaultFlavorContainer extends AbstractValidatingNamedDomainObjectContainer<Flavor> implements FlavorContainer {
    
        public DefaultFlavorContainer(Instantiator instantiator, CollectionCallbackActionDecorator collectionCallbackActionDecorator) {
            super(Flavor.class, instantiator, collectionCallbackActionDecorator);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

        public NativeComponentSpec getComponent() {
            return getComponentAs(NativeComponentSpec.class);
        }
    
        @Override
        public Flavor getFlavor() {
            return flavor;
        }
    
        @Override
        public void setFlavor(Flavor flavor) {
            this.flavor = flavor;
        }
    
        @Override
        public NativeToolChain getToolChain() {
            return toolChain;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top