Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 207 for applyTo (0.09 sec)

  1. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	obj.Node.CertificateRenewal = ptr.To(false)
    	obj.Node.ImagePullPolicy = corev1.PullIfNotPresent
    	obj.Node.ImagePullSerial = ptr.To(true)
    
    	obj.Apply.EtcdUpgrade = ptr.To(true)
    	obj.Apply.CertificateRenewal = ptr.To(false)
    	obj.Apply.ImagePullPolicy = corev1.PullIfNotPresent
    	obj.Apply.ImagePullSerial = ptr.To(true)
    
    	kubeadm.SetDefaultTimeouts(&obj.Timeouts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

                public class SneakyPlugin implements Plugin<Project> {
                    public void apply(Project project) {
                        System.out.println("CI = " + System.getProperty("CI"));
                    }
                }
            """
            buildFile << """
                apply plugin: SneakyPlugin
            """
            def configurationCache = newConfigurationCacheFixture()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

                buildFile << """
                    apply plugin: 'java'
                """
                project("b1").buildFile << """
                    apply plugin: 'java'
                    dependencies {
                        testImplementation "org.test:buildC:1.0"
                    }
                """
                project("b2").buildFile << """
                    apply plugin: 'java'
                """
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInKotlinIntegrationTest.groovy

            file("buildSrc/src/main/kotlin/SomePlugin.kt") << """
                import ${Plugin.name}
                import ${Project.name}
    
                class SomePlugin : Plugin<Project> {
                    override fun apply(project: Project) {
                        val returned = $method
                        println("returned = \$returned")
                    }
                }
            """
    
            file("buildSrc/build.gradle.kts") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

        def "reports problem when build script uses #block block to apply plugins to another project"() {
            createDirs("a", "b")
            settingsFile << """
                include("a")
                include("b")
            """
            buildKotlinFile << """
                $block {
                    plugins.apply("java-library")
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

                    protected abstract ExecOperations getExecOperations();
    
                    @Override
                    public void apply(Project project) {
                        ${snippets.body}
                    }
                }
            """
    
            buildFile("""
                apply plugin: SneakyPlugin
            """)
    
            when:
            configurationCacheFails(":help")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/PatternSetCodec.kt

        override suspend fun WriteContext.encode(value: PatternSet) {
            writePatternSet(value)
        }
    
        override suspend fun ReadContext.decode() =
            patternSetFactory.create()!!.apply {
                readPatternSet(this)
            }
    }
    
    
    object IntersectionPatternSetCodec : Codec<IntersectionPatternSet> {
    
        override suspend fun WriteContext.encode(value: IntersectionPatternSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. releasenotes/notes/ambient-ns-policy.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue: [51556]
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 195 bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDevelocityPluginIntegrationTest.groovy

                    import org.gradle.api.*
                    import org.gradle.kotlin.dsl.*
    
                    class DvConventionsPlugin : Plugin<$Settings.name> {
                        override fun apply(settings: $Settings.name) {
                            settings.apply(mapOf("plugin" to "com.gradle.develocity"))
                            settings.develocity {
                                buildScan.obfuscation.hostname {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ScriptChangeFixture.groovy

                        defaultScriptFile.text = scriptLanguage == ScriptLanguage.GROOVY
                            ? "apply from: './$appliedScriptName'"
                            : "apply(from = \"./$appliedScriptName\")"
                        return new ScriptChangeFixture(rootProjectDir, appliedScriptFile, buildArguments)
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top