Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for serviceOf (0.3 sec)

  1. pkg/proxy/config/config_test.go

    	}
    	fakeWatch.Add(service2)
    	services := []*v1.Service{service2, service1}
    	handler.ValidateServices(t, services)
    
    	fakeWatch.Delete(service1)
    	services = []*v1.Service{service2}
    	handler.ValidateServices(t, services)
    }
    
    func TestNewServicesMultipleHandlersAddedAndNotified(t *testing.T) {
    	_, ctx := klogtesting.NewTestContext(t)
    	client := fake.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repairip.go

    // The bidirectional relation is achieved using the following fields:
    // Service.Spec.Cluster == IPAddress.Name AND IPAddress.ParentRef == Service
    //
    // The controller use two reconcile loops, one for Services and other for IPAddress.
    // The Service reconcile loop verifies the bidirectional relation exists and is correct.
    // 1. Service_X [ClusterIP_X]  <------>  IPAddress_X [Ref:Service_X]   ok
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/service.go

    }
    
    // ServiceDiscovery enumerates Istio service instances.
    // nolint: lll
    type ServiceDiscovery interface {
    	NetworkGatewaysWatcher
    
    	// Services list declarations of all services in the system
    	Services() []*Service
    
    	// GetService retrieves a service by host name if it exists
    	GetService(hostname host.Name) *Service
    
    	// GetProxyServiceTargets returns the service targets that co-located with a given Proxy
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. pkg/proxy/endpointslicecache.go

    func (cache *EndpointSliceCache) getEndpointsMap(serviceNN types.NamespacedName, sliceDataByName endpointSliceDataByName) EndpointsMap {
    	endpointInfoBySP := cache.endpointInfoByServicePort(serviceNN, sliceDataByName)
    	return endpointsMapFromEndpointInfo(endpointInfoBySP)
    }
    
    // endpointInfoByServicePort groups endpoint info by service port name and address.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (1)
  5. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.api.reporting.components.internal.TypeAwareBinaryRenderer> is not annotated with @ServiceScope in (TypeAwareBinaryRenderer.java:0)
    Class <org.gradle.api.services.BuildServiceParameters> is not annotated with @ServiceScope in (BuildServiceParameters.java:0)
    Class <org.gradle.api.services.BuildServiceRegistry> is not annotated with @ServiceScope in (BuildServiceRegistry.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/conversion_test.go

    	}
    
    	service := ConvertService(extSvc, domainSuffix, clusterID, nil)
    	if service == nil {
    		t.Fatalf("could not convert external service")
    	}
    
    	if len(service.Ports) != len(extSvc.Spec.Ports) {
    		t.Fatalf("incorrect number of ports => %v, want %v",
    			len(service.Ports), len(extSvc.Spec.Ports))
    	}
    
    	if !service.External() {
    		t.Fatal("service should be external")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. cmd/auth-handler.go

    		// Get credential information from the request.
    		cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3)
    		if s3Err != ErrNone {
    			return cred, owner, s3Err
    		}
    
    		// we only support V4 (no presign) with auth body
    		s3Err = isReqAuthenticated(ctx, r, region, serviceS3)
    	}
    	if s3Err != ErrNone {
    		return cred, owner, s3Err
    	}
    
    	logger.GetReqInfo(ctx).Cred = cred
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. cmd/signature-v4.go

    		payload,
    	}, "\n")
    	return canonicalRequest
    }
    
    // getScope generate a string of a specific date, an AWS region, and a service.
    func getScope(t time.Time, region string) string {
    	scope := strings.Join([]string{
    		t.Format(yyyymmdd),
    		region,
    		string(serviceS3),
    		"aws4_request",
    	}, SlashSeparator)
    	return scope
    }
    
    // getStringToSign a string based on selected query values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tls.go

    		// service's port, then pick the service port if and only if the service has only one port. If service
    		// has multiple ports, then route to a cluster with the listener port (i.e. sidecar defined port) - the
    		// traffic will most likely blackhole.
    		port := listenPort.Port
    		if len(service.Ports) == 1 {
    			port = service.Ports[0].Port
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    func TestEgressGatewayTls(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			// Apply Egress Gateway for service namespace to originate external traffic
    
    			createGateway(t, t, appNS, serviceNS, inst.Settings().EgressGatewayServiceNamespace,
    				inst.Settings().EgressGatewayServiceName, inst.Settings().EgressGatewayIstioLabel)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top