Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for getGraph (0.21 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java

                return conflictResolver.resolveConflicts(getGraph(), ArtifactScopeEnum.compile);
            } else if (requestType.equals(MetadataResolutionRequestTypeEnum.classpathRuntime)) {
                return conflictResolver.resolveConflicts(getGraph(), ArtifactScopeEnum.runtime);
            } else if (requestType.equals(MetadataResolutionRequestTypeEnum.classpathTest)) {
                return conflictResolver.resolveConflicts(getGraph(), ArtifactScopeEnum.test);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/build/PlannedNodeGraphTest.groovy

            dependsOn(task3, [task4])
            dependsOn(transform1, [task4])
    
            when:
            collector.collectNodes([task1, task2, task3, task4, transform1])
            def graph = collector.getGraph()
            def nodes = graph.getNodes(PlannedNodeGraph.DetailLevel.LEVEL1_TASKS) as List<TestPlannedNode>
            then:
            nodes.size() == 4
            nodes*.nodeIdentity*.nodeType =~ [NodeType.TASK]
            verifyAll {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 13:11:56 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/build/PlannedNodeGraph.java

                        plannedNodes.add(plannedNode);
                    }
                }
            }
    
            public PlannedNodeGraph getGraph() {
                return new PlannedNodeGraph(detailLevel, plannedNodes);
            }
    
            private List<? extends NodeIdentity> findNodeDependencies(Node node) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 22 15:46:00 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/BuildOperationFiringBuildWorkPreparer.java

                PlannedNodeGraph.Collector collector = new PlannedNodeGraph.Collector(converterRegistry);
                scheduledWork.visitNodes((nodes, entryNodes) -> collector.collectNodes(nodes));
                return collector.getGraph();
            }
    
            private static class CalculateTaskGraphResult implements Result, CustomOperationTraceSerialization {
    
                private final Set<Task> requestedTasks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        Subgraph& subgraph = entry.second;
        FixupSourceAndSinkEdges(subgraph.GetGraph());
      }
    
      if (VLOG_IS_ON(1)) {
        // Dump subgraphs.
        for (auto& entry : subgraphs_) {
          DumpGraphToFile(
              absl::StrCat("encapsulate_subgraphs_subgraph_", entry.first),
              *entry.second.GetGraph(), library);
        }
      }
    
      return s;
    }
    
    Status Encapsulator::BuildFunctionDefs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessScenarioPageGenerator.java

                    end();
                    body();
                        h2().text("Flaky report for " + history.getDisplayName()).end();
                        getGraphs(history).forEach(graph -> graph.render(this));
                    end();
                end();
            }
            };
            // @formatter:on
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/PerformanceExecutionGraphRenderer.java

    import java.util.List;
    import java.util.stream.IntStream;
    
    import static java.util.stream.Collectors.toList;
    
    public interface PerformanceExecutionGraphRenderer {
        default List<ExecutionGraph> getGraphs(PerformanceTestHistory history) {
            List<PerformanceTestExecution> executions = history.getExecutions()
                .stream()
                .filter(this::sameCommit)
                .filter(this::hasTwoDataLines)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                    renderExecutions();
                }
    
                private void renderExecutions() {
                    h3().text("Executions for commit " + Git.current().getCommitId()).end();
                    getGraphs(testHistory).forEach(graph -> graph.render(this));
                }
            };
        }
        // @formatter:on
    
        private static class Chart {
            private String field;
            private String label;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. RELEASE.md

            assumes layers only ever have one positional argument. This assumption
            doesn't hold true before TF 2.4 either, but is more likely to cause
            issues now.
        *   Code that manually enters `keras.backend.get_graph()` before building a
            functional model is no longer needed.
        *   Start enforcing input shape assumptions when calling Functional API
            Keras models. This may potentially break some users, in case there is a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top