Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,811 for meth (0.09 sec)

  1. pilot/pkg/xds/bench_test.go

    				Network:        fmt.Sprintf("network-%d", e%numNetworks),
    				ServiceAccount: "something",
    			})
    		}
    		result = append(result, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind:  gvk.ServiceEntry,
    				Name:              "foo-" + strconv.Itoa(s),
    				Namespace:         "default",
    				CreationTimestamp: time.Now(),
    			},
    			Spec: &networking.ServiceEntry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    const (
    	FailoverPriorityLabelDefaultSeparator = '='
    )
    
    func GetLocalityLbSetting(
    	mesh *v1alpha3.LocalityLoadBalancerSetting,
    	destrule *v1alpha3.LocalityLoadBalancerSetting,
    ) *v1alpha3.LocalityLoadBalancerSetting {
    	var enabled bool
    	// Locality lb is enabled if its not explicitly disabled in mesh global config
    	if mesh != nil && (mesh.Enabled == nil || mesh.Enabled.Value) {
    		enabled = true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter_test.go

    			},
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			var configs []*config.Config
    			if tt.destRule != nil {
    				destinationRuleConfig := config.Config{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    						Name:             "tcp-idle-timeout",
    						Namespace:        "not-default",
    					},
    					Spec: tt.destRule,
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util.go

    // The custom "istio" value indicates in-mesh traffic and it's going to be used for routing decisions.
    // Once Envoy supports client-side ALPN negotiation, this should be {"istio", "h2", "http/1.1"}.
    var ALPNInMeshH2 = pm.ALPNInMeshH2
    
    // ALPNInMeshH2WithMxc advertises that Proxy is going to use HTTP/2 when talking to the in-mesh cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. pkg/kube/inject/template.go

    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/types/known/durationpb"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"sigs.k8s.io/yaml"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    var InjectionFuncmap = createInjectionFuncmap()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. pilot/pkg/model/context.go

    	ServiceDiscovery
    
    	// Config interface for listing routing rules
    	ConfigStore
    
    	// Watcher is the watcher for the mesh config (to be merged into the config store)
    	mesh.Watcher
    
    	// NetworksWatcher (loaded from a config map) provides information about the
    	// set of networks inside a mesh and how to route to endpoints in each
    	// network. Each network provides information about the endpoints in a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    			ControllerName: k8s.GatewayController(features.ManagedGatewayController),
    		},
    	}
    	defaultObjects := []runtime.Object{defaultNamespace}
    	store := model.NewFakeStore()
    	if _, err := store.Create(config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.ProxyConfig,
    			Name:             "test",
    			Namespace:        "default",
    		},
    		Spec: &istioio_networking_v1beta1.ProxyConfig{
    			Selector: &istio_type_v1beta1.WorkloadSelector{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/coerce_test.go

    */
    
    package objectmeta
    
    import (
    	"math/rand"
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/apitesting/fuzzer"
    	"k8s.io/apimachinery/pkg/api/equality"
    	metafuzzer "k8s.io/apimachinery/pkg/apis/meta/fuzzer"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. pilot/pkg/autoregistration/controller_test.go

    			ServiceAccount: "sa-a",
    		},
    	}
    	wgA = config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.WorkloadGroup,
    			Namespace:        "a",
    			Name:             "wg-a",
    			Labels: map[string]string{
    				"grouplabel": "notonentry",
    			},
    		},
    		Spec:   tmplA,
    		Status: nil,
    	}
    	wgAWrongNs = config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.WorkloadGroup,
    			Namespace:        "wrong",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  10. cmd/bucket-metadata-sys.go

    		meta.TaggingConfigXML = configData
    		meta.TaggingConfigUpdatedAt = updatedAt
    	case bucketQuotaConfigFile:
    		meta.QuotaConfigJSON = configData
    		meta.QuotaConfigUpdatedAt = updatedAt
    	case objectLockConfig:
    		meta.ObjectLockConfigXML = configData
    		meta.ObjectLockConfigUpdatedAt = updatedAt
    	case bucketVersioningConfig:
    		meta.VersioningConfigXML = configData
    		meta.VersioningConfigUpdatedAt = updatedAt
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top