Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 647 for incoming2 (0.11 sec)

  1. internal/grid/manager.go

    	AuthRequest  func(r *http.Request) error // Validate incoming requests.
    	TLSConfig    *tls.Config                 // TLS to apply to the connections.
    	Incoming     func(n int64)               // Record incoming bytes.
    	Outgoing     func(n int64)               // Record outgoing bytes.
    	BlockConnect chan struct{}               // If set, incoming and outgoing connections will be blocked until closed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformParallelIntegrationTest.groovy

                    compile 'test:test:1.3'
                    compile 'test:test2:2.3'
                    compile 'test:test3:3.3'
                }
                task resolve {
                    def artifacts = configurations.compile.incoming.artifactView {
                        attributes { it.attribute(artifactType, 'size') }
                    }.artifacts
                    inputs.files artifacts.artifactFiles
    
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

    dependencies {
        shared 'org.test:module3:1.0'
    }
    
    task resolveDependencies {
        def rootA = configurations.a.incoming.resolutionResult.rootComponent
        def rootB = configurations.b.incoming.resolutionResult.rootComponent
        doLast {
            rootA.get()
            rootB.get()
            rootA.get()
        }
    }
    """
    
            expect: "that resolving conf a, then b, then a again, succeeds"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/MultiProjectVariantResolutionIntegrationTest.groovy

                        artifacts.from(configurations.producerArtifacts)
                    }
    
                    tasks.register('resolveJavadoc', Resolve) {
                        artifacts.from(configurations.producerArtifacts.incoming.artifactView {
                            withVariantReselection()
                            attributes {
                                attribute(Attribute.of('shared', String), 'shared-value')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top