Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,955 for applyTo (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	o.Traces.AddFlags(fs)
    }
    
    // ApplyTo adds RecommendedOptions to the server configuration.
    // pluginInitializers can be empty, it is only need for additional initializers.
    func (o *RecommendedOptions) ApplyTo(config *server.RecommendedConfig) error {
    	if err := o.Etcd.ApplyTo(&config.Config); err != nil {
    		return err
    	}
    	if err := o.EgressSelector.ApplyTo(&config.Config); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnumBuildOption.java

                    String value = options.option(config.getLongOption()).getValue();
                    applyTo(value, settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        private void applyTo(String value, T settings, Origin origin) {
            applyTo(getValue(value), settings, origin);
        }
    
        private E getValue(String value) {
            E enumValue = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonBuildOptions.java

            public static final String GRADLE_PROPERTY = "org.gradle.daemon.idletimeout";
    
            public IdleTimeoutOption() {
                super(GRADLE_PROPERTY);
            }
    
            @Override
            public void applyTo(String value, DaemonParameters settings, Origin origin) {
                try {
                    settings.setIdleTimeout(Integer.parseInt(value));
                } catch (NumberFormatException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/IntegerBuildOption.java

                    String value = options.option(config.getLongOption()).getValue();
                    applyTo(Integer.parseInt(value), settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        public abstract void applyTo(int value, T settings, Origin origin);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/envoyfilter/envoyfilter.go

    			// the ADD operation is an absolute operation but provide a warning
    			// indicating that the operation will be ignored when applyTo is set to ROUTE_CONFIGURATION,
    			// or HTTP_ROUTE
    			if patch.ApplyTo == network.EnvoyFilter_ROUTE_CONFIGURATION || patch.ApplyTo == network.EnvoyFilter_HTTP_ROUTE {
    				// provide an error message indicating a mismatch between the operation type and the filter type
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. tests/integration/telemetry/policy/testdata/enable_envoy_ratelimit.yaml

    kind: EnvoyFilter
    metadata:
      name: filter-ratelimit
      namespace: istio-system
    spec:
      workloadSelector:
        labels:
          app: clt
      configPatches:
        # The Envoy config you want to modify
        - applyTo: HTTP_FILTER
          match:
            context: SIDECAR_OUTBOUND
            listener:
              filterChain:
                filter:
                  name: "envoy.filters.network.http_connection_manager"
                  subFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/initialization/BuildLayoutParametersBuildOptions.java

            }
    
            @Override
            public void applyTo(String value, BuildLayoutParameters settings, Origin origin) {
                Transformer<File, String> resolver = new BasicFileResolver(settings.getCurrentDir());
                settings.setGradleUserHomeDir(resolver.transform(value));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 04 18:57:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. pkg/config/xds/xds.go

    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    // nolint: interfacer
    func BuildXDSObjectFromStruct(applyTo networking.EnvoyFilter_ApplyTo, value *structpb.Struct, strict bool) (proto.Message, error) {
    	if value == nil {
    		// for remove ops
    		return nil, nil
    	}
    	var obj proto.Message
    	switch applyTo {
    	case networking.EnvoyFilter_CLUSTER:
    		obj = &cluster.Cluster{}
    	case networking.EnvoyFilter_LISTENER:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. 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)
Back to top