Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 217 for subkeys (0.17 sec)

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

    		{
    			name:        "destination rule with subsets",
    			cluster:     &cluster.Cluster{Name: "foo", ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS}},
    			clusterMode: DefaultClusterMode,
    			service:     service,
    			port:        servicePort[0],
    			proxyView:   model.ProxyViewAll,
    			destRule: &networking.DestinationRule{
    				Host: "foo.default.svc.cluster.local",
    				Subsets: []*networking.Subset{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/registry/registry_test.go

    	subk, _, err := registry.CreateKey(k, "subkey", registry.CREATE_SUB_KEY)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    	defer subk.Close()
    
    	defer registry.DeleteKey(k, "subkey")
    
    	ki, err := k.Stat()
    	if err != nil {
    		t.Error(err)
    		return
    	}
    	if ki.SubKeyCount != 1 {
    		t.Error("key must have 1 subkey")
    	}
    	if ki.MaxSubKeyLen != 6 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. cmd/admin-handlers-idp-ldap.go

    	if listType != "sts-only" && listType != "svcacc-only" && listType != "" {
    		// default to both
    		listType = ""
    	}
    
    	var serviceAccounts []auth.Credentials
    	var stsKeys []auth.Credentials
    
    	if listType == "" || listType == "sts-only" {
    		stsKeys, err = globalIAMSys.ListSTSAccounts(ctx, targetAccount)
    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 19:58:48 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/match/matchers.go

    // MultiVersion matches echos that have Multi-version specific setup.
    var MultiVersion Matcher = func(i echo.Instance) bool {
    	if len(i.Config().Subsets) != 2 {
    		return false
    	}
    	var matchIstio, matchLegacy bool
    	for _, s := range i.Config().Subsets {
    		if s.Version == "vistio" {
    			matchIstio = true
    		} else if s.Version == "vlegacy" && s.Annotations[annotation.SidecarInject.Name] == "false" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. pkg/test/kube/util.go

    		}
    
    		eps, err := a.CoreV1().Endpoints(ns).Get(context.TODO(), name, metav1.GetOptions{})
    		if err != nil {
    			return err
    		}
    		if len(eps.Subsets) == 0 {
    			return fmt.Errorf("%s/%v endpoint not ready: no subsets", ns, name)
    		}
    
    		for _, subset := range eps.Subsets {
    			if len(subset.Addresses) > 0 && len(subset.NotReadyAddresses) == 0 {
    				service = s
    				endpoints = eps
    				return nil
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    					label{
    						keyX: addString(strings, k),
    						strX: addString(strings, v),
    					},
    				)
    			}
    		}
    		var numKeys []string
    		for k := range s.NumLabel {
    			numKeys = append(numKeys, k)
    		}
    		sort.Strings(numKeys)
    		for _, k := range numKeys {
    			keyX := addString(strings, k)
    			vs := s.NumLabel[k]
    			units := s.NumUnit[k]
    			for i, v := range vs {
    				var unitX int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. tests/integration/pilot/label_test.go

            host: {{.Destination}}
            subset: my-subset
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: {{.Destination}}
    spec:
      host: {{.Destination}}
      subsets:
      - name: my-subset
        labels:
          subset: my-subset`
    			t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    				"Destination": "a",
    			}, cfg).ApplyOrFail(t)
    			from := apps.B[0]
    			to := apps.A
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. tests/integration/security/reachability_test.go

    				// Create a custom echo deployment in NS1 with subsets that allows us to test the
    				// migration of a workload to istio (from no sidecar to sidecar).
    				migrationApp = deployment.New(t).
    					WithClusters(t.Clusters()...).WithConfig(echo.Config{
    					Namespace:      echo1NS,
    					Service:        migrationServiceName,
    					ServiceAccount: true,
    					Ports:          ports.All(),
    					Subsets: []echo.SubsetConfig{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. tests/integration/pilot/original_src_addr_test.go

    		RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			if t.Settings().Skip(echo.TProxy) {
    				t.Skip()
    			}
    			workloads, err := apps.A[0].Workloads()
    			if err != nil {
    				t.Errorf("failed to get Subsets: %v", err)
    				return
    			}
    			// check the server can see the client's original ip
    			var srcIps []string
    			for _, w := range workloads {
    				srcIps = append(srcIps, w.Address())
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. tests/integration/telemetry/tracing/tracing.go

    				Service:   fmt.Sprintf("client-%s", clName),
    				Namespace: appNsInst,
    				Cluster:   c,
    				Ports:     nil,
    				Subsets:   []echo.SubsetConfig{{}},
    			}).
    			WithConfig(echo.Config{
    				Service:   "server",
    				Namespace: appNsInst,
    				Cluster:   c,
    				Subsets:   []echo.SubsetConfig{{}},
    				Ports: []echo.Port{
    					{
    						Name:         "http",
    						Protocol:     protocol.HTTP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top