Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 605 for incoming2 (0.15 sec)

  1. cmd/service.go

    	}
    
    	// Invokes the execve system call.
    	// Re-uses the same pid. This preserves the pid over multiple server-respawns.
    	return syscall.Exec(argv0, os.Args, os.Environ())
    }
    
    // freezeServices will freeze all incoming S3 API calls.
    // For each call, unfreezeServices must be called once.
    func freezeServices() {
    	// Use atomics for globalServiceFreeze, so we can read without locking.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

        public List<ComponentState> getDependents() {
            List<ComponentState> incoming = Lists.newArrayListWithCapacity(nodes.size());
            for (NodeState node : nodes) {
                for (EdgeState dependencyEdge : node.getIncomingEdges()) {
                    incoming.add(dependencyEdge.getFrom().getComponent());
                }
            }
            return incoming;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. build-logic/root-build/src/main/kotlin/gradlebuild.warmup-ec2.gradle.kts

                    configurations.forEach { c ->
                        if (c.isCanBeResolved) {
                            println("Downloading dependencies for '$path' - ${c.name}")
                            val result = c.incoming.artifactView { lenient(true) }.artifacts
                            result.failures.forEach {
                                println("- Ignoring Error: ${it.message}")
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 09:39:18 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/JvmDerivedVariantsIntegrationTest.groovy

            file("consumer/build.gradle") << """
    dependencies {
        implementation 'com.example:test:1.0'
    }
    
    task resolve {
        def artifacts = configurations.runtimeClasspath.incoming.artifactView {
            withVariantReselection()
            attributes {
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 19:46:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/StreamFailureHandler.java

     */
    public interface StreamFailureHandler {
        /**
         * Called when notification of a streaming failure is received on an incoming channel.
         */
        void handleStreamFailure(Throwable t);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 984 bytes
    - Viewed (0)
  6. src/net/mptcpsock_linux_test.go

    	mptcp, err := tcp.MultipathTCP()
    	if err != nil {
    		ch <- err
    		return
    	}
    
    	if !mptcp {
    		ch <- errors.New("incoming connection is not with MPTCP")
    		return
    	}
    
    	// Also check the method for the older kernels if not tested before
    	if hasSOLMPTCP && !isUsingMPTCPProto(tcp.fd) {
    		ch <- errors.New("incoming connection is not an MPTCP proto")
    		return
    	}
    }
    
    func dialerMPTCP(t *testing.T, addr string, envVar bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 00:36:57 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/workingWithDependencies-walkGraph/kotlin/build.gradle.kts

        scm("commons-codec:commons-codec:1.7")
        scm("some:unresolved:2.5")
    }
    
    // tag::walk-task[]
    tasks.register<DependencyGraphWalk>("walkDependencyGraph") {
        dependencies = configurations["scm"].incoming
    }
    
    abstract class DependencyGraphWalk: DefaultTask() {
    
        @get:Input
        abstract val dependencies: Property<ResolvableDependencies>
    
        @TaskAction
        fun walk() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ConcurrentBuildsArtifactTransformIntegrationTest.groovy

        compile files(f)
    }
    
    task redThings {
        def files = configurations.compile.incoming.artifactView {
            attributes {
                attribute(type, "red")
            }
        }.files
        doLast {
            files*.name
        }
    }
    
    task blueThings {
        def files = configurations.compile.incoming.artifactView {
            attributes {
                attribute(type, "blue")
            }
        }.files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       */
      private fun doReadTimeout() = !connection.client || sink.closed || sink.finished
    
      /**
       * A source that reads the incoming data frames of a stream. Although this class uses
       * synchronization to safely receive incoming data frames, it is not intended for use by multiple
       * readers.
       */
      inner class FramingSource internal constructor(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.Configuration.xml

                </thead>
                <tr>
                    <td>description</td>
                </tr>
                <tr>
                    <td>state</td>
                </tr>
                <tr>
                    <td>incoming</td>
                </tr>
                <tr>
                    <td>visible</td>
                </tr>
                <tr>
                    <td>transitive</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top