Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for ConfigType (0.19 sec)

  1. pilot/pkg/networking/core/route/retry/retry_test.go

    					UpdateFrequency: int32(2),
    				}
    				expected := &envoyroute.RetryPolicy_RetryPriority{
    					Name: "envoy.retry_priorities.previous_priorities",
    					ConfigType: &envoyroute.RetryPolicy_RetryPriority_TypedConfig{
    						TypedConfig: protoconv.MessageToAny(previousPrioritiesConfig),
    					},
    				}
    				if !reflect.DeepEqual(policy.RetryPriority, expected) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

                try {
                    boost = Float.parseFloat(value);
                } catch (final Exception e) {}
            }
        }
    
        @Override
        public String getConfigId() {
            return ConfigType.FILE.getConfigId(getId());
        }
    
        @Override
        public CrawlerClientFactory initializeClientFactory(final Supplier<CrawlerClientFactory> creator) {
            if (crawlerClientFactory != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_waypoint.go

    						Segment: &metadata.MetadataKey_PathSegment_Key{
    							Key: "waypoint",
    						},
    					}},
    				},
    			},
    		},
    		TransportSocket: &core.TransportSocket{
    			Name: "tls",
    			ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(&tls.UpstreamTlsContext{
    				CommonTlsContext: ctx,
    			})},
    		},
    	}
    }
    
    func h2connectUpgrade() map[string]*anypb.Any {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

                try {
                    boost = Float.parseFloat(value);
                } catch (final Exception e) {}
            }
        }
    
        @Override
        public String getConfigId() {
            return ConfigType.WEB.getConfigId(getId());
        }
    
        @Override
        public CrawlerClientFactory initializeClientFactory(final Supplier<CrawlerClientFactory> creator) {
            if (crawlerClientFactory != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_traffic_policy.go

    	if c.cluster.TransportSocket != nil {
    		// add an upstream proxy protocol wrapper for transportSocket
    		c.cluster.TransportSocket = &core.TransportSocket{
    			Name: "envoy.transport_sockets.upstream_proxy_protocol",
    			ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(&proxyprotocol.ProxyProtocolUpstreamTransport{
    				Config:          &core.ProxyProtocolConfig{Version: core.ProxyProtocolConfig_Version(proxyProtocol.Version)},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. pilot/pkg/security/authn/policy_applier.go

    	if filterConfigProto == nil {
    		return nil
    	}
    	return &hcm.HttpFilter{
    		Name:       authn_model.EnvoyJwtFilterName,
    		ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: protoconv.MessageToAny(filterConfigProto)},
    	}
    }
    
    func defaultAuthnFilter() *authn_filter.FilterConfig {
    	return &authn_filter.FilterConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/cds.go

    		tlsCtx := buildUpstreamTLSContext(b.push.ServiceAccounts(b.hostname, b.svc.Attributes.Namespace))
    		c.TransportSocket = &core.TransportSocket{
    			Name:       transportSocketName,
    			ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(tlsCtx)},
    		}
    	}
    }
    
    // TransportSocket proto message has a `name` field which is expected to be set to exactly this value by the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_test.go

    				t.Fatalf("got diff: %v", diff)
    			}
    		})
    	}
    }
    
    func buildTestClustersWithTCPKeepalive(t testing.TB, configType ConfigType) []*cluster.Cluster {
    	// Set mesh wide defaults.
    	m := testMesh()
    	if configType != None {
    		m.TcpKeepalive = &networking.ConnectionPoolSettings_TCPSettings_TcpKeepalive{
    			Time: &durationpb.Duration{
    				Seconds: MeshWideTCPKeepaliveSeconds,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/networkfilter_test.go

    	redisFilter := buildRedisFilter("redis", "redis-cluster")
    	if redisFilter.Name != wellknown.RedisProxy {
    		t.Errorf("redis filter name is %s not %s", redisFilter.Name, wellknown.RedisProxy)
    	}
    	if config, ok := redisFilter.ConfigType.(*listener.Filter_TypedConfig); ok {
    		redisProxy := redis.RedisProxy{}
    		if err := config.TypedConfig.UnmarshalTo(&redisProxy); err != nil {
    			t.Errorf("unmarshal failed: %v", err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller.go

    	thirdOctet  int
    	fourthOctet int
    }
    
    func makeInstanceKey(i *model.ServiceInstance) instancesKey {
    	return instancesKey{i.Service.Hostname, i.Service.Attributes.Namespace}
    }
    
    type configType int
    
    const (
    	serviceEntryConfigType configType = iota
    	workloadEntryConfigType
    	podConfigType
    )
    
    // configKeyWithParent is a superset of configKey that also encodes the parent resource. For instance, if something comes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top