Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 165 for flavor1 (0.24 sec)

  1. src/go/ast/filter_test.go

    func (t1) f2() {}
    
    func (t2) f1() {}
    func (t2) f2() {}
    func (x *t2) f2() {}
    `
    
    // Calling ast.MergePackageFiles with ast.FilterFuncDuplicates
    // keeps a duplicate entry with attached documentation in favor
    // of one without, and it favors duplicate entries appearing
    // later in the source over ones appearing earlier. This is why
    // (*t2).f2 is kept and t2.f2 is eliminated in this test case.
    const golden = `package p
    
    type t1 struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ResolutionAttributesOrderingIntegrationTest.groovy

            """
            file("producer/build.gradle") << """
                def usage = Attribute.of('usage', String)
                def buildType = Attribute.of('buildType', String)
                def flavor = Attribute.of('flavor', String)
    
                configurations {
                    correctElements {
                        canBeResolved = false
                        canBeConsumed = true
                        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/DefaultLibraryResolver.java

        }
    
        private class LibraryResolution {
            private Flavor flavor;
            private NativePlatform platform;
            private BuildType buildType;
    
            public LibraryResolution withFlavor(Flavor flavor) {
                this.flavor = flavor;
                return this;
            }
    
            public LibraryResolution withPlatform(NativePlatform platform) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.Flavor.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultFlavorTest.groovy

    import spock.lang.Specification
    
    class DefaultFlavorTest extends Specification {
        def "has useful string representation"() {
            def flavor = new DefaultFlavor("someFlavor")
    
            expect:
            flavor.toString() == "flavor 'someFlavor'"
            flavor.displayName == "flavor 'someFlavor'"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 970 bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            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: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top