Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 469 for node_ (0.05 sec)

  1. tensorflow/cc/framework/ops.cc

    Output Operation::output(int32_t i) const {
      CHECK_NOTNULL(node_);
      CHECK_GE(i, 0);
      CHECK_LT(i, node_->num_outputs());
      return Output(node_, i);
    }
    
    uint64 Operation::hash(int32_t index) const {
      return ::tensorflow::Hash64(reinterpret_cast<const char*>(&node_),
                                  sizeof(Node*), index);
    }
    
    Operation::Inputs Operation::GetInputs(Node* node) {
      Operation::Inputs inputs;
      if (node != nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/ops.h

      Output output(int32_t i) const;
    
      Node* node() const { return node_; }
    
      uint64 hash(int32_t index) const;
    
      bool operator==(const Operation& other) const { return node_ == other.node_; }
    
     private:
      typedef std::vector<std::pair<Node*, int32>> Inputs;
      static Inputs GetInputs(Node* node);
    
      Inputs inputs_;
      Node* node_;
    };
    
    /// Represents a tensor value produced by an Operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            def rootNode = Mock(Node)
            def node1 = Mock(Node)
            def node2 = Mock(Node)
            def node3 = Mock(Node)
            def node4 = Mock(Node)
            def node5 = Mock(Node)
            def node6 = Mock(Node)
            def node7 = Mock(Node)
    
            hierarchy.recordNodeAccessingLocations(rootNode, [root.absolutePath])
            hierarchy.recordNodeAccessingLocations(node1, [root.file("location").absolutePath])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    		},
    		// there are 2 regions, say regionChina(node1,node3,node4) and regionIndia(node2,node5), both regions have nodes that match the preference.
    		// But there are more nodes(actually more existing pods) in regionChina that match the preference than regionIndia.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				st.MakePod().Name("p2").UID("p2").Namespace(v1.NamespaceDefault).Node("node2").Req(mediumRes).Obj(),
    			},
    			// even though node1 will fail with error but node2 will still be returned as a valid nominated node.
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(largeRes).Label("error", "true").Obj(),
    				st.MakeNode().Name("node2").Capacity(largeRes).Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                [
                    taskMatcher("node1", ":producer:producer", []),
                    transformStepMatcher("node2", expectedTransformId1, ["node1"]),
                    transformStepMatcher("node3", expectedTransformId2, ["node1"]),
                    taskMatcher("node4", ":consumer1:resolve", ["node2"]),
                    taskMatcher("node5", ":consumer2:resolve", ["node3"]),
                ]
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    			},
    			lease:                   createNodeLease("node0", metav1.NewMicroTime(fakeNow.Time)),
    			expectedRequestCount:    1, // List
    			expectedNodes:           nil,
    			expectedPodStatusUpdate: false,
    		},
    		// Node created long time ago, without status. Node lease is missing.
    		// Expect Unknown status posted from node controller.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/preemption/preemption_test.go

    				nodeInfos = append(nodeInfos, ni)
    			}
    			nodes, _ := nodesWherePreemptionMightHelp(nodeInfos, tt.nodesStatuses)
    			if len(tt.expected) != len(nodes) {
    				t.Errorf("number of nodes is not the same as expected. exptectd: %d, got: %d. Nodes: %v", len(tt.expected), len(nodes), nodes)
    			}
    			for _, node := range nodes {
    				name := node.Node().Name
    				if _, found := tt.expected[name]; !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    		{User: node1, Decision: authorizer.DecisionAllow, Secret: "shared-all"},
    
    		{User: node2, Decision: authorizer.DecisionNoOpinion, Secret: "node1-only"},
    		{User: node2, Decision: authorizer.DecisionAllow, Secret: "node1-node2-only"},
    		{User: node2, Decision: authorizer.DecisionAllow, Secret: "shared-all"},
    
    		{User: node3, Decision: authorizer.DecisionNoOpinion, Secret: "node1-only"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    		},
    		{
    			pod: st.MakePod().Label("foo", "").Obj(),
    			pods: []*v1.Pod{
    				st.MakePod().Node("nodeA").Namespace(defaultNamespace).PodAntiAffinityExists("foo", "invalid-node-label", st.PodAntiAffinityWithRequiredReq).Obj(),
    			},
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
Back to top