Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,521 for applyTo (0.19 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

        def setup(){
            settingsFile.text = "rootProject.name = 'root'"
        }
    
        @ToBeFixedForConfigurationCache
        void allowsConfiguringEclipseProject() {
            given:
            buildScript """
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    eclipse {
      project {
        name = 'someBetterName'
        comment = 'a test project'
    
        referencedProjects = ['some referenced project'] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

          this.settings =
            Settings().apply {
              merge(mockResponse.settings)
            }
        }
    
        fun code(code: Int) =
          apply {
            this.code = code
          }
    
        /** Sets the status and returns this. */
        fun status(status: String) =
          apply {
            this.status = status
          }
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/AlreadyOnClasspathPluginUseIntegrationTest.groovy

            when:
            succeeds "help"
    
            then:
            operations.hasOperation("Apply plugin my-plugin to root project 'root'")
            !operations.hasOperation("Apply plugin my-plugin to project ':a'")
            operations.hasOperation("Apply plugin my-plugin to project ':a:b'")
        }
    
        def "can request non-core plugin already requested on parent project but not applied"() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

                    allprojects {
                        apply plugin: 'java'
                        apply plugin: 'idea'
                        group = 'org.buildC'
                    }
    """
            }
            includeBuild buildC
    
            def buildD = singleProjectBuild("b1") {
                buildFile << """
                    apply plugin: 'java'
                    apply plugin: 'idea'
                    group = 'org.buildD'
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            given:
            buildFile << """
                project(':app') {
                    apply plugin: 'swift-application'
                    dependencies {
                        implementation project(':greeter')
                    }
                }
                project(':greeter') {
                    apply plugin: 'swift-library'
                }
            """
            app.library.writeToProject(file("greeter"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/fieldmanager_test.go

    	}
    
    	// Agent A applies initial configuration
    	if err := f.Apply(newObj.DeepCopyObject(), "fieldmanager_z", false); err != nil {
    		t.Fatalf("failed to apply object: %v", err)
    	}
    
    	// Agent B applies additive configuration
    	if err := f.Apply(appliedObj, "fieldmanager_b", false); err != nil {
    		t.Fatalf("failed to apply object %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

            script << """
                task doStuff
            """
    
            buildFile << """
                apply from: resources.text.fromInsecureUri("$server.uri/external.gradle")
                defaultTasks 'doStuff'
            """
    
            then:
            succeeds()
        }
    
        def "can apply script via https"() {
            applyTrustStore()
    
            when:
            def script = file('external.gradle')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

            """
            buildFile << """
                apply plugin: 'swift-application'
                apply plugin: 'xcode'
    
                dependencies {
                    implementation 'test:greeter:1.3'
                }
            """
    
            file("greeter/settings.gradle") << "rootProject.name = 'greeter'"
            file('greeter/build.gradle') << """
                apply plugin: 'swift-library'
                apply plugin: 'xcode'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            given:
            buildFile << """
                project(':app') {
                    apply plugin: 'cpp-application'
                    dependencies {
                        implementation project(':hello')
                    }
                }
                project(':hello') {
                    apply plugin: 'cpp-library'
                }
            """
            app.greeter.writeToProject(file("hello"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractSourcesAndJavadocJarsIntegrationTest.groovy

            given:
            executer.withEnvironmentVars('GRADLE_REPO_OVERRIDE': "$server.uri/")
    
            buildScript """
                apply plugin: "java"
                apply plugin: "idea"
                apply plugin: "eclipse"
    
                dependencies {
                    implementation gradleApi()
                }
    
                idea.module.downloadSources = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top