Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for nodePath (0.4 sec)

  1. test/typeparam/graph.go

    func _New[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]](nodes []_Node) *_Graph[_Node, _Edge] {
    	return &_Graph[_Node, _Edge]{nodes: nodes}
    }
    
    // nodePath holds the path to a node during ShortestPath.
    // This should ideally be a type defined inside ShortestPath,
    // but the translator tool doesn't support that.
    type nodePath[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]] struct {
    	node _Node
    	path []_Edge
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. security/pkg/server/ca/node_auth.go

    John Howard <******@****.***> 1709138498 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/node_matchers_test.cc

      EXPECT_THAT(add.node(),
                  NodeWith(Op("Add"), Name("add"),
                           Inputs(Out(NodeWith(Name("placeholder_a"))),
                                  Out(NodeWith(Name("placeholder_b"))))));
    
      EXPECT_EQ(Explain(add.node(), NodeWith(Inputs())),
                "\nexpected 0 inputs but node has 2");
      EXPECT_EQ(
          Explain(add.node(), NodeWith(Inputs(Out(NodeWith(Name("blah"))), _))),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 14:43:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/debugger/dumper.go

    func (d *CacheDumper) printNodeInfo(name string, n *framework.NodeInfo) string {
    	var nodeData strings.Builder
    	nodeData.WriteString(fmt.Sprintf("Node name: %s\nDeleted: %t\nRequested Resources: %+v\nAllocatable Resources:%+v\nScheduled Pods(number: %v):\n",
    		name, n.Node() == nil, n.Requested, n.Allocatable, len(n.Pods)))
    	// Dumping Pod Info
    	for _, p := range n.Pods {
    		nodeData.WriteString(printPod(p.Pod))
    	}
    	// Dumping nominated pods info on the node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/node_matchers.h

    // Provides a set of matchers for tensorflow nodes.
    //
    // Example usage:
    //
    //  tensorflow::Node* node = ...;
    //  EXPECT_THAT(node, NodeWith(Name("name"), Op("op"),
    //                             Inputs(Out(3, NodeWith(Name("input"))))))
    //
    // Matchable node properties (the expressions that go inside NodeWith(...))
    // are:
    //
    //  - Name(string): matches the node name exactly.  We will probably need to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/data/DocumentDataContainerUtil.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.dom.data
    
    import org.gradle.internal.declarativedsl.dom.DeclarativeDocument
    
    
    fun <D, C : NodeData<D>> C.collectToNodeMap(document: DeclarativeDocument): Map<DeclarativeDocument.DocumentNode, D> =
        buildMap {
            fun visit(node: DeclarativeDocument.DocumentNode) {
                put(node, data(node))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:08 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/data/DocumentDataContainers.kt

        fun data(node: DeclarativeDocument.DocumentNode.PropertyNode): DProperty
        fun data(node: DeclarativeDocument.DocumentNode.ErrorNode): DError
    }
    
    
    typealias NodeData<DNode> = NodeDataContainer<DNode, DNode, DNode, DNode>
    
    
    interface ValueDataContainer<DValue, DValueFactory : DValue, DLiteral : DValue> {
        fun data(value: DeclarativeDocument.ValueNode): DValue = when (value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/upgrade/node/data.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	clientset "k8s.io/client-go/kubernetes"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    // Data is the interface to use for kubeadm upgrade node phases.
    // The "nodeData" type from "cmd/upgrade/node.go" must satisfy this interface.
    type Data interface {
    	EtcdUpgrade() bool
    	RenewCerts() bool
    	DryRun() bool
    	Cfg() *kubeadmapi.UpgradeConfiguration
    	InitCfg() *kubeadmapi.InitConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/config/param/template.go

    		// That's all we need when looking for well-known params.
    		firstIdentifier := n.(*parse.FieldNode).Ident[0]
    		out.Insert(firstIdentifier)
    	case parse.NodeIf:
    		out.Merge(getParams(n.(*parse.IfNode).Pipe))
    	case parse.NodeWith:
    		out.Merge(getParams(n.(*parse.WithNode).Pipe))
    	case parse.NodeRange:
    		out.Merge(getParams(n.(*parse.RangeNode).Pipe))
    	case parse.NodeAction:
    		out.Merge(getParams(n.(*parse.ActionNode).Pipe))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 21:32:48 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top