Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 4,005 for Receive (0.12 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationListenerManager.java

     * while finished notifications are emitted in reverse registration order.
     *
     * Listeners will not receive progress notifications for events before they have received
     * the corresponding start notification or after they have received the corresponding finished notification.
     * Such notifications are just discarded for the listener.
     *
     * @since 3.5
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/StatefulListener.java

    import java.lang.annotation.Target;
    
    /**
     * Attached to a listener interface to indicate that its events are stateful.
     *
     * <p>The listener infrastructure will ensure that a listener of this type will either receive all events, or no events.
     * Currently, this is done by disallowing the registration of a listener of this type once any events have been fired.
     *
     * @see Scope
     */
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeCompatibilityRule.java

     * <p>
     * The provided {@link CompatibilityCheckDetails} will give access to consumer and producer values and allow implementation
     * mark the producer value as compatible or not.
     * <p>
     * Note that the rule will never receive a {@code CompatibilityCheckDetails} that has {@code equal} consumer and producer
     * values as this check is performed before invoking the rule and assumes compatibility in that case.
     *
     * @since 4.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/AbstractConfigurationReportRenderer.java

     * according to a {@link AbstractConfigurationReportSpec}.
     *
     * This is meant to be the base class for any such renderer used for configuration reporting.
     *
     * @param <E> the destination type which will receive the model data and be responsible for writing it somewhere
     */
    public abstract class AbstractConfigurationReportRenderer<E> extends ReportRenderer<ConfigurationReportModel, E> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 25 13:50:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. test/fixedbugs/issue6847.go

    		ok bool
    	)
    	// Send cases.
    	select {
    	case ccr <- cr:
    	case ccr <- c:
    	}
    	select {
    	case ccs <- cs:
    	case ccs <- c:
    	}
    	select {
    	case ccr <- c:
    	default:
    	}
    	// Receive cases.
    	select {
    	case cr = <-cc:
    	case cs = <-cc:
    	case c = <-cc:
    	}
    	select {
    	case cr = <-cc:
    	default:
    	}
    	select {
    	case cr, ok = <-cc:
    	case cs, ok = <-cc:
    	case c = <-cc:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    As such, each major Gradle release causes:
    
    * The previous major version becomes maintenance only. It will only receive critical bug fixes and security fixes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListenerRegistrar.java

    @UsedByScanPlugin("obtained from the root build's root project's service registry")
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface BuildOperationNotificationListenerRegistrar {
    
        /**
         * The registered listener will receive notification for all build operations for the
         * current build execution, including those operations that started before the
         * listener was registered.
         *
         * @since 4.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/TransTransactNamedPipeResponse.java

            if( pipe.pipeIn != null ) {
                TransactNamedPipeInputStream in = (TransactNamedPipeInputStream)pipe.pipeIn;
                synchronized( in.lock ) {
                    in.receive( buffer, bufferIndex, len );
                    in.lock.notify();
                }
            }
            return len;
        }
        public String toString() {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2K bytes
    - Viewed (0)
  9. LICENSE

    reinstated, you do not qualify to receive new licenses for the same
    material under section 10.
    
      9. Acceptance Not Required for Having Copies.
    
      You are not required to accept this License in order to receive or
    run a copy of the Program.  Ancillary propagation of a covered work
    occurring solely as a consequence of using peer-to-peer transmission
    to receive a copy likewise does not require acceptance.  However,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  10. docs/en/docs/help-fastapi.md

        Use the chat only for other general conversations.
    
    ### Don't use the chat for questions
    
    Keep in mind that as chats allow more "free conversation", it's easy to ask questions that are too general and more difficult to answer, so, you might not receive answers.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top