Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for nodePath (0.71 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. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    	if params := list.Type().Parameters(); len(params) > 0 {
    		lt := params[0]
    		nodePath := list.Path()
    		if nodePath != nil {
    			// Provide path if we have it so that a OpenAPIv3 maxLength validation can be looked up, if it exists
    			// for this node.
    			path := make([]string, len(nodePath)+1)
    			copy(path, nodePath)
    			path[len(nodePath)] = "@items"
    			return &itemsNode{path: path, t: lt, expr: nil}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      auto xla_compile = NodeWith(Op("_XlaCompile"), Attr("must_compile", false));
      auto predicated_compilation_key =
          NodeWith(Op("Switch"), Inputs(Out(0, xla_compile), Out(1, xla_compile)));
      auto xla_run =
          NodeWith(Op("_XlaRun"), Inputs(Out(1, predicated_compilation_key)));
      auto tf_call =
          NodeWith(Op("StatefulPartitionedCall"),
                   CtrlDeps(NodeWith(Op("Identity"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      const int64_t one_64 = 1;
    
      auto m_input = Out(NodeWith(Op("Placeholder"), Name("input")));
      auto m_begin_s64 = Out(NodeWith(
          Op("Cast"), Inputs(Out(NodeWith(Op("Placeholder"), Name("begin"))))));
      auto m_input_shape = Out(NodeWith(Op("Shape"), Inputs(m_input)));
      auto m_slice_size_0 = Out(NodeWith(
          Op("Sub"), AssignedDevice(kHostName),
          Inputs(
              Out(NodeWith(Op("Slice"), AssignedDevice(kHostName),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. 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)
  8. cmd/kubeadm/app/cmd/upgrade/node.go

    // DryRun returns the dryRun flag.
    func (d *nodeData) DryRun() bool {
    	return d.dryRun
    }
    
    // EtcdUpgrade returns the etcdUpgrade flag.
    func (d *nodeData) EtcdUpgrade() bool {
    	return d.etcdUpgrade
    }
    
    // RenewCerts returns the renewCerts flag.
    func (d *nodeData) RenewCerts() bool {
    	return d.renewCerts
    }
    
    // Cfg returns upgradeConfiguration.
    func (d *nodeData) Cfg() *kubeadmapi.UpgradeConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top