Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for spring (0.1 sec)

  1. pilot/pkg/networking/core/accesslog_test.go

    			proxy: &model.Proxy{
    				ConfigNamespace: "default",
    				Labels:          map[string]string{"app": "test-with-server-accesslog-filter"},
    				Metadata:        &model.NodeMetadata{Labels: map[string]string{"app": "test-with-server-accesslog-filter"}},
    			},
    			tcp:   &tcp.TcpProxy{},
    			class: networking.ListenerClassSidecarOutbound,
    			expected: &tcp.TcpProxy{
    				AccessLog: []*accesslog.AccessLog{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_test.go

    			&meshconfig.MeshConfig_DefaultProviders{Metrics: []string{"prometheus"}},
    			map[string]string{
    				"istio.stats": "{}",
    			},
    		},
    		{
    			"prometheus overrides",
    			[]config.Config{newTelemetry("istio-system", overridesPrometheus)},
    			sidecar,
    			networking.ListenerClassSidecarOutbound,
    			networking.ListenerProtocolHTTP,
    			nil,
    			map[string]string{
    				"istio.stats": cfg,
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    type message struct {
    	messageType *diag.MessageType
    	origin      string
    }
    
    type testCase struct {
    	name             string
    	inputFiles       []string
    	meshConfigFile   string // Optional
    	meshNetworksFile string // Optional
    	analyzer         analysis.Analyzer
    	expected         []message
    	skipAll          bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/endpointshards.go

    type ShardKey struct {
    	Cluster  cluster.ID
    	Provider provider.ID
    }
    
    func (sk ShardKey) String() string {
    	return string(sk.Provider) + "/" + string(sk.Cluster) // format: %s/%s
    }
    
    // MarshalText implements the TextMarshaler interface (for json key usage)
    func (sk ShardKey) MarshalText() (text []byte, err error) {
    	return []byte(sk.String()), nil
    }
    
    // EndpointShards holds the set of endpoint shards of a service. Registries update
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    }
    
    // CheckDuplicates returns all of the hosts provided that are already known
    // If there were no duplicates, all hosts are added to the known hosts.
    func CheckDuplicates(hosts []string, bind string, knownHosts map[string]string) []string {
    	var duplicates []string
    	for _, h := range hosts {
    		if existingBind, ok := knownHosts[h]; ok && bind == existingBind {
    			duplicates = append(duplicates, h)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/client.go

    	schemasByCRDName map[string]resource.Schema
    	client           kube.Client
    	logger           *log.Scope
    
    	// namespacesFilter is only used to initiate filtered informer.
    	filtersByGVK map[config.GroupVersionKind]kubetypes.Filter
    }
    
    type Option struct {
    	Revision     string
    	DomainSuffix string
    	Identifier   string
    	FiltersByGVK map[config.GroupVersionKind]kubetypes.Filter
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging.go

    	}
    }
    
    func fileAccessLogFormat(formatString string) string {
    	if formatString != "" {
    		// From the spec: "NOTE: Istio will insert a newline ('\n') on all formats (if missing)."
    		if !strings.HasSuffix(formatString, "\n") {
    			formatString += "\n"
    		}
    
    		return formatString
    	}
    
    	return EnvoyTextLogFormat
    }
    
    func FileAccessLogFromMeshConfig(path string, mesh *meshconfig.MeshConfig) *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)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
    	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
    	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1beta1.CustomResourceDefinition, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
    	DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error
    	Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1.CustomResourceDefinition, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta.go

    // This is used when resources are spontaneously pushed during Delta XDS
    func requiresResourceNamesModification(url string) bool {
    	return url == v3.AddressType || url == v3.WorkloadType
    }
    
    // neverRemoveDelta checks if a type should never remove resources
    func neverRemoveDelta(url string) bool {
    	// https://github.com/envoyproxy/envoy/issues/32823
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top