Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for applyTo (0.13 sec)

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

    	e.SetPushContext(pushContext)
    	return e
    }
    
    func TestApplyListenerPatches(t *testing.T) {
    	configPatchesPriorities := []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    		{
    			ApplyTo: networking.EnvoyFilter_HTTP_FILTER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_GATEWAY,
    				ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_Listener{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                for (ClassGenerationHandler handler : handlers) {
                    handler.applyTo(inspectionVisitor);
                }
    
                ClassGenerationVisitor generationVisitor = inspectionVisitor.builder();
                for (ClassGenerationHandler handler : handlers) {
                    handler.applyTo(generationVisitor);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/options_test.go

    	// insertion order is random.
    	sort.Sort(sortedGCIgnoredResources(expected.ComponentConfig.GarbageCollectorController.GCIgnoredResources))
    
    	c := &kubecontrollerconfig.Config{}
    	s.ApplyTo(c, []string{""}, []string{""}, nil)
    
    	if !reflect.DeepEqual(expected.ComponentConfig, c.ComponentConfig) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    			// Apply the policy.
    			cfg := t.ConfigIstio().File(c.Namespace.Name(), filepath.Join("testdata", c.ConfigFile))
    			retry.UntilSuccessOrFail(t, func() error {
    				t.Logf("[%s] [%v] Apply config %s", testName, time.Now(), c.ConfigFile)
    				// TODO(https://github.com/istio/istio/issues/20460) We shouldn't need a retry loop
    				return cfg.Apply(apply.Wait)
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    		}
    		// merge EnvoyFilterWrapper
    		for _, efw := range matchedEnvoyFilters {
    			for applyTo, cps := range efw.Patches {
    				for _, cp := range cps {
    					if proxyMatch(proxy, cp) {
    						out.Patches[applyTo] = append(out.Patches[applyTo], cp)
    					}
    				}
    			}
    		}
    	}
    
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    		{
    			Meta: config.Meta{Name: "filter-1", Namespace: "test-ns", GroupVersionKind: gvk.EnvoyFilter},
    			Spec: &networking.EnvoyFilter{
    				ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    					{
    						ApplyTo: networking.EnvoyFilter_HTTP_FILTER,
    						Patch: &networking.EnvoyFilter_Patch{
    							Operation: networking.EnvoyFilter_Patch_INSERT_BEFORE,
    							Value:     buildPatchStruct(`{"name": "filter-1"}`),
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

            ClosingFuture.from(executor.submit(Callables.returning(closeable1)))
                .transform(
                    new ClosingFunction<TestCloseable, String>() {
                      @Override
                      public String apply(DeferredCloser closer, TestCloseable v) throws Exception {
                        assertThat(v).isSameInstanceAs(closeable1);
                        return "value";
                      }
                    },
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

            ClosingFuture.from(executor.submit(Callables.returning(closeable1)))
                .transform(
                    new ClosingFunction<TestCloseable, String>() {
                      @Override
                      public String apply(DeferredCloser closer, TestCloseable v) throws Exception {
                        assertThat(v).isSameInstanceAs(closeable1);
                        return "value";
                      }
                    },
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  9. tests/integration/security/authz_test.go

    					// The namespaces for each resource are specified in the file. Use "" as the ns to apply to.
    					param.Namespace.String(): "",
    					"GatewayIstioLabel":      i.Settings().IngressGatewayIstioLabel,
    				})).
    				BuildAll(nil, to).
    				Apply()
    			newTrafficTest(t, to.Instances()).
    				RunViaIngress(func(t framework.TestContext, from ingress.Instance, to echo.Target) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Consider the sample build script shown above that demonstrates the use of type-safe accessors.
    The following sample is exactly the same except that is uses the `apply()` method to apply the plugin.
    The build script can not use type-safe accessors in this case because the `apply()` call happens in the body of the build script.
    You have to use other techniques instead, as demonstrated here:
    
    .Configuring plugins without type-safe accessors
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top