Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for Applied (0.12 sec)

  1. pilot/pkg/networking/core/envoyfilter/util_test.go

    				t.Errorf("replaceFunc: want %+v but got %+v", c.applied, applied)
    			}
    
    			// insertBeforeFunc
    			got, applied = insertBeforeFunc(slices.Clone(c.input), f)
    			if !slices.Equal(c.insertBefore, got) {
    				t.Errorf("insertBeforeFunc: want %+v but got %+v", c.insertBefore, got)
    			}
    			if c.applied != applied {
    				t.Errorf("insertBeforeFunc: want %+v but got %+v", c.applied, applied)
    			}
    
    			// insertAfterFunc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/monitoring.go

    	for name, pmap := range envoyFilterStatusMap {
    		for pt, applied := range pmap {
    			if applied {
    				envoyFilterStatus.With(nameType.Value(name)).With(patchType.Value(pt)).
    					With(resultType.Value(string(Applied))).Record(1)
    			} else {
    				envoyFilterStatus.With(nameType.Value(name)).With(patchType.Value(pt)).
    					With(resultType.Value(string(Applied))).Record(0)
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginCheckInIntegrationTest.groovy

        def "detects that the build scan plugin has been [applied=#applied]"() {
            given:
            if (applied) {
                applyPlugin()
            }
    
            settingsFile << """
                println "present: " + services.get($GradleEnterprisePluginManager.name).present
            """
    
            when:
            succeeds "t"
    
            then:
            output.contains("present: ${applied}")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedupdater_test.go

    		t.Errorf("error applying object: %v", err)
    	}
    
    	lastApplied, err := getLastApplied(f.Live())
    	if err != nil {
    		t.Errorf("failed to get last applied: %v", err)
    	}
    
    	if lastApplied != originalLastApplied {
    		t.Errorf("expected last applied annotation to be %q and NOT be updated, but got: %q", originalLastApplied, lastApplied)
    	}
    
    	if err := f.Apply(appliedObj, "kubectl", false); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TapiAgentInstrumentationCrossVersionSpec.groovy

            agentStatusWas(true)
        }
    
        private void agentWasNotApplied() {
            agentStatusWas(false)
        }
    
        private void agentStatusWas(boolean applied) {
            assert buildOutput.contains("agent applied = $applied")
        }
    
        private void withAgentEnabledInProperties() {
            withAgentStatusInProperties(true)
        }
    
        private void withAgentDisabledInProperties() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/plugins/PrecompiledKotlinPluginCrossVersionSpec.groovy

            then:
            result.assertOutputContains("My gradle plugin applied!")
            result.assertOutputContains("My settings plugin applied!")
            result.assertOutputContains("settings pluginManagement {}")
            if (supportsSettingsPluginsBlock) {
                result.assertOutputContains("settings plugins {}")
            }
            result.assertOutputContains("My project plugin applied!")
            result.assertOutputContains("My task executed!")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanConfigIntegrationTest.groovy

            given:
            scanPlugin.collectConfig = applied
    
            when:
            succeeds "t"
    
            then:
            output.contains("buildScan plugin applied: ${applied}")
            if (applied) {
                with(scanPlugin.attributes(output)) {
                    isTaskExecutingBuild()
                }
            }
    
            where:
            applied << [true, false]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager.go

    		return nil, fmt.Errorf("failed to convert last applied to typed: %v", err)
    	}
    
    	lastAppliedObjFieldSet, err := lastAppliedObjTyped.ToFieldSet()
    	if err != nil {
    		return nil, fmt.Errorf("failed to create fieldset for last applied object: %v", err)
    	}
    
    	comparison, err := lastAppliedObjTyped.Compare(liveObjTyped)
    	if err != nil {
    		return nil, fmt.Errorf("failed to compare last applied object and live object: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/AbstractPluginBuildIntegrationTest.groovy

            }
    
            void assertSettingsPluginApplied() {
                outputContains("$settingsPluginId applied")
            }
    
            void assertSettingsPluginNotApplied() {
                outputDoesNotContain("$settingsPluginId applied")
            }
    
            void assertProjectPluginApplied() {
                outputContains("$projectPluginId applied")
            }
    
            void assertProjectPluginNotApplied() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 08:28:10 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/internal/WrapperPluginAutoApplyActionIntegTest.groovy

            then:
            wrapper.generated()
        }
    
        def "can use camel-case for dynamically applied wrapper plugin "() {
            when:
            run taskName
            then:
            wrapper.generated()
            where:
            taskName << ["wrapp"]//, "wrap", "w"]
        }
    
        def "wrapper plugin not applied on subprojects"() {
            setup:
            settingsFile << "include 'moduleA'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top