Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,811 for meth (0.15 sec)

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

    		MaxRetries:         &wrapperspb.UInt32Value{Value: math.MaxUint32},
    		MaxRequests:        &wrapperspb.UInt32Value{Value: math.MaxUint32},
    		MaxConnections:     &wrapperspb.UInt32Value{Value: math.MaxUint32},
    		MaxPendingRequests: &wrapperspb.UInt32Value{Value: math.MaxUint32},
    		TrackRemaining:     true,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/conversion.go

    	return
    }
    
    // ConvertIngressV1alpha3 converts from ingress spec to Istio Gateway
    func ConvertIngressV1alpha3(ingress knetworking.Ingress, mesh *meshconfig.MeshConfig, domainSuffix string) config.Config {
    	gateway := &networking.Gateway{}
    	gateway.Selector = getIngressGatewaySelector(mesh.IngressSelector, mesh.IngressService)
    
    	for i, tls := range ingress.Spec.TLS {
    		if tls.SecretName == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    	env.ServiceDiscovery = serviceDiscovery
    	env.ConfigStore = configStore
    	env.Watcher = mesh.NewFixedWatcher(meshConfig)
    
    	pushContext := model.NewPushContext()
    	env.Init()
    	_ = pushContext.InitContext(env, nil, nil)
    	env.SetPushContext(pushContext)
    	pushContext.SetDestinationRulesForTesting([]config.Config{
    		{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             "acme",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. pkg/adsc/adsc.go

    	}
    	c := &config.Config{
    		Meta: config.Meta{
    			ResourceVersion: m.Metadata.Version,
    			Labels:          m.Metadata.Labels,
    			Annotations:     m.Metadata.Annotations,
    		},
    	}
    
    	if !config.ObjectInRevision(c, a.cfg.Revision) { // In case upstream does not support rev in node meta.
    		return nil, nil
    	}
    
    	if c.Meta.Annotations == nil {
    		c.Meta.Annotations = make(map[string]string)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  5. pkg/config/schema/collections/collections.gen.go

    	sigsk8siogatewayapiapisv1beta1 "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	istioioapiextensionsv1alpha1 "istio.io/api/extensions/v1alpha1"
    	istioioapimeshv1alpha1 "istio.io/api/mesh/v1alpha1"
    	istioioapimetav1alpha1 "istio.io/api/meta/v1alpha1"
    	istioioapinetworkingv1alpha3 "istio.io/api/networking/v1alpha3"
    	istioioapinetworkingv1beta1 "istio.io/api/networking/v1beta1"
    	istioioapisecurityv1beta1 "istio.io/api/security/v1beta1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/test"
    )
    
    var (
    	GlobalTime = time.Now()
    	httpNone   = &config.Config{
    		Meta: config.Meta{
    			GroupVersionKind:  gvk.ServiceEntry,
    			Name:              "httpNone",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. pilot/pkg/model/proxy_config_test.go

    			pc := mesh.DefaultProxyConfig()
    			proto.Merge(pc, tc.expected)
    
    			assert.Equal(t, merged, pc)
    			after, _ := protomarshal.ToJSON(m)
    			assert.Equal(t, original, after, "mesh config should not be mutated")
    		})
    	}
    }
    
    func newProxyConfig(name, ns string, spec config.Spec) config.Config {
    	return config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.ProxyConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/accesslog_test.go

    				},
    			},
    		},
    	})
    
    	configStore := memory.Make(collections.Pilot)
    	configStore.Create(config.Config{
    		Meta: config.Meta{
    			Name:             "test",
    			Namespace:        "default",
    			GroupVersionKind: gvk.Telemetry,
    		},
    		Spec: &tpb.Telemetry{
    			Selector: &v1beta1.WorkloadSelector{
    				MatchLabels: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tls.go

    						out = append(out, &filterChainOpts{
    							metadata:         util.BuildConfigInfoMetadata(cfg.Meta),
    							sniHosts:         match.SniHosts,
    							destinationCIDRs: destinationCIDRs,
    							networkFilters:   lb.buildOutboundNetworkFilters(tls.Route, listenPort, cfg.Meta, false),
    						})
    						hasTLSMatch = true
    					}
    					matchHasBeenHandled.Insert(matchHash)
    				}
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.pb.go

    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto
    
    package v1beta1
    
    import (
    	fmt "fmt"
    
    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    	strings "strings"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top