Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for _Graph (0.59 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            given:
            settingsFile.createFile()
            configurationCacheRun(task, *options)
            def firstRunOutput = removeVfsLogOutput(result.normalizedOutput)
                .replaceAll(/Calculating task graph as no cached configuration is available for tasks: ${task}.*\n/, '')
                .replaceAll(/Configuration cache entry stored.\n/, '')
    
            when:
            configurationCacheRun(task, *options)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

    import org.apache.maven.api.annotations.NotThreadSafe;
    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * A request to collect the transitive dependencies and to build a dependency graph from them. There are three ways to
     * create a dependency graph. First, only the root dependency can be given. Second, a root dependency and direct
     * dependencies can be specified in which case the specified direct dependencies are merged with the direct dependencies
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

        /**
         * Gets the exceptions that occurred while building the dependency graph.
         *
         * @return the exceptions that occurred, never {@code null}
         */
        @Nonnull
        List<Exception> getExceptions();
    
        /**
         * Gets the root node of the dependency graph.
         *
         * @return the root node of the dependency graph or {@code null} if none
         */
        @Nullable
        Node getRoot();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

    /**
     * Collects, flattens and resolves dependencies.
     */
    @Experimental
    public interface DependencyResolver extends Service {
    
        /**
         * Collects the transitive dependencies of some artifacts and builds a dependency graph. Note that this operation is
         * only concerned about determining the coordinates of the transitive dependencies and does not actually resolve the
         * artifact files.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        }
    
        public org.eclipse.aether.graph.Dependency toDependency(DependencyCoordinate dependency, boolean managed) {
            org.eclipse.aether.graph.Dependency dep;
            if (dependency instanceof DefaultDependencyCoordinate) {
                dep = ((DefaultDependencyCoordinate) dependency).getDependency();
            } else {
                dep = new org.eclipse.aether.graph.Dependency(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

            when:
            configurationCacheRun ":a:some"
    
            then:
            result.groupedOutput.task(":a:some").assertOutputContains("FIRST").assertOutputContains("LAST")
    
            when: // rebuild task graph, with tasks from the same set of scripts
            configurationCacheRun ":a:some", ":a:other"
    
            then:
            result.groupedOutput.task(":a:some").assertOutputContains("FIRST").assertOutputContains("LAST")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDebugLogIntegrationTest.groovy

            events.contains([profile: "project fingerprint", type: "C", "frame": ProjectFingerprint.name])
    
            and: "Gradle and Work Graph events are logged"
            events.contains([profile: "build ':' state", type: "O", frame: "Gradle"])
            events.contains([profile: "build ':' state", type: "O", frame: "Work Graph"])
    
            and: "state frame events are logged"
            events.contains([profile: "build ':' state", type: "O", frame: ":ok"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

            private val crossProjectModelAccess: CrossProjectModelAccess
        ) : TaskExecutionGraphListener {
    
            override fun graphPopulated(graph: TaskExecutionGraph) {
                val wrappedGraph = crossProjectModelAccess.taskGraphForProject(referrerProject, graph as TaskExecutionGraphInternal)
                delegate.graphPopulated(wrappedGraph)
            }
    
            override fun equals(other: Any?): Boolean =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/DefaultIsolatedProjectEvaluationListenerProvider.kt

    import org.gradle.internal.cc.impl.isolation.IsolatedActionSerializer
    import org.gradle.internal.cc.impl.isolation.SerializedIsolatedActionGraph
    import org.gradle.internal.serialize.graph.IsolateOwner
    import org.gradle.internal.cc.base.serialize.IsolateOwners
    import org.gradle.internal.serialize.graph.serviceOf
    import org.gradle.internal.code.UserCodeApplicationContext
    import org.gradle.invocation.IsolatedProjectEvaluationListenerProvider
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateFunctionalToExecutorDialectConversionPass();
    
    // Creates a pass that lifts inner ops of tf_executor.island ops in
    // tf_executor.graph into the same block as the tf_executor.graph.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateExecutorDialectToFunctionalConversionPass();
    
    namespace TF {
    // Creates a pass that canonicalizes legacy compilation and replication
    // attributes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top