Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for nodeType (0.23 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. src/main/java/jcifs/netbios/NbtAddress.java

            this.nodeType = nodeType;
        }
    
    
        NbtAddress ( Name hostName, int address, boolean groupName, int nodeType, boolean isBeingDeleted, boolean isInConflict, boolean isActive,
                boolean isPermanent, byte[] macAddress ) {
    
            /*
             * The NodeStatusResponse.readNodeNameArray method may also set this
             * information. These two places where node status data is populated should
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            this.nodeType = nodeType;
        }
    
        NbtAddress( Name hostName,
                    int address,
                    boolean groupName,
                    int nodeType,
                    boolean isBeingDeleted,
                    boolean isInConflict,
                    boolean isActive,
                    boolean isPermanent,
                    byte[] macAddress ) {
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top