Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for nodeType (0.71 sec)

  1. src/text/template/parse/node.go

    	return &VariableNode{tr: v.tr, NodeType: NodeVariable, Pos: v.Pos, Ident: append([]string{}, v.Ident...)}
    }
    
    // DotNode holds the special identifier '.'.
    type DotNode struct {
    	NodeType
    	Pos
    	tr *Tree
    }
    
    func (t *Tree) newDot(pos Pos) *DotNode {
    	return &DotNode{tr: t, NodeType: NodeDot, Pos: pos}
    }
    
    func (d *DotNode) Type() NodeType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalker.java

            Class<?> nodeType = resolveType(node);
            TypeMetadata typeMetadata = typeMetadataStore.getTypeMetadata(nodeType);
            if (Provider.class.isAssignableFrom(nodeType)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. pkg/model/proxy.go

    )
    
    // NodeType decides the responsibility of the proxy serves in the mesh
    type NodeType string
    
    const (
    	// SidecarProxy type is used for sidecar proxies in the application containers
    	SidecarProxy NodeType = "sidecar"
    
    	// Router type is used for standalone proxies acting as L7/L4 routers
    	Router NodeType = "router"
    
    	// Waypoint type is used for waypoint proxies
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. pilot/pkg/xds/proxy_dependencies_test.go

    			},
    		)
    	}
    
    	// tests for kind-affect-proxy.
    	for _, nodeType := range []model.NodeType{model.Router, model.SidecarProxy} {
    		proxy := gateway
    		if nodeType == model.SidecarProxy {
    			proxy = sidecar
    		}
    		for k := range UnAffectedConfigKinds[proxy.Type] {
    			cases = append(cases, Case{
    				name:    fmt.Sprintf("kind %s not affect %s", k.String(), nodeType),
    				proxy:   proxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/context.go

    	}
    
    	if len(parts) != 4 {
    		return out, fmt.Errorf("missing parts in the service node %q", nodeID)
    	}
    
    	if !pm.IsApplicationNodeType(NodeType(parts[0])) {
    		return out, fmt.Errorf("invalid node type (valid types: %v) in the service node %q", NodeTypes, nodeID)
    	}
    	out.Type = NodeType(parts[0])
    
    	// Get all IP Addresses from Metadata
    	if hasValidIPAddresses(metadata.InstanceIPs) {
    		out.IPAddresses = metadata.InstanceIPs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry.go

    }
    
    type telemetryFilterConfig struct {
    	metricsConfig
    	Provider      *meshconfig.MeshConfig_ExtensionProvider
    	Metrics       bool
    	AccessLogging bool
    	LogsFilter    *tpb.AccessLogging_Filter
    	NodeType      NodeType
    }
    
    func (t telemetryFilterConfig) MetricsForClass(c networking.ListenerClass) metricConfig {
    	switch c {
    	case networking.ListenerClassGateway:
    		return t.ClientMetrics
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. pkg/adsc/adsc.go

    	Revision string
    
    	// Meta includes additional metadata for the node
    	Meta *pstruct.Struct
    
    	Locality *core.Locality
    
    	// NodeType defaults to sidecar. "ingress" and "router" are also supported.
    	NodeType model.NodeType
    
    	// IP is currently the primary key used to locate inbound configs. It is sent by client,
    	// must match a known endpoint IP. Tests can use a ServiceEntry to register fake IPs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/endpoint_builder.go

    	clusterID              cluster.ID
    	locality               *corev3.Locality
    	destinationRule        *model.ConsolidatedDestRule
    	service                *model.Service
    	clusterLocal           bool
    	nodeType               model.NodeType
    	failoverPriorityLabels []byte
    
    	// These fields are provided for convenience only
    	subsetName   string
    	subsetLabels labels.Instance
    	hostname     host.Name
    	port         int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/status/server.go

    	// the prober.
    	PodIP string
    	// KubeAppProbers is a json with Kubernetes application prober config encoded.
    	KubeAppProbers      string
    	NodeType            model.NodeType
    	StatusPort          uint16
    	AdminPort           uint16
    	IPv6                bool
    	Probes              []ready.Prober
    	EnvoyPrometheusPort int
    	Context             context.Context
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/app/cmd.go

    		return err
    	}
    	return nil
    }
    
    func initProxy(args []string) error {
    	proxyArgs.Type = model.SidecarProxy
    	if len(args) > 0 {
    		proxyArgs.Type = model.NodeType(args[0])
    		if !model.IsApplicationNodeType(proxyArgs.Type) {
    			return fmt.Errorf("Invalid proxy Type: " + string(proxyArgs.Type))
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top