Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 127 for nodeType (0.85 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTransformNodeIdBuildOperationIntegrationTest.groovy

            def identities = ops.collect { op ->
                def plannedNodes = op.result.executionPlan as List<Map<String, ?>>
                def transformStepNodeIdentities = plannedNodes*.nodeIdentity.findAll { it.nodeType == NodeIdentity.NodeType.TRANSFORM_STEP.name() }
                return transformStepNodeIdentities
            }
            def targetColors = (identities.collect { it*.targetAttributes.color }.flatten() as Set<String>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultPlannedTransformStepIdentity.java

            this.dependenciesConfigurationIdentity = dependenciesConfigurationIdentity;
            this.transformStepNodeId = transformStepNodeId;
        }
    
        @Override
        public NodeType getNodeType() {
            return NodeType.TRANSFORM_STEP;
        }
    
        @Override
        public String getConsumerBuildPath() {
            return consumerBuildPath;
        }
    
        @Override
        public String getConsumerProjectPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. 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)
  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/networking/core/cluster_test.go

    type clusterTest struct {
    	// Required
    	t                 testing.TB
    	serviceHostname   string
    	serviceResolution model.Resolution
    	nodeType          model.NodeType
    	locality          *core.Locality
    	mesh              *meshconfig.MeshConfig
    	destRule          proto.Message
    	sidecar           *networking.Sidecar
    	peerAuthn         *authn_beta.PeerAuthentication
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/build/BuildOperationFiringBuildWorkPreparer.java

                    return ImmutableList.copyOf(taskPlan);
                }
    
                @Override
                public List<PlannedNode> getExecutionPlan(Set<NodeIdentity.NodeType> types) {
                    if (types.isEmpty()) {
                        return Collections.emptyList();
                    }
    
                    @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 7.9K 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. android/guava/src/com/google/common/collect/TreeTraverser.java

     * implement it:
     *
     * <pre>{@code
     * // won't work
     * TreeTraverser<NodeType> traverser = node -> node.getChildNodes();
     * }</pre>
     *
     * Instead, you can pass a lambda expression to the {@code using} factory method:
     *
     * <pre>{@code
     * TreeTraverser<NodeType> traverser = TreeTraverser.using(node -> node.getChildNodes());
     * }</pre>
     *
     * @author Louis Wasserman
     * @since 15.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pkg/bootstrap/option/instances.go

    func Cluster(value string) Instance {
    	return newOption("cluster", value)
    }
    
    func NodeID(value string) Instance {
    	return newOption("nodeID", value)
    }
    
    func NodeType(value string) Instance {
    	ntype := strings.Split(value, "~")[0]
    	return newOption("nodeType", ntype)
    }
    
    func XdsType(value string) Instance {
    	return newOption("xds_type", value)
    }
    
    func Region(value string) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top