Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/config/validation/envoyfilter/envoyfilter_test.go

    		{name: "invalid applyTo", in: &networking.EnvoyFilter{
    			ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    				{
    					ApplyTo: 0,
    				},
    			},
    		}, error: "Envoy filter: missing applyTo"},
    		{name: "nil patch", in: &networking.EnvoyFilter{
    			ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    				{
    					ApplyTo: networking.EnvoyFilter_LISTENER,
    					Patch:   nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/config/validation/envoyfilter/envoyfilter.go

    						fmt.Errorf("Envoy filter: applyTo for listener class objects cannot have non listener match")) // nolint: stylecheck
    					continue
    				}
    				listenerMatch := cp.Match.GetListener()
    				if listenerMatch.FilterChain != nil {
    					if listenerMatch.FilterChain.Filter != nil {
    						if cp.ApplyTo == networking.EnvoyFilter_LISTENER || cp.ApplyTo == networking.EnvoyFilter_FILTER_CHAIN {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                def node = graph.projectNode(selectedProjectIdentityPath, selectedModuleVersionId)
                deps << new EdgeBuilder(this, requested, node)
                applyTo(node, cl)
                return node
            }
    
            private static void applyTo(NodeBuilder node, Closure cl) {
                cl.resolveStrategy = Closure.DELEGATE_ONLY
                cl.delegate = node
                cl.call()
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/DefaultPluginRequestApplicator.java

                this.request = request;
                this.resolved = resolved;
            }
    
            public void apply(PluginManagerInternal target) {
                try {
                    try {
                        pluginApplicationListenerBroadcaster.pluginApplied(request);
                        resolved.applyTo(target);
                    } catch (UnknownPluginException e) {
                        throw couldNotApply(request, request.getId(), e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 04:49:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver.java

                metadataValueContainer.finalizeIfNotAlready();
                metadataValueContainer.get().applyTo(result);
            } catch (ExecutionException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top