Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,930 for applyTo (0.29 sec)

  1. tests/integration/pilot/common/routing.go

                end
      - applyTo: VIRTUAL_HOST
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: MERGE
          value:
            request_headers_to_add:
            - header:
                key: x-vhost-outbound
                value: "hello world"
      - applyTo: CLUSTER
        match:
          context: SIDECAR_OUTBOUND
          cluster: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/options/authentication.go

    			}
    		}
    	}
    
    	return ret, nil
    }
    
    // ApplyTo requires already applied OpenAPIConfig and EgressSelector if present.
    // The input context controls the lifecycle of background goroutines started to reload the authentication config file.
    func (o *BuiltInAuthenticationOptions) ApplyTo(
    	ctx context.Context,
    	authInfo *genericapiserver.AuthenticationInfo,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver.java

            }
    
            @Override
            public void attempted(ExternalResourceName location) {
    
            }
    
            @Override
            public void applyTo(ResourceAwareResolveResult target) {
                throw new UnsupportedOperationException();
            }
        }
    
        private static class DefaultComponentVersionsLister implements ComponentMetadataListerDetails {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

        }
    
        def "can attach a mutator with inputs to all elements linked from an element"() {
            given:
            registry.register("parent") { it.unmanagedNode Integer, { MutableModelNode node ->
                node.applyTo(allLinks(), ModelActionRole.Mutate) {
                    it.type(Bean).action(String) { Bean bean, String prefix ->
                        bean.value = "$prefix: $bean.value"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/token.go

    				bto.TokenStr = args[0]
    			}
    			klog.V(1).Infoln("[token] validating mixed arguments")
    			if err := validation.ValidateMixedArguments(tokenCmd.Flags()); err != nil {
    				return err
    			}
    
    			if err := bto.ApplyTo(cfg); err != nil {
    				return err
    			}
    
    			klog.V(1).Infoln("[token] getting Clientsets from kubeconfig file")
    			kubeConfigFile = cmdutil.GetKubeConfigPath(kubeConfigFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/networking/core/accesslog_test.go

    		ConfigPointers: nil,
    		ConfigString: `
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: access-log-format
      namespace: default
    spec:
      configPatches:
      - applyTo: NETWORK_FILTER
        match:
          context: ANY
          listener:
            filterChain:
              filter:
                name: envoy.filters.network.tcp_proxy
        patch:
          operation: MERGE
          value:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    		"Note that this can result in authentication that treats all requests as anonymous.")
    }
    
    func (s *DelegatingAuthenticationOptions) ApplyTo(authenticationInfo *server.AuthenticationInfo, servingInfo *server.SecureServingInfo, openAPIConfig *openapicommon.Config) error {
    	if s == nil {
    		authenticationInfo.Authenticator = nil
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	o.WebhookOptions.AddFlags(fs)
    	o.WebhookOptions.BatchOptions.AddFlags(pluginwebhook.PluginName, fs)
    	o.WebhookOptions.TruncateOptions.AddFlags(pluginwebhook.PluginName, fs)
    }
    
    func (o *AuditOptions) ApplyTo(
    	c *server.Config,
    ) error {
    	if o == nil {
    		return nil
    	}
    	if c == nil {
    		return fmt.Errorf("server config must be non-nil")
    	}
    
    	// 1. Build policy evaluator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  10. 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)
Back to top