Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 177 for subkeys (0.32 sec)

  1. cmd/license-update.go

    		return
    	}
    
    	if result.Dynamic {
    		if err := applyDynamicConfigForSubSys(GlobalContext, objectAPI, result.Cfg, result.SubSys); err != nil {
    			subnetLogIf(ctx, fmt.Errorf("error applying subnet dynamic config: %w", err))
    			return
    		}
    		globalNotificationSys.SignalConfigReload(result.SubSys)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/file/store_test.go

    kind: DestinationRule
    metadata:
      name: productpage
      labels:
        version: %s
    spec:
      host: productpage
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
      subsets:
      - name: %s
        labels:
          version: %s`
    		config := fmt.Sprintf(configTemplate, version, version, version)
    		err := src.ApplyContent("test", config)
    		g.Expect(err).To(BeNil())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 18:44:58 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/echotest/filters_test.go

    	// naked pod (uninjected)
    	naked1 = &fakeInstance{Cluster: cls1, Namespace: echo1NS, Service: "naked", Subsets: []echo.SubsetConfig{{
    		Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    	}}}
    	naked2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "naked", Subsets: []echo.SubsetConfig{{
    		Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    	}}}
    	// external svc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top