Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for nodeType (0.32 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/build/PlannedNodeGraphTest.groovy

        }
    
        static class TestNodeIdentity implements NodeIdentity {
            NodeType nodeType
            String name
    
            TestNodeIdentity(NodeType nodeType, String name) {
                this.nodeType = nodeType
                this.name = name
            }
    
            @Override
            NodeType getNodeType() {
                return nodeType
            }
    
            @Override
            String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 13:11:56 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. api/go1.18.txt

    pkg text/template/parse, method (BreakNode) Type() NodeType
    pkg text/template/parse, method (ContinueNode) Position() Pos
    pkg text/template/parse, method (ContinueNode) Type() NodeType
    pkg text/template/parse, type BreakNode struct
    pkg text/template/parse, type BreakNode struct, Line int
    pkg text/template/parse, type BreakNode struct, embedded NodeType
    pkg text/template/parse, type BreakNode struct, embedded Pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/ctrlz/assets/static/js/clipboard-1.7.1.min.js

    u=n[a]={exports:{}};e[a][0].call(u.exports,function(t){var n=e[a][1][t];return i(n||t)},u,u.exports,t,e,n,o)}return n[a].exports}for(var r="function"==typeof require&&require,a=0;a<o.length;a++)i(o[a]);return i}({1:[function(t,e,n){function o(t,e){for(;t&&t.nodeType!==i;){if("function"==typeof t.matches&&t.matches(e))return t;t=t.parentNode}}var i=9;if("undefined"!=typeof Element&&!Element.prototype.matches){var r=Element.prototype;r.matches=r.matchesSelector||r.mozMatchesSelector||r.msMatchesSelector||r.oM...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. 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)
Back to top