Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 352 for flavor4 (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

                details.compatible()
            }
        }
    }
    
    def flavor = Attribute.of('flavor', String)
    
    allprojects {
        dependencies {
            attributesSchema.attribute(flavor)
        }
    }
    
    configurations {
        compile.attributes.attribute(flavor, 'preview')
    }
    
    dependencies {
        compile project(':a')
    }
    
    project(':a') {
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/TestNativeBinariesFactory.java

            T binary = BaseBinaryFixtures.create(publicType, implType, name, componentNode);
            NativeBinaries.initialize(binary, namingScheme, resolver, TestFiles.fileCollectionFactory(), platform, buildType, flavor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltStaticLibraryBinary.java

        private File staticLibraryFile;
    
        public DefaultPrebuiltStaticLibraryBinary(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.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/TestingNativeComponentReportIntegrationTest.groovy

    Binaries
        Executable 'someExe:executable'
            build using task: :someExeExecutable
            install using task: :installSomeExeExecutable
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/someExe/someExe
    
    Google test suite 'someExeTest'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/plugins/NativeComponentModelPlugin.java

                    buildTypes.create("debug");
                }
            }
    
            @Finalize
            public void createDefaultFlavor(FlavorContainer flavors) {
                if (flavors.isEmpty()) {
                    flavors.create(DefaultFlavor.DEFAULT);
                }
            }
    
            @Finalize
            void configureGeneratedSourceSets(@Each LanguageSourceSetInternal languageSourceSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

    def usage = Attribute.of('usage', String)
    def buildType = Attribute.of('buildType', String)
    def flavor = Attribute.of('flavor', String)
    
    allprojects {
        repositories {
            ivy { url '${ivyHttpRepo.uri}' }
        }
        dependencies {
            attributesSchema {
               attribute(usage)
               attribute(buildType)
               attribute(flavor)
            }
        }
        configurations {
            compile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. 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)
Back to top