Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ReplaceNode (0.24 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

                attributes.put("fileurl", modulePath.getUrl());
                attributes.put("filepath", modulePath.getRelPath());
                modulesNode.appendNode("module", attributes);
            }
            findOrCreateModules().replaceNode(modulesNode);
        }
    
        private void storeWildcards() {
            Node compilerConfigNode = findCompilerConfiguration();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_util.cc

        // Replace `e->dst()` because its input node changed.
        NodeDef new_def = dst->def();
        *new_def.mutable_input(dst_input) = placeholder_node->name();
        TF_ASSIGN_OR_RETURN(Node * dst_replace_node, ReplaceNode(g, dst, new_def));
    
        // Other edge in `edges` might have `e->dst()` as src or dst
        // node. Before removing `e->dst()`, replace those edges with
        // corresponding edges for `dst_replace_node`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          Node* dst = edge.dst;
          NodeDef new_def = dst->def();
          *new_def.mutable_input(edge.dst_input) =
              absl::StrCat(recv_at_host_node->name(), ":", index);
          TF_ASSIGN_OR_RETURN(Node * dst_replace, ReplaceNode(g, dst, new_def));
    
          // Other edges might have `dst` as dst node as well. Update those edges
          // with `dst_replace`.
          for (int j = i + 1, end = out_edge_info.size(); j < end; j++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                                    node.artifactId[0].text().equals('platform') &&
                                    node.scope[0].text().equals('import')
                                }.each { node -> node.replaceNode {} }
                            }
                        }
                    }
                }
    
                ${mavenTestRepository()}
            """)
    
    
            when:
            run "publish"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  5. test-site/activator-launch-1.3.2.jar

    oduleRevisionId); public final VisitNode getCurrentVisitNode(); final void setCurrentVisitNode(VisitNode); public final void register(VisitNode); public final void register(org.apache.ivy.core.module.id.ModuleRevisionId, VisitNode); final void replaceNode(org.apache.ivy.core.module.id.ModuleRevisionId, IvyNode, String); public final void setReport(org.apache.ivy.core.report.ConfigurationResolve); public final java.util.Date getDate(); public final boolean isValidate(); public final boolean isTransitive();...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top