Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for ConfigType (0.43 sec)

  1. istioctl/pkg/authz/listener.go

    	rbacTCP  []*rbactcp.RBAC
    }
    
    type parsedListener struct {
    	filterChains []*filterChain
    }
    
    func getFilterConfig(filter *listener.Filter, out proto.Message) error {
    	switch c := filter.ConfigType.(type) {
    	case *listener.Filter_TypedConfig:
    		if err := c.TypedConfig.UnmarshalTo(out); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging.go

    					},
    				},
    			},
    			TransportApiVersion:     core.ApiVersion_V3,
    			FilterStateObjectsToLog: filterObjects,
    		},
    	}
    
    	return &accesslog.AccessLog{
    		Name:       TCPEnvoyALSName,
    		ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(fl)},
    	}
    }
    
    func fileAccessLogFromTelemetry(prov *meshconfig.MeshConfig_ExtensionProvider_EnvoyFileAccessLogProvider) *accesslog.AccessLog {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pilot/pkg/networking/grpcgen/lds.go

    		if rules != nil && len(rules.Policies) > 0 {
    			rbac := &rbachttp.RBAC{
    				Rules: rules,
    			}
    			fc = append(fc,
    				&hcm.HttpFilter{
    					Name:       RBACHTTPFilterNameDeny,
    					ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: protoconv.MessageToAny(rbac)},
    				})
    		}
    		arules := buildRBAC(node, push, nameSuffix, tlsContext, rbacpb.RBAC_ALLOW, policies.Allow)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    					userFilter.ConfigType.(*listener.Filter_TypedConfig).TypedConfig.TypeUrl = filter.GetTypedConfig().TypeUrl
    				}
    				if retVal, err = util.MergeAnyWithAny(filter.GetTypedConfig(), userFilter.GetTypedConfig()); err != nil {
    					retVal = filter.GetTypedConfig()
    				}
    			}
    			filter.Name = filterName
    			if retVal != nil {
    				filter.ConfigType = &listener.Filter_TypedConfig{TypedConfig: retVal}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/ep_filters_test.go

    						{Address: "40.0.0.1", Weight: 6},
    					},
    					Weight: 6,
    				},
    			},
    			wantWorkloadMetadata: []string{
    				";ns;example;;cluster4",
    			},
    		},
    	}
    
    	for configType, cases := range mtlsCases {
    		t.Run(configType, func(t *testing.T) {
    			for name, pa := range cases {
    				t.Run(name, func(t *testing.T) {
    					cfgs := pa.Configs
    					if pa.Config.Name != "" {
    						cfgs = append(cfgs, pa.Config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

    import org.codelibs.fess.app.service.RoleTypeService;
    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.app.web.base.FessAdminAction;
    import org.codelibs.fess.es.config.exentity.CrawlingConfig.ConfigType;
    import org.codelibs.fess.es.config.exentity.FileConfig;
    import org.codelibs.fess.helper.PermissionHelper;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.util.ComponentUtil;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

    import org.codelibs.fess.app.service.WebConfigService;
    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.app.web.base.FessAdminAction;
    import org.codelibs.fess.es.config.exentity.CrawlingConfig.ConfigType;
    import org.codelibs.fess.es.config.exentity.WebConfig;
    import org.codelibs.fess.helper.PermissionHelper;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.util.ComponentUtil;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. pkg/config/validation/envoyfilter/envoyfilter_test.go

    		})
    	}
    }
    
    func TestRecurseMissingTypedConfig(t *testing.T) {
    	good := &listener.Filter{
    		Name:       wellknown.TCPProxy,
    		ConfigType: &listener.Filter_TypedConfig{TypedConfig: nil},
    	}
    	ecds := &hcm.HttpFilter{
    		Name:       "something",
    		ConfigType: &hcm.HttpFilter_ConfigDiscovery{},
    	}
    	bad := &listener.Filter{
    		Name: wellknown.TCPProxy,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/sds/sdsservice.go

    						Specifier: &core.DataSource_InlineBytes{
    							InlineBytes: s.CertificateChain,
    						},
    					},
    					PrivateKeyProvider: &tls.PrivateKeyProvider{
    						ProviderName: "cryptomb",
    						ConfigType: &tls.PrivateKeyProvider_TypedConfig{
    							TypedConfig: msg,
    						},
    						Fallback: crypto.GetFallback().GetValue(),
    					},
    				},
    			}
    		case *mesh.PrivateKeyProvider_Qat:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_waypoint.go

    			StartChildSpan:       false,
    			SuppressDebugHeaders: ph.SuppressDebugHeaders,
    		}),
    	}
    	return []*listener.Filter{
    		{
    			Name:       wellknown.HTTPConnectionManager,
    			ConfigType: &listener.Filter_TypedConfig{TypedConfig: protoconv.MessageToAny(h)},
    		},
    	}
    }
    
    func (lb *ListenerBuilder) buildConnectTerminateListener(routes []*route.Route) *listener.Listener {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top