Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 218 for incoming2 (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyNotationIntegrationSpec.groovy

    }
    
    task checkDeps {
        doLast {
            def deps = configurations.conf.incoming.dependencies
            assert deps.size() == 1
            assert deps.find { it.dependencyProject.path == ':otherProject' && it.targetConfiguration == null }
    
            deps = configurations.confTwo.incoming.dependencies
            assert deps.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:32 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/WebSocketListener.kt

      open fun onMessage(
        webSocket: WebSocket,
        bytes: ByteString,
      ) {
      }
    
      /**
       * Invoked when the remote peer has indicated that no more incoming messages will be transmitted.
       */
      open fun onClosing(
        webSocket: WebSocket,
        code: Int,
        reason: String,
      ) {
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/ConnectionSet.java

        ConnectionSet(IncomingQueue incomingQueue, OutgoingQueue outgoingQueue) {
            this.incomingQueue = incomingQueue;
            this.outgoingQueue = outgoingQueue;
        }
    
        /**
         * Adds a new incoming connection.
         */
        public ConnectionState add(RemoteConnection<InterHubMessage> connection) {
            EndPointQueue queue = outgoingQueue.newEndpoint();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. test/typeparam/issue51219b.dir/b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package b
    
    import (
    	"./a"
    )
    
    // InteractionRequest is an incoming request Interaction
    type InteractionRequest[T a.InteractionDataConstraint] struct {
    	a.Interaction[T]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 14:59:04 UTC 2022
    - 331 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectVariantResolutionIntegrationTest.groovy

                        throw new RuntimeException("broken task")
                    }
                    tasks.register("resolve", ShowFileCollection) {
                        def view = configurations.resolver.incoming.artifactView {
                            attributes.attribute(color, 'green')
                        }.files
                        files.from(view)
                    }
    
                    configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. doc/next/6-stdlib/99-minor/net/http/httptest/59473.md

    The new [NewRequestWithContext] method creates an incoming request with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 93 bytes
    - Viewed (0)
  7. src/os/signal/signal.go

    	// See Issue 21576.
    	watchSignalLoopOnce sync.Once
    	watchSignalLoop     func()
    )
    
    // Notify causes package signal to relay incoming signals to c.
    // If no signals are provided, all incoming signals will be relayed to c.
    // Otherwise, just the provided signals will.
    //
    // Package signal will not block sending to c: the caller must ensure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/math/big/doc.go

    result, an operation can reuse the space allocated for the result value,
    and overwrite that value with the new result in the process.)
    
    Notational convention: Incoming method parameters (including the receiver)
    are named consistently in the API to clarify their use. Incoming operands
    are usually named x, y, a, b, and so on, but never z. A parameter specifying
    the result is named z (typically the receiver).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DependencyHandlerApiResolveIntegrationTest.groovy

                    def filesA = configurations.a
                    def idsA = configurations.a.incoming.artifacts.resolvedArtifacts.map { it.id }
                    def filesB = configurations.b
                    def idsB = configurations.b.incoming.artifacts.resolvedArtifacts.map { it.id }
                    def filesC = configurations.c
                    def idsC = configurations.c.incoming.artifacts.resolvedArtifacts.map { it.id }
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 06:59:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerSpec.groovy

            when:
            def compile = configurationContainer.create("compile")
    
            then:
            compile.name == "compile"
            compile.incoming.path == ":compile"
            compile instanceof DefaultConfiguration
    
            and:
            configurationContainer.getByName("compile") == compile
    
            //finds configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top