Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 287 for serviceOf (0.27 sec)

  1. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/library/src/main/java/Service.java

    /**
     * Marks a class for inclusion in a global service registry.
     */
    public @interface Service {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  2. helm/minio/templates/service.yaml

      {{- if and (eq .Values.service.type "ClusterIP") .Values.service.clusterIP }}
      clusterIP: {{ .Values.service.clusterIP }}
      {{- end }}
      {{- if or (eq .Values.service.type "LoadBalancer") (eq .Values.service.type "NodePort") }}
      externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy | quote }}
      {{- end }}
      {{- if and (eq .Values.service.type "LoadBalancer") .Values.service.loadBalancerSourceRanges }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:05:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/status_test.go

    )
    
    var (
    	serviceIP = "1.2.3.4"
    	hostname  = "foo.bar.com"
    	nodeIP    = "10.0.0.2"
    )
    
    var ingressService = &corev1.Service{
    	ObjectMeta: metav1.ObjectMeta{
    		Name:      "istio-ingress",
    		Namespace: IngressNamespace,
    	},
    	Status: corev1.ServiceStatus{
    		LoadBalancer: corev1.LoadBalancerStatus{
    			Ingress: []corev1.LoadBalancerIngress{{
    				IP: serviceIP,
    			}},
    		},
    	},
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. releasenotes/notes/48621.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 03:20:58 UTC 2024
    - 232 bytes
    - Viewed (0)
  5. pkg/quota/v1/evaluator/core/services.go

    	return []corev1.ScopedResourceSelectorRequirement{}, nil
    }
    
    // convert the input object to an internal service object or error.
    func toExternalServiceOrError(obj runtime.Object) (*corev1.Service, error) {
    	svc := &corev1.Service{}
    	switch t := obj.(type) {
    	case *corev1.Service:
    		svc = t
    	case *api.Service:
    		if err := k8s_api_v1.Convert_core_Service_To_v1_Service(t, svc, nil); err != nil {
    			return nil, err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/user/src/main/java/Service2.java

    @Service
    public class Service2 {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 36 bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    )
    
    func (a *index) ServicesCollection(
    	Services krt.Collection[*v1.Service],
    	ServiceEntries krt.Collection[*networkingclient.ServiceEntry],
    	Waypoints krt.Collection[Waypoint],
    	Namespaces krt.Collection[*v1.Namespace],
    ) krt.Collection[model.ServiceInfo] {
    	ServicesInfo := krt.NewCollection(Services, func(ctx krt.HandlerContext, s *v1.Service) *model.ServiceInfo {
    		portNames := map[int32]model.ServicePortName{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/service.go

    //sys	QueryServiceStatusEx(service Handle, infoLevel uint32, buff *byte, buffSize uint32, bytesNeeded *uint32) (err error) = advapi32.QueryServiceStatusEx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/multicluster/service.go

    			gvk.Service,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (s *ServiceAnalyzer) Analyze(c analysis.Context) {
    	services := map[resource.FullName]map[cluster.ID]*resource.Instance{}
    	c.ForEach(gvk.Service, func(r *resource.Instance) bool {
    		clusterID := r.Origin.ClusterName()
    		if clusterID == "" {
    			return true
    		}
    		if _, ok := services[r.Metadata.FullName]; !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/kustomization/service.yaml

    kind: Service
    apiVersion: v1
    metadata:
      name: the-service
    spec:
      selector:
        deployment: hello
      type: LoadBalancer
      ports:
      - protocol: TCP
        port: 8666
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:29:27 UTC 2019
    - 183 bytes
    - Viewed (0)
Back to top