Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,163 for applyTo (0.22 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

                rootProject.name = 'app'
                include 'one', 'two', 'three'
            """
            buildFile << """
                apply plugin: 'cpp-application'
    
                project(':one') {
                    apply plugin: 'cpp-application'
                }
                project(':two') {
                    apply plugin: 'cpp-library'
                }
            """
    
            and:
            run ":visualStudio"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

                    }
                }
                apply plugin: CustomManagedLSSPlugin
    
                class TestRules extends RuleSource {
                    @Defaults
                    void useInternalView(@Path("components.sampleLib.sources.managed") CustomManagedLSS lss) {
                        lss.setSomeProperty("default value")
                    }
                }
                apply plugin: TestRules
    
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

            given:
            buildFile << """
                project(':hello') {
                    apply plugin: 'swift-library'
                    dependencies {
                        implementation project(':log')
                    }
                }
                project(':log') {
                    apply plugin: 'swift-library'
                }
    """
            app.library.writeToProject(file("hello"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

                }
            }
            apply plugin: Rules
            """
    
            expect:
            succeeds "validate"
        }
    
    
        def "can create a ModelMap of List<String>"() {
            buildFile << """
                class Rules extends RuleSource {
                    @Model void things(ModelMap<List<String>> things) { }
                }
                apply plugin: Rules
    
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationCppInteroperabilityIntegrationTest.groovy

            given:
            buildFile << """
                project(':app') {
                    apply plugin: 'swift-application'
                    dependencies {
                        implementation project(':cppGreeter')
                    }
                }
                project(':cppGreeter') {
                    apply plugin: 'cpp-library'
                    library.linkage = [Linkage.STATIC, Linkage.SHARED]
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

                project(':lib1') {
                    apply plugin: 'cpp-library'
                    dependencies {
                        api project(':lib2')
                        implementation project(':lib3')
                    }
                }
                project(':lib2') {
                    apply plugin: 'cpp-library'
                }
                project(':lib3') {
                    apply plugin: 'cpp-library'
                }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  7. android/guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

              @Override
              public Arithmetic apply(Arithmetic arithmetic) {
                return new ForwardingArithmetic(arithmetic);
              }
            });
        tester.testForwarding(
            ParameterTypesDifferent.class,
            new Function<ParameterTypesDifferent, ParameterTypesDifferent>() {
              @Override
              public ParameterTypesDifferent apply(ParameterTypesDifferent delegate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestIntegrationTest.groovy

            given:
            createDirs("greeter")
            settingsFile << """
    rootProject.name = 'app'
    include 'greeter'
    """
            buildFile << """
    project(':greeter') {
        apply plugin: 'swift-library'
    }
    
    apply plugin: 'swift-library'
    
    dependencies {
        testImplementation project(':greeter')
    }
    """
            lib.writeToProject(file('greeter'))
            test.writeToProject(testDirectory)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleCppProjectIntegrationTest.groovy

            """
            buildFile << """
                apply plugin: 'cpp-application'
                apply plugin: 'xcode'
    
                dependencies {
                    implementation 'test:greeter:1.3'
                }
            """
    
            file("greeter/settings.gradle") << "rootProject.name = 'greeter'"
            file('greeter/build.gradle') << """
                apply plugin: 'cpp-library'
                apply plugin: 'xcode'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginTemplatesTest.kt

                )
            }
        }
    
        @Test
        fun `can apply plugin using ObjectConfigurationAction syntax`() {
    
            val pluginsRepository = newDir("repository")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top