Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 169 for flavor (0.17 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinary.java

        private File sharedLibraryLinkFile;
    
        public DefaultPrebuiltSharedLibraryBinary(String name, PrebuiltLibrary library, BuildType buildType, NativePlatform targetPlatform, Flavor flavor, FileCollectionFactory fileCollectionFactory) {
            super(name, library, buildType, targetPlatform, flavor, fileCollectionFactory);
        }
    
        @Override
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/components/DiagnosticsComponentReportIntegrationTest.groovy

            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/nativeLib/shared/libnativeLib.dylib
        Static library 'nativeLib:staticLibrary'
            build using task: :nativeLibStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 16 21:36:13 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/TargetedNativeComponentInternal.java

    import org.gradle.nativeplatform.Flavor;
    import org.gradle.nativeplatform.TargetedNativeComponent;
    import org.gradle.platform.base.internal.PlatformAwareComponentSpecInternal;
    
    import java.util.Set;
    
    public interface TargetedNativeComponentInternal extends TargetedNativeComponent, PlatformAwareComponentSpecInternal {
        Set<Flavor> chooseFlavors(Set<? extends Flavor> candidates);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. README.md

    is widely used on most Java projects within Google, and widely used by many
    other companies as well.
    
    
    
    Guava comes in two flavors:
    
    *   The JRE flavor requires JDK 1.8 or higher.
    *   If you need support for Android, use
        [the Android flavor](https://github.com/google/guava/wiki/Android). You can
        find the Android Guava source in the [`android` directory].
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AttributeValuesIntegrationTest.groovy

            succeeds()
    
            where:
            type       | value
            "Integer"  | "123"
            "Number"   | "123"
            "Object"   | "123"
            "List"     | "['string']"
            "Flavor"   | "objects.named(Flavor, 'abc')"
            "Named"    | "objects.named(Named, 'abc')"
            "Number[]" | "[1, 1.2] as Number[]"
        }
    
        def "attribute value is isolated from original value"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. pkg/test/fakes/gce_metadata_server/main.go

    		log.Println("request for: " + r.URL.Path)
    		w.Header().Add("Server", "Metadata Server for VM (Fake)")
    		w.Header().Add("Metadata-Flavor", "Google")
    
    		flavor := r.Header.Get("Metadata-Flavor")
    		if flavor == "" && r.RequestURI != "/" {
    			http.Error(w, http.StatusText(http.StatusForbidden), http.StatusForbidden)
    			w.Header().Set("Content-Type", "text/html; charset=UTF-8")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeBinarySpecInternal.java

    import java.io.File;
    import java.util.Collection;
    import java.util.Map;
    
    public interface NativeBinarySpecInternal extends NativeBinarySpec, BinarySpecInternal {
    
        void setFlavor(Flavor flavor);
    
        void setToolChain(NativeToolChain toolChain);
    
        void setTargetPlatform(NativePlatform targetPlatform);
    
        void setBuildType(BuildType buildType);
    
        Tool getToolByName(String name);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/build.gradle.kts

            jvmTarget = "1.8"
        }
    }
    
    project.afterEvaluate {
        // Grab all build types and product flavors
        val buildTypes = android.buildTypes.map { type ->
            type.name
        }
        // When no product flavors defined, use empty
        val productFlavors = android.productFlavors.map { flavor -> flavor.name }
            .takeIf { it.isNotEmpty() }
            ?: listOf("")
        productFlavors.forEach { productFlavorName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/flavors/groovy/build.gradle

    plugins {
        id 'cpp'
    }
    
    // tag::flavors[]
    model {
        flavors {
            english
            french
        }
        components {
            hello(NativeLibrarySpec) {
                binaries.all {
                    if (flavor == flavors.french) {
                        cppCompiler.define "FRENCH"
                    }
                }
            }
        }
    }
    // end::flavors[]
    
    model {
        binaries {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 624 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinary.java

    /**
     * Represents a particular binary artifact.
     */
    @Incubating
    public interface NativeBinary extends Binary {
        /**
         * The {@link org.gradle.nativeplatform.Flavor} that this binary was built with.
         */
        Flavor getFlavor();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.platform.NativePlatform} that this binary is targeted to run on.
         */
        NativePlatform getTargetPlatform();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top