Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,081 for ApplyG (0.09 sec)

  1. cmd/kubeadm/app/cmd/upgrade/apply.go

    	if ok {
    		upgradeCfg.Apply.EtcdUpgrade = etcdUpgrade
    	} else {
    		return cmdutil.TypeMismatchErr("etcdUpgrade", "bool")
    	}
    
    	renewCerts, ok := cmdutil.ValueFromFlagsOrConfig(flagSet, options.CertificateRenewal, upgradeCfg.Apply.CertificateRenewal, &flags.renewCerts).(*bool)
    	if ok {
    		upgradeCfg.Apply.CertificateRenewal = renewCerts
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. hack/testdata/filter/pod-dont-apply.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: selector-test-pod-dont-apply
      labels:
        name: selector-test-pod-dont-apply
        unique-label: biz
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 228 bytes
    - Viewed (0)
  3. hack/testdata/pod-apply.yaml

    Lubomir I. Ivanov <******@****.***> 1716462099 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 174 bytes
    - Viewed (0)
  4. hack/testdata/filter/pod-apply-selector.yaml

    Lubomir I. Ivanov <******@****.***> 1716462099 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 211 bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/RuleSourceApplicationTest.groovy

        }
    
        def "can apply a rule source by id"() {
            when:
            def project = buildProject()
            project.apply plugin: 'custom-rule-source'
    
            then:
            project.modelRegistry.realize("foo", String) == "bar"
        }
    
        def "can apply a rule source by type"() {
            when:
            def project = buildProject()
            project.apply type: CustomRuleSource
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/-ResponseCommon.kt

    fun Response.Builder.commonRequest(request: Request) =
      apply {
        this.request = request
      }
    
    fun Response.Builder.commonProtocol(protocol: Protocol) =
      apply {
        this.protocol = protocol
      }
    
    fun Response.Builder.commonCode(code: Int) =
      apply {
        this.code = code
      }
    
    fun Response.Builder.commonMessage(message: String) =
      apply {
        this.message = message
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

            plugins.empty
    
            when:
            container.apply(pluginClass)
    
            then:
            plugins == []
        }
    
        def "calls apply on target for type only"() {
            when:
            container.apply(plugin1Class)
    
            then:
            1 * target.applyImperative(null, { plugin1Class.isInstance(it) })
        }
    
        def "calls apply on target for id"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

            then:
            project.classpathContainers.isEmpty()
        }
    
        def "Project has some classpath containers"() {
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       containers 'containerPath1', 'containerPath2'
                   }
               }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/plugin/ScriptPluginClassLoadingIntegrationTest.groovy

                }
            """
    
            file("sub/build.gradle") << "apply from: 'script.gradle'"
            file("sub/script.gradle") << "someMethod()"
    
            when:
            run "help"
    
            then:
            output.contains("from some method")
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-3082")
        def "can use apply block syntax to apply multiple scripts"() {
            given:
            buildScript """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/GroovyPluginImplementation.groovy

                class SneakyPlugin implements Plugin<Project> {
                    public void apply(Project project) {
                        def value = ${read.groovyExpression}
                        println("apply = " + value)
    
                        // Instance call
                        def sys = System
                        println("apply INSTANCE = " + sys.getProperty("INSTANCE"))
    
                        // Call from closure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top