Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 199 for subkeys (0.63 sec)

  1. tests/integration/pilot/istioctl_test.go

    	// details.
    	describeSvcAOutput = regexp.MustCompile(`(?s)Service: a\..*
       Port: http 80/HTTP targets pod port 18080
    .*
    80:
       DestinationRule: a\..* for "a"
          Matching subsets: v1
          No Traffic Policy
    `)
    
    	describePodAOutput = describeSvcAOutput
    )
    
    // This test requires `--istio.test.env=kube` because it tests istioctl doing PodExec
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/deployment/builder.go

    func (b *builder) validateTemplates(config echo.Config, c cluster.Cluster) bool {
    	expected := sets.New[string]()
    	for _, subset := range config.Subsets {
    		expected.InsertAll(parseList(subset.Annotations[annotation.InjectTemplates.Name])...)
    	}
    	if b.templates == nil || b.templates[c.Name()] == nil {
    		return expected.IsEmpty()
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. pilot/pkg/xds/lds_test.go

    	}
    
    	// Expect 9 CDS clusters:
    	// 2 inbound(http, inbound passthroughipv4) notes: no passthroughipv6
    	// 9 outbound (2 http services, 1 tcp service,
    	//   and 2 subsets of http1, 1 blackhole, 1 passthrough)
    	if (len(adsc.GetClusters()) + len(adsc.GetEdsClusters())) != 9 {
    		t.Fatalf("Expected 9 clusters in CDS output. Got %d", len(adsc.GetClusters())+len(adsc.GetEdsClusters()))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	for _, s := range a.services.List() {
    		res = append(res, serviceToAddressInfo(s.Service))
    	}
    	return res
    }
    
    // AddressInformation returns all AddressInfo's in the cluster.
    // This may be scoped to specific subsets by specifying a non-empty addresses field
    func (a *index) AddressInformation(addresses sets.String) ([]model.AddressInfo, sets.String) {
    	if len(addresses) == 0 {
    		// Full update
    		return a.All(), nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. cmd/peer-rest-server.go

    		if err != nil {
    			return np, grid.NewRemoteErr(err)
    		}
    		subSys := vars.Get(peerRESTSubSys)
    		// Apply dynamic values.
    		ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
    		defer cancel()
    		if subSys == "" {
    			err = applyDynamicConfig(ctx, objAPI, srvCfg)
    		} else {
    			err = applyDynamicConfigForSubSys(ctx, objAPI, srvCfg, subSys)
    		}
    		if err != nil {
    			return np, grid.NewRemoteErr(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/tls.go

    	// Runtime predicates cannot be evaluated during config generation. Instead the proxy must be configured to
    	// evaluate them. Examples: SNI hosts, source/destination subnets, etc.
    	//
    	// A list of matches may contain duplicate runtime matches, but different static matches. For example:
    	//
    	// {sni_hosts: A, sourceLabels: X} => destination M
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. common/scripts/kind_provisioner.sh

    # before anything else.
    #
    # Note: Cluster configuration topology file specifies basic configuration of each
    # KinD cluster like its name, pod and service subnets and network_id. If two cluster
    # have the same network_id then they belong to the same network and their pods can
    # talk to each other directly.
    #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

                  classes:
                    description: Classes declares the types of information to monitor
                      for this calico/node, and allows for selective status reporting
                      about certain subsets of information.
                    items:
                      type: string
                    type: array
                  node:
                    description: The node name identifies the Calico node instance for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_windows.go

    	if r0 != 0 {
    		regerrno = Errno(r0)
    	}
    	return
    }
    
    func RegOpenKeyEx(key Handle, subkey *uint16, options uint32, desiredAccess uint32, result *Handle) (regerrno error) {
    	r0, _, _ := Syscall6(procRegOpenKeyExW.Addr(), 5, uintptr(key), uintptr(unsafe.Pointer(subkey)), uintptr(options), uintptr(desiredAccess), uintptr(unsafe.Pointer(result)), 0)
    	if r0 != 0 {
    		regerrno = Errno(r0)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
  10. src/net/http/cookiejar/jar.go

    type Jar struct {
    	psList PublicSuffixList
    
    	// mu locks the remaining fields.
    	mu sync.Mutex
    
    	// entries is a set of entries, keyed by their eTLD+1 and subkeyed by
    	// their name/domain/path.
    	entries map[string]map[string]entry
    
    	// nextSeqNum is the next sequence number assigned to a new cookie
    	// created SetCookies.
    	nextSeqNum uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top