Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 541 for svc3 (0.04 sec)

  1. src/net/rpc/debug.go

    	// Build a sorted version of the data.
    	var services serviceArray
    	server.serviceMap.Range(func(snamei, svci any) bool {
    		svc := svci.(*service)
    		ds := debugService{svc, snamei.(string), make([]debugMethod, 0, len(svc.method))}
    		for mname, method := range svc.method {
    			ds.Method = append(ds.Method, debugMethod{method, mname})
    		}
    		slices.SortFunc(ds.Method, func(a, b debugMethod) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/memory/discovery.go

    )
    
    // NewServiceDiscovery builds an in-memory ServiceDiscovery
    func NewServiceDiscovery(services ...*model.Service) *ServiceDiscovery {
    	svcs := map[host.Name]*model.Service{}
    	for _, svc := range services {
    		svcs[svc.Hostname] = svc
    	}
    	return &ServiceDiscovery{
    		services:            svcs,
    		instancesByPortNum:  map[string][]*model.ServiceInstance{},
    		instancesByPortName: map[string][]*model.ServiceInstance{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. releasenotes/notes/merge-svc.yaml

    Zhonghu Xu <******@****.***> 1709538577 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 07:49:37 UTC 2024
    - 912 bytes
    - Viewed (0)
  4. pkg/proxy/endpointschangetracker_test.go

    			namespacedName:         types.NamespacedName{Name: "svc1", Namespace: "ns1"},
    			paramEndpointSlice:     generateEndpointSlice("svc1", "ns1", 1, 3, 999, 999, []string{"host1", "host2"}, []*int32{ptr.To[int32](80), ptr.To[int32](443)}),
    			paramRemoveSlice:       false,
    			expectedReturnVal:      true,
    			expectedCurrentChange: map[ServicePortName][]*BaseEndpointInfo{
    				makeServicePortName("ns1", "svc1", "port-0", v1.ProtocolTCP): {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    		}
    
    		hostName := host.Name(event.ID)
    		svc := ec.GetService(hostName)
    		if svc == nil {
    			return fmt.Errorf("unable to find service for host %s", hostName)
    		}
    		return ec.checkEndpoint(exported, event.Endpoints[0])
    	}, serviceExportTimeout)
    }
    
    func (ec *serviceExportCacheImpl) getEndpoint(endpoints *model.EndpointIndex) *model.IstioEndpoint {
    	svcs := ec.Services()
    	for _, s := range svcs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.addService(t, "svc1",
    		map[string]string{},
    		map[string]string{},
    		[]int32{80}, map[string]string{"app": "a"}, "10.0.0.1")
    	s.assertEvent(t, s.podXdsName("pod1"), s.svcXdsName("svc1"))
    
    	s.labelService(t, "svc1", testNS, map[string]string{constants.AmbientUseWaypointLabel: "test-wp"})
    	s.assertEvent(t, s.svcXdsName("svc1"))
    	s.assertNoEvent(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_waypoint.go

    	clusters := []*cluster.Cluster{}
    
    	for _, svc := range svcs {
    		for _, port := range svc.Ports {
    			if port.Protocol == protocol.UDP {
    				continue
    			}
    			if port.Protocol.IsUnsupported() || port.Protocol.IsTCP() {
    				clusters = append(clusters, cb.buildWaypointInboundVIPCluster(proxy, svc, *port, "tcp").build())
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util_test.go

    									StringValue: "/apis/networking.istio.io/v1alpha3/namespaces/default/destination-rule/svcA",
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			"empty metadata",
    			config.Meta{
    				Name:             "svcA",
    				Namespace:        "default",
    				Domain:           "svc.cluster.local",
    				GroupVersionKind: gvk.DestinationRule,
    			},
    			&core.Metadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    			printPod(writer, pod, opts.Revision)
    
    			svcs, err := client.Kube().CoreV1().Services(ns).List(context.TODO(), metav1.ListOptions{})
    			if err != nil {
    				return err
    			}
    
    			matchingServices := make([]corev1.Service, 0, len(svcs.Items))
    			for _, svc := range svcs.Items {
    				if len(svc.Spec.Selector) > 0 {
    					svcSelector := klabels.SelectorFromSet(svc.Spec.Selector)
    					if svcSelector.Matches(podLabels) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. releasenotes/notes/svc-external-name.yaml

    dwq <******@****.***> 1676903817 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 14:36:57 UTC 2023
    - 225 bytes
    - Viewed (0)
Back to top