Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,577 for vservices (0.19 sec)

  1. pilot/pkg/model/virtualservice.go

    			}
    		}
    	}
    }
    
    // Return merged virtual services and the root->delegate vs map
    func mergeVirtualServicesIfNeeded(
    	vServices []config.Config,
    	defaultExportTo sets.Set[visibility.Instance],
    ) ([]config.Config, map[ConfigKey][]ConfigKey) {
    	out := make([]config.Config, 0, len(vServices))
    	delegatesMap := map[types.NamespacedName]config.Config{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    	}
    }
    
    // AddPublicServices adds the services to context public services - mainly used in tests.
    func (ps *PushContext) AddPublicServices(services []*Service) {
    	ps.ServiceIndex.public = append(ps.ServiceIndex.public, services...)
    }
    
    // AddServiceInstances adds instances to the context service instances - mainly used in tests.
    func (ps *PushContext) AddServiceInstances(service *Service, instances map[int][]*IstioEndpoint) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/service-no-port-name-system-namespace.yaml

    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service2 # Skipped because it has an istio: label
      namespace: istio-system
      labels:
        istio: xxx
    spec:
      selector:
        app: my-service2
      ports:
        - name: foo
          protocol: TCP
          port: 8080
          targetPort: 8080
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service3 # Skipped because it's in a kube system namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/IvyServices.java

    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistration;
    import org.gradle.internal.service.ServiceRegistrationProvider;
    import org.gradle.internal.service.scopes.AbstractGradleModuleServices;
    import org.gradle.ivy.IvyDescriptorArtifact;
    import org.gradle.ivy.IvyModule;
    
    public class IvyServices extends AbstractGradleModuleServices {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            final TestService service
    
            ServiceWithDependency(TestService service) {
                this.service = service
            }
        }
    
        private static class ServiceWithMultipleDependencies {
            final List<TestService> services
    
            ServiceWithMultipleDependencies(List<TestService> services) {
                this.services = services
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/deployment/services.go

    }
    
    // analyzeDeploymentPortProtocol analyzes the specific service mesh deployment
    func (s *ServiceAssociationAnalyzer) analyzeDeploymentPortProtocol(r *resource.Instance, c analysis.Context) {
    	// Find matching services with resulting pod from deployment
    	matchingSvcs := s.findMatchingServices(r, c)
    
    	// Generate a port map from the matching services.
    	// It creates a structure that will allow us to detect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. 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)
  8. pkg/test/framework/components/echo/services.go

    func (d Services) Less(i, j int) bool {
    	return strings.Compare(d[i].Config().ClusterLocalFQDN(), d[j].Config().ClusterLocalFQDN()) < 0
    }
    
    // Swap switches the positions of elements at i and j (used for sorting).
    func (d Services) Swap(i, j int) {
    	d[i], d[j] = d[j], d[i]
    }
    
    // Copy this services array.
    func (d Services) Copy() Services {
    	return append(Services{}, d...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 21 16:42:24 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/ztunnel/configdump/services.go

    			return r
    		}
    		return cmp.Compare(a.Hostname, b.Hostname)
    	})
    	fmt.Fprintln(w, "NAMESPACE\tSERVICE NAME\tSERVICE VIP\tWAYPOINT")
    
    	for _, svc := range svcs {
    		var ip string
    		if len(svc.Addresses) > 0 {
    			_, ip, _ = strings.Cut(svc.Addresses[0], "/")
    		}
    		waypoint := serviceWaypointName(svc, zDump.Services)
    		fmt.Fprintf(w, "%v\t%v\t%v\t%v\n",
    			svc.Namespace, svc.Name, ip, waypoint)
    	}
    	return w.Flush()
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. 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)
Back to top