Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,976 for applyTo (0.11 sec)

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

    				Operation: networking.EnvoyFilter_Patch_REMOVE,
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_VIRTUAL_HOST,
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_ADD,
    				Value:     buildPatchStruct(`{"name":"new-vhost"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_VIRTUAL_HOST,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnabledOnlyBooleanBuildOption.java

            for (CommandLineOptionConfiguration config : commandLineOptionConfigurations) {
                if (options.hasOption(config.getLongOption())) {
                    applyTo(settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        public abstract void applyTo(T settings, Origin origin);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/StringBuildOption.java

                if (options.hasOption(config.getLongOption())) {
                    String value = options.option(config.getLongOption()).getValue();
                    applyTo(value, settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        public abstract void applyTo(String value, T settings, Origin origin);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/ListBuildOption.java

                    List<String> value = options.option(config.getLongOption()).getValues();
                    applyTo(value, settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        public abstract void applyTo(List<String> values, T settings, Origin origin);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    		{
    			ApplyTo: networking.EnvoyFilter_CLUSTER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_ADD,
    				Value:     buildPatchStruct(`{"name":"new-cluster1"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_CLUSTER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/extension_configuration_patch_test.go

    		{
    			ApplyTo: networking.EnvoyFilter_EXTENSION_CONFIG,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_ADD,
    				Value:     buildPatchStruct(`{"name":"add-extension-config1"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_EXTENSION_CONFIG,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/DefaultBuildableComponentResolveResult.java

        }
    
        public void applyTo(BuildableComponentIdResolveResult idResolve) {
            super.applyTo(idResolve);
            if (failure != null) {
                idResolve.failed(failure);
            }
            if (state != null) {
                idResolve.resolved(state, graphState);
            }
        }
    
        @Override
        public void applyTo(BuildableComponentResolveResult target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pkg/controlplane/apiserver/config.go

    	if lastErr = s.Features.ApplyTo(genericConfig, clientgoExternalClient, versionedInformers); lastErr != nil {
    		return
    	}
    	if lastErr = s.APIEnablement.ApplyTo(genericConfig, resourceConfig, legacyscheme.Scheme); lastErr != nil {
    		return
    	}
    	if lastErr = s.EgressSelector.ApplyTo(genericConfig); lastErr != nil {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/options/options.go

    	c.KubeConfig = kubeConfig
    
    	if err := o.SecureServing.ApplyTo(&c.SecureServing, &c.LoopbackClientConfig); err != nil {
    		return err
    	}
    	if o.SecureServing != nil && (o.SecureServing.BindPort != 0 || o.SecureServing.Listener != nil) {
    		if err := o.Authentication.ApplyTo(&c.Authentication, c.SecureServing, nil); err != nil {
    			return err
    		}
    		if err := o.Authorization.ApplyTo(&c.Authorization); err != nil {
    			return err
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top