Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,686 for applyTo (0.13 sec)

  1. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/BooleanBuildOption.java

                if (options.hasOption(config.getLongOption())) {
                    applyTo(true, settings, Origin.forCommandLine(config.getLongOption()));
                }
    
                if (options.hasOption(getDisabledCommandLineOption(config))) {
                    applyTo(false, settings, Origin.forCommandLine(getDisabledCommandLineOption(config)));
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/toolchain/ToolchainBuildOptions.java

            public JavaInstallationPathsOption() {
                super(GRADLE_PROPERTY);
            }
    
            @Override
            public void applyTo(String value, ToolchainConfiguration settings, Origin origin) {
                settings.setInstallationsFromPaths(Arrays.asList(value.split(",")));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/config/analysis/analyzers/testdata/envoy-filter-remove-operation.yaml

    # If the patch operation is REMOVE and the applyTo is set to ROUTE_CONFIGURATION or HTTP_ROUTE, then an error will occur 
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-remove-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: mysvc1
      configPatches:
      - applyTo: NETWORK_FILTER # http connection manager is a filter in Envoy
        match:
          context: GATEWAY
          listener:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

    metadata:
      name: test-relative-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews1
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  10. 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)
Back to top