Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,287 for ApplyG (0.12 sec)

  1. operator/pkg/helmreconciler/apply.go

    type AppliedResult struct {
    	// processedObjects is the list of objects that were processed in this apply operation.
    	processedObjects object.K8sObjects
    	// deployed is the number of objects have been deployed which means
    	// it's in the cache and it's not changed from the cache.
    	deployed int
    }
    
    // Succeed returns true if the apply operation succeeded.
    func (r AppliedResult) Succeed() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tunnelingconfig/apply.go

    	networking "istio.io/api/networking/v1alpha3"
    )
    
    type ApplyFunc = func(tcpProxy *tcp.TcpProxy, destinationRule *networking.DestinationRule, subsetName string)
    
    // Apply configures tunneling_config in a given TcpProxy depending on the destination rule and the destination hosts
    var Apply ApplyFunc = func(tcpProxy *tcp.TcpProxy, destinationRule *networking.DestinationRule, subsetName string) {
    	var tunnelSettings *networking.TrafficPolicy_TunnelSettings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pkg/test/util/yml/apply.go

    John Howard <******@****.***> 1697526158 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/PluginAwareExtensionsTest.kt

        fun `non reified apply extension on Gradle`() {
            assertNonReifiedApplyExtension<Gradle>()
        }
    
        @Test
        fun `reified apply extension`() {
    
            newPluginAwareMock<PluginAware>().run {
                target.apply<AnyPlugin>()
                verify(configurationAction).plugin(AnyPlugin::class.java)
            }
            newPluginAwareMock<Gradle>().run {
                target.apply<GradlePlugin>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/PluginServiceInjectionIntegrationTest.groovy

                    CustomPlugin(WorkerExecutor executor) {
                    }
    
                    void apply(Project p) {
                    }
                }
    
                apply plugin: CustomPlugin
            """
    
            expect:
            fails()
            failure.assertHasCause("Failed to apply plugin class 'CustomPlugin'")
            failure.assertHasCause("Could not create plugin of type 'CustomPlugin'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/AbstractProgressCrossVersionSpec.groovy

                return "Apply initialization script '${pathOfScript(script)}' to build"
            } else {
                return "Apply script ${script.name} to build"
            }
        }
    
        String applyInitScriptPlugin(File script) {
            if (targetVersion.baseVersion >= GradleVersion.version("6.6")) {
                return "Apply script '${pathOfScript(script)}' to build"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/EvaluationContextTest.groovy

        def "re-evaluating the owner in #evaluator throws exception when intermediate owner is involved"() {
            def otherOwner = createOwner()
    
            when:
            evaluator.apply(owner) {
                evaluator.apply(otherOwner) {
                    evaluator.apply(this.owner) {}
                }
            }
    
            then:
            EvaluationContext.CircularEvaluationException ex = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top