Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 647 for incoming2 (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    					ErrReasonAntiAffinityRulesNotMatch,
    				),
    				framework.NewStatus(
    					framework.Unschedulable,
    					ErrReasonAntiAffinityRulesNotMatch,
    				),
    			},
    			name: "Test incoming pod's anti-affinity: incoming pod wouldn't considered as a fit as it at least violates one anti-affinity rule of existingPod",
    		},
    		{
    			pod: st.MakePod().Label("foo", "").Label("bar", "").Obj(),
    			pods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

            }
        }
    
        task resolve(type: Copy) {
            def artifacts = configurations.compileClasspath.incoming.artifactView {
                attributes { it.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.class, 'size')) }
                if (project.hasProperty("lenient")) {
                    lenient(true)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

            cluster_to_tpu_op_map,
        SmallPtrSetImpl<Operation*>& visited_wrapped_ops, bool incoming) {
      std::queue<IslandOp> op_worklist;
      std::vector<IslandOp> ops;
    
      op_worklist.push(candidate_island);
    
      while (!op_worklist.empty()) {
        IslandOp current_op = op_worklist.front();
        op_worklist.pop();
        ops.clear();
        if (incoming) {
          collect_input_defining_islands(current_op, ops);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top