Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Anže Sodja <******@****.***> 1717576978 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginSyntheticIntegrationTest.kt

            withFile("external-plugins/src/main/kotlin/applied-output.gradle.kts", outputFrom("applied-output plugin"))
            withFile(
                "external-plugins/src/main/kotlin/applied-output-fails.gradle.kts", """
                ${outputFrom("applied-output-fails plugin")}
                TODO("applied-output-fails plugin application failure")
            """
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginManager.java

         * @since 2.3
         */
        boolean hasPlugin(String id);
    
        /**
         * Executes the given action when the specified plugin is applied.
         * <p>
         * If a plugin with the specified ID has already been applied, the supplied action will be executed immediately.
         * Otherwise, the action will executed immediately after a plugin with the specified ID is applied.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager_test.go

      labels:
        app: my-app # missing from last-applied
    spec:
      replicas: 100 # does not match last-applied
      selector:
        matchLabels:
          app: my-app
      template:
        metadata:
          labels:
            app: my-app
        spec:
          containers:
          - name: my-c
            image: my-image-v2 # does no match last-applied
          # note that second container in last-applied is missing
    `),
    			applied: []byte(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 20K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/PrecompiledGroovyPluginsIntegrationTest.groovy

                }
    
                logger.lifecycle "bar script plugin applied"
            """
    
            buildFile << """
                plugins {
                    id 'bar'
                }
            """
    
            when:
            succeeds("clean")
    
            then:
            outputContains("bar script plugin applied")
            outputContains("foo script plugin applied")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 28.7K bytes
    - Viewed (0)
Back to top