Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,005 for Receive (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelectionRules.java

     *     }
     * </pre>
     */
    @HasInternalProtocol
    public interface ComponentSelectionRules {
        /**
         * Adds a simple component selection rule that will apply to all resolved components.
         * Each rule will receive a {@link ComponentSelection} object as an argument.
         *
         * @param selectionAction the Action that implements a rule to be applied
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/1-time.md

    prepared before that call will be sent or received after the call.
    Earlier versions of Go used channels with a one-element buffer,
    making it difficult to use `Reset` and `Stop` correctly.
    A visible effect of this change is that `len` and `cap` of timer channels
    now returns 0 instead of 1, which may affect programs that
    poll the length to decide whether a receive on the timer channel
    will succeed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/RemoteConnection.java

        void flush() throws MessageIOException;
    
        /**
         * {@inheritDoc}
         * @throws MessageIOException On failure to receive the message from the peer.
         */
        @Override
        @Nullable
        T receive() throws MessageIOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            ex.causes == [failure]
    
            and: "expected events received"
            resultsOfFirstListener.size() == 1
            resultsOfLastListener.size() == 1
    
            and: "build execution is successful"
            assertHasBuildSuccessfulLogging()
        }
    
        def "receive task progress events for successful tasks"() {
            given:
            goodCode()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

            outputContains("result = [b.jar.green, c.jar.green]")
    
            where:
            targetType << ["FileCollection", "Iterable<File>"]
        }
    
        def "transform can receive parameter object via constructor parameter"() {
            createDirs("a", "b", "c")
            settingsFile << """
                include 'a', 'b', 'c'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/custom-request-and-route.md

        A `Request` also has a `request.receive`, that's a function to "receive" the body of the request.
    
        The `scope` `dict` and `receive` function are both part of the ASGI specification.
    
        And those two things, `scope` and `receive`, are what is needed to create a new `Request` instance.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/ProgressCrossVersionSpec.groovy

    import org.gradle.tooling.events.OperationType
    import org.gradle.tooling.model.gradle.BuildInvocations
    
    class ProgressCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def "receive progress events when requesting a model"() {
            given:
            goodCode()
    
            when: "asking for a model and specifying some task(s) to run first"
            def events = ProgressEvents.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/handling-errors.md

    If the client requests `http://example.com/items/foo` (an `item_id` `"foo"`), that client will receive an HTTP status code of 200, and a JSON response of:
    
    ```JSON
    {
      "item": "The Foo Wrestlers"
    }
    ```
    
    But if the client requests `http://example.com/items/bar` (a non-existent `item_id` `"bar"`), that client will receive an HTTP status code of 404 (the "not found" error), and a JSON response of:
    
    ```JSON
    {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/encoder.md

    Let's imagine that you have a database `fake_db` that only receives JSON compatible data.
    
    For example, it doesn't receive `datetime` objects, as those are not compatible with JSON.
    
    So, a `datetime` object would have to be converted to a `str` containing the data in <a href="https://en.wikipedia.org/wiki/ISO_8601" class="external-link" target="_blank">ISO format</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/cluster_tf_ops_pass.mlir

    // CHECK-NEXT:   %[[RESULT_0:.*]] = tf_device.receive "key-0"
    // CHECK-NEXT:   %[[RESULT_1:.*]] = "tf.AddV2"(%[[RESULT_0]], %[[RESULT_0]])
    // CHECK-SAME:  device = "/job:worker/replica:0/task:1/device:CPU:0"
    
    // Subgraph of @while_body function that is placed on worker:2
    // CHECK: func @[[BODY_PARTITION_1]]() attributes {host = "/job:worker/replica:0/task:2"}
    // CHECK-NEXT:   %[[RESULT_0:.*]] = tf_device.receive "key-1"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top