Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 218 for incoming2 (0.13 sec)

  1. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

            this.projectDependencies.from(runtimeClasspath.incoming.artifactView {
                componentFilter {
                    it is ProjectComponentIdentifier
                }
            }.files)
            this.externalDependencies.from(runtimeClasspath.incoming.artifactView {
                componentFilter {
                    externalComponents.contains(it)
                }
            }.files)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/ObjectConnectionBuilder.java

         *
         * @param type The type
         * @return A sink. Method calls made on this object are sent as outgoing messages.
         */
        <T> T addOutgoing(Class<T> type);
    
        /**
         * Registers a handler for incoming messages on the given type. The provided handler is not required to be
         * thread-safe. Messages are delivered to the handler by a single thread.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LazyDownloadsIntegrationTest.groovy

    """
        }
    
        def "downloads only the metadata when dependency graph is queried"() {
            given:
            buildFile << """
                task graph {
                    def root = configurations.compile.incoming.resolutionResult.rootComponent
                    doLast {
                        root.get()
                    }
                }
    """
    
            when:
            module.pom.expectGet()
            module2.pom.expectGet()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/ConnectionAcceptor.java

    public interface ConnectionAcceptor extends AsyncStoppable {
        Address getAddress();
    
        /**
         * Stops accepting incoming connections.
         */
        @Override
        void requestStop();
    
        /**
         * Stops accepting incoming connections and blocks until the accept action has completed executing for any queued connections.
         */
        @Override
        void stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/IncomingConnector.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.Global.class)
    public interface IncomingConnector {
        /**
         * Starts listening for incoming connections. Assigns an arbitrary address for the endpoint.
         *
         * @param action the action to execute on incoming connection. The supplied action is not required to be thread-safe.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/report-aggregation/src/main/kotlin/com.example.report-aggregation.gradle.kts

    val codeCoverageReport by tasks.registering(JacocoReport::class) {
        additionalClassDirs(classesPath.filter { it.isDirectory() })
        additionalSourceDirs(sourcesPath.incoming.artifactView { lenient(true) }.files)
        executionData(coverageDataPath.incoming.artifactView { lenient(true) }.files.filter { it.exists() })
    
        reports {
            html.required = true
            xml.required = true
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/TaskDependencyResolutionEventsIntegrationTest.groovy

            given:
            buildFile << """
                configurations {
                    parent { }
                    things.extendsFrom parent
                    all {
                        incoming.beforeResolve { throw new RuntimeException() }
                        incoming.afterResolve { throw new RuntimeException() }
                    }
                }
                dependencies {
                    parent files("parent.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencyPredecessorsOnlyNodeSet.java

    package org.gradle.execution.plan.edges;
    
    import org.gradle.execution.plan.Node;
    import org.gradle.execution.plan.NodeSets;
    
    import java.util.SortedSet;
    import java.util.function.Consumer;
    
    /**
     * Only incoming dependencies, no incoming must-run-after or finalizes relationships.
     */
    class DependencyPredecessorsOnlyNodeSet implements DependentNodesSet {
        private final SortedSet<Node> dependencyPredecessors = NodeSets.newSortedNodeSet();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:17:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.h

    // A function that returns extra dependencies for each op. These might
    // e.g. be known side-effects (or control dependencies) between ops.
    // If "incoming" is true, then the list of (extra) predecessors of the
    // op should be returned. If "incoming" is false, the list of successors.
    // The algorithm assumes that these are consistent which each other. So
    // if (and only if) op1 is in extra_dependencies(op2, true), then op2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/GenerateGraphTask.groovy

                    incomingFiles.each {
                        writeFile("incoming-file", writer, it)
                    }
                    incomingArtifacts.each {
                        writeArtifact("incoming-artifact", writer, it)
                    }
                    incomingArtifacts.resolvedArtifacts.get().each {
                        writeArtifact("incoming-resolved-artifact", writer, it)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top