Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for mainDebug (0.24 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftBinaryTest.groovy

            _ * configurations.migratingUnlocked('nativeRuntimeDebug', ConfigurationRolesForMigration.RESOLVABLE_DEPENDENCY_SCOPE_TO_RESOLVABLE) >> runtime
    
            binary = new DefaultSwiftBinary(Names.of("mainDebug"), project.objects, project.taskDependencyFactory, Stub(Provider), false, Stub(FileCollection), configurations, implementation, Stub(SwiftPlatform), Stub(NativeToolChainInternal), Stub(PlatformToolProvider), Stub(NativeVariantIdentity))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/internal/DefaultCppLibraryTest.groovy

            def platformToolProvider = Stub(PlatformToolProvider)
    
            expect:
            def binary = library.addSharedLibrary(identity, targetPlatform, toolChain, platformToolProvider)
            binary.name == 'mainDebug'
            binary.debuggable
            !binary.optimized
            binary.targetPlatform == targetPlatform
            binary.toolChain == toolChain
            binary.platformToolProvider == platformToolProvider
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftLibraryPluginTest.groovy

            when:
            project.pluginManager.apply(SwiftLibraryPlugin)
            project.evaluate()
    
            then:
            project.components.main == project.library
            project.library.binaries.get().name == ['mainDebug', 'mainRelease']
            project.components.containsAll(project.library.binaries.get())
    
            and:
            def binaries = project.library.binaries.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftApplicationTest.groovy

            def platformToolProvider = Stub(PlatformToolProvider)
    
            expect:
            def binary = app.addExecutable(identity, true, targetPlatform, toolChain, platformToolProvider)
            binary.name == "mainDebug"
            binary.debuggable
            !binary.optimized
            binary.testable
            binary.targetPlatform == targetPlatform
            binary.toolChain == toolChain
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/NamesTest.groovy

            name.append("debug").dirName == "main/debug/"
        }
    
        def "names for single dimension variant of main"() {
            expect:
            def name = Names.of("mainDebug")
            name.baseName == "debug"
            name.lowerBaseName == "debug"
            name.getCompileTaskName("cpp") == "compileDebugCpp"
            name.getTaskName("link") == "linkDebug"
            name.dirName == "main/debug/"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryDependenciesIntegrationTest.groovy

                    implementation project(':lib1')
                }
                project(':lib1') {
                    apply plugin: 'swift-library'
                    library {
                        binaries.getByName('mainDebug').configure {
                            dependencies {
                                implementation project(':lib2')
                            }
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftApplicationPluginTest.groovy

            project.pluginManager.apply(SwiftApplicationPlugin)
            project.evaluate()
    
            then:
            project.components.main == project.application
            project.application.binaries.get().name == ['mainDebug', 'mainRelease']
            project.components.containsAll(project.application.binaries.get())
    
            and:
            def binaries = project.application.binaries.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top