Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 759 for applyTo (0.21 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

                    apply(customAccessor, conversionFilter)
                }
    
                objectReflection.lambdaAccessedObjects.forEach { lambdaAccessedObject ->
                    getObjectByResolvedOrigin(lambdaAccessedObject.objectOrigin) ?: error("could not get object from lambda passed to ${lambdaAccessedObject.objectOrigin}")
                    apply(lambdaAccessedObject, conversionFilter)
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

        def "dependencies declared in TOML file trigger the creation of an extension (notation=#notation)"() {
            tomlFile << """[libraries]
    foo = "org.gradle.test:lib:1.0"
    """
    
            buildFile """
                apply plugin: 'java-library'
    
                tasks.register("verifyExtension") {
                    def lib = libs.foo
                    doLast {
                        assert lib instanceof Provider
                        def dep = lib.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

        def "resolved configurations are exposed via build operation"() {
            setup:
            buildFile << """
                allprojects {
                    apply plugin: "java"
                    repositories {
                        maven { url '${mavenHttpRepo.uri}' }
                    }
                }
                dependencies {
                    implementation 'org.foo:hiphop:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. istioctl/pkg/waypoint/waypoint.go

    	)
    	waypointApplyCmd := &cobra.Command{
    		Use:   "apply",
    		Short: "Apply a waypoint configuration",
    		Long:  "Apply a waypoint configuration to the cluster",
    		Example: `  # Apply a waypoint to the current namespace
      istioctl waypoint apply
    
      # Apply a waypoint to a specific namespace and wait for it to be ready
      istioctl waypoint apply --namespace default --wait`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            outputContains("Applying SoftwareTypeImplPlugin")
            outputContains("Applying AnotherSoftwareTypeImplPlugin")
        }
    
        def 'can declare multiple custom software types from a single settings plugin but apply only one'() {
            given:
            withSettingsPluginThatExposesMultipleSoftwareTypes().prepareToExecute()
    
            file("settings.gradle.dcl") << pluginsFromIncludedBuild
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

            """
    
            file("buildSrc/settings.gradle").createFile()
    
            buildFile << """
                apply plugin:'java'
    
                dependencies {
                    implementation "org.acme:b:1.0"
                }
            """
    
            file("b/build.gradle") << """
                apply plugin:'java-library'
                group = 'org.acme'
                version = '1.0'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

        override fun getPlugins(): PluginContainer =
            delegate.plugins
    
        override fun apply(closure: Closure<*>) =
            delegate.apply(closure)
    
        override fun apply(action: Action<in ObjectConfigurationAction>) =
            delegate.apply(action)
    
        override fun apply(options: MutableMap<String, *>) =
            delegate.apply(options)
    
        override fun getPluginManager(): PluginManagerInternal =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

        }
    
        def "fails on toolchain and forkOptions mismatch when #when"() {
            def currentJdk = Jvm.current()
            def otherJdk = AvailableJavaHomes.differentVersion
    
            buildFile << """
                apply plugin: "java"
            """
    
            if (tool != null) {
                configureTool(tool == "current" ? currentJdk : otherJdk)
            }
            if (javaHome != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryOutgoingVariantsIntegrationTest.groovy

    def artifactType = Attribute.of('artifactType', String)
    
    allprojects {
        repositories { maven { url '${mavenRepo.uri}' } }
    }
    
    project(':other-java') {
        apply plugin: 'java-library'
    }
    
    project(':java') {
        apply plugin: 'java-library'
        dependencies {
            api 'test:api:1.0'
            implementation project(':other-java')
            implementation files('file-dep.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

            buildB = multiProjectBuild("buildB", ['b1', 'b2']) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java-library'
                        version "2.0"
    
                        repositories {
                            maven { url "${mavenRepo.uri}" }
                        }
                    }
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top