Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,328 for appliedBy (0.51 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

                operations << "applied"
    
                task verify { doLast { assert operations == ['applying', 'withType', 'withId', 'withPlugin', 'applied'] } }
    
                gradle.buildFinished { loader.close() }
            """
    
            expect:
            run("verify")
        }
    
        def "plugin manager with id is fired after the plugin is applied for imperative plugins"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pkg/proxy/endpointslicecache.go

    		change.previous = cache.getEndpointsMap(serviceNN, esTracker.applied)
    
    		for name, sliceData := range esTracker.pending {
    			if sliceData.remove {
    				delete(esTracker.applied, name)
    			} else {
    				esTracker.applied[name] = sliceData
    			}
    
    			delete(esTracker.pending, name)
    		}
    
    		change.current = cache.getEndpointsMap(serviceNN, esTracker.applied)
    		changes[serviceNN] = change
    	}
    
    	return changes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (1)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top