Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for incoming2 (3.1 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            0 * handler._
        }
    
        def "receive queues incoming messages"() {
            when:
            connection.queueIncoming("incoming1")
            connection.queueIncoming("incoming2")
            connection.queueIncoming("incoming3")
            def result = []
            result << daemonConnection.receive(20, TimeUnit.SECONDS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                    }
                }
                task merge(type: InputFilesTask) {
    // TODO: test with `incoming.files.elements` directly
    //                inFiles.set(configurations.implementation.incoming.files.elements)
                    inFiles.set(
                        configurations.implementation.incoming.artifactView {
                            attributes { attribute(artifactType, 'jar') }
                        }.files.elements
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

        }
    
        Set<EdgeState> getIncomingEdges() {
            Set<EdgeState> incoming = new LinkedHashSet<>();
            if (selected != null) {
                for (NodeState nodeState : selected.getNodes()) {
                    incoming.addAll(nodeState.getIncomingEdges());
                }
            }
            return incoming;
        }
    
        VirtualPlatformState getPlatformState() {
            if (platformState == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

                    @Nested
                    abstract NestedBean getNestedInput();
                }
    
                tasks.register('verify', TaskWithInput) {
                    def artifacts = configurations.runtimeClasspath.incoming.artifacts
                    propertyInput.set(artifacts.resolvedArtifacts.map { it[0] })
                    setPropertyInput.set(artifacts.resolvedArtifacts)
                    listPropertyInput.set(artifacts.resolvedArtifacts)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

                    }
                };
    
                // Start the pipeline in reverse order:
                // 1. mark daemon as running
                // 2. start handling incoming commands
                // 3. start accepting incoming connections
                // 4. advertise presence in registry
    
                stateCoordinator = new DaemonStateCoordinator(executorFactory, onStartCommand, onFinishCommand, onCancelCommand);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. cmd/generic-handlers.go

    				scheme := "http"
    				if r.TLS != nil {
    					scheme = "https"
    				}
    				return scheme
    			}(),
    		}
    	}
    	return nil
    }
    
    // guessIsHealthCheckReq - returns true if incoming request looks
    // like healthCheck request
    func guessIsHealthCheckReq(req *http.Request) bool {
    	if req == nil {
    		return false
    	}
    	aType := getRequestAuthType(req)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            }
            0 * conflictResolver._
    
            and:
            result.components == ids(root, selected, b, c)
        }
    
        def "does not include evicted module with multiple incoming paths"() {
            given:
            def selected = revision('a', '1.2')
            def evicted = revision('a', '1.1')
            def b = revision('b')
            def c = revision('c')
            def d = revision('d')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
Back to top