Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for GetView (0.11 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                beanInvocation = new MethodInvocation(invocation.getName(), invocation.getReturnType(), invocation.getGenericReturnType(), new Class<?>[]{invocation.getViewType()}, invocation.getView(), invocation.getViewType(), instance, new Object[]{invocation.getView()});
                next.invoke(beanInvocation);
                if (beanInvocation.found()) {
                    invocation.setResult(beanInvocation.getResult());
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    var istioVersionRegexp = regexp.MustCompile(`^([1-9]+)\.([0-9]+)(\.([0-9]+))?`)
    
    // GetView returns a restricted view of the mesh for this proxy. The view can be
    // restricted by network (via ISTIO_META_REQUESTED_NETWORK_VIEW).
    // If not set, we assume that the proxy wants to see endpoints in any network.
    func (node *Proxy) GetView() ProxyView {
    	return newProxyView(node)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    		supportsIPv6:       proxy.SupportsIPv6(),
    		sendHbone:          features.EnableHBONESend || proxy.IsWaypointProxy(),
    		locality:           proxy.Locality,
    		proxyLabels:        proxy.Labels,
    		proxyView:          proxy.GetView(),
    		proxyIPAddresses:   proxy.IPAddresses,
    		configNamespace:    proxy.ConfigNamespace,
    		req:                req,
    		cache:              cache,
    	}
    	if proxy.Metadata != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/endpoint_builder.go

    	service *model.Service, dr *model.ConsolidatedDestRule,
    ) *EndpointBuilder {
    	b := EndpointBuilder{
    		clusterName:     clusterName,
    		network:         proxy.Metadata.Network,
    		proxyView:       proxy.GetView(),
    		clusterID:       proxy.Metadata.ClusterID,
    		locality:        proxy.Locality,
    		destinationRule: dr,
    		service:         service,
    		clusterLocal:    push.IsClusterLocal(service),
    		nodeType:        proxy.Type,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

                TomlTable bundlesTable = result.getTable(BUNDLES_KEY);
                TomlTable versionsTable = result.getTable(VERSIONS_KEY);
                TomlTable pluginsTable = result.getTable(PLUGINS_KEY);
                Sets.SetView<String> unknownTle = Sets.difference(result.keySet(), TOP_LEVEL_ELEMENTS);
                if (!unknownTle.isEmpty()) {
                    throw throwVersionCatalogProblemException(builder ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top