Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 474 for discarded (0.36 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/protocol/InterHubMessage.java

            /**
             * Message should be delivered to a single handler, and queued until a handler is available.
             */
            SingleHandler,
            /**
             * Message should be delivered to all current handlers. Discarded if no handler is available.
             */
            AllHandlers,
            /**
             * Message should be delivered to all handlers. Most recent stateful message is queued and also delivered to each new handler.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

        }
    
        private static class TraceDiscardedVariants implements AttributeMatchingExplanationBuilder {
    
            private final Set<HasAttributes> discarded = new HashSet<>();
    
            @Override
            public boolean canSkipExplanation() {
                return false;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/crypto/cipher/io.go

    // StreamWriter wraps a [Stream] into an io.Writer. It calls XORKeyStream
    // to process each slice of data which passes through. If any [StreamWriter.Write]
    // call returns short then the StreamWriter is out of sync and must be discarded.
    // A StreamWriter has no internal buffering; [StreamWriter.Close] does not need
    // to be called to flush write data.
    type StreamWriter struct {
    	S   Stream
    	W   io.Writer
    	Err error // unused
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/errors/join.go

    // license that can be found in the LICENSE file.
    
    package errors
    
    import (
    	"unsafe"
    )
    
    // Join returns an error that wraps the given errors.
    // Any nil error values are discarded.
    // Join returns nil if every value in errs is nil.
    // The error formats as the concatenation of the strings obtained
    // by calling the Error method of each element of errs, with a newline
    // between each string.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 18:37:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubTest.groovy

            hub.addHandler("channel", new Object())
            hub.getOutgoing("channel", String).dispatch("discarded")
    
            when:
            hub.stop()
    
            then:
            1 * listener1.messageDiscarded("discarded")
            1 * listener2.messageDiscarded("discarded")
            0 * _._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

    
    /**
     * Marker interface for exception handling.
     */
    internal
    interface ConfigurationCacheThrowable
    
    
    /**
     * State might be corrupted and should be discarded.
     */
    @Contextual
    class ConfigurationCacheError internal constructor(
        error: String,
        cause: Throwable? = null
    ) : ConfigurationCacheThrowable, Exception(error, cause)
    
    
    @Contextual
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ResettableConfiguration.java

         * after this configuration's resolution are not reversed or invalidated.  Note that calling this method
         * will discard the resolution <i>results</i> but will prevent any state required to resolve the
         * configuration again from being discarded.
         * <p>
         * <strong>This method should be avoided if at all possible, and should only be used as a last resort.</strong>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:33:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/Cache.java

    import java.util.function.Function;
    import java.util.function.Supplier;
    
    public interface Cache<K, V>  {
        /**
         * Locates the given entry, using the supplied factory when the entry is not present or has been discarded, to recreate the entry in the cache.
         *
         * <p>Implementations may prevent more than one thread calculating the same key at the same time or not.
         */
        V get(K key, Function<? super K, ? extends V> factory);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildOperationMapper.java

         */
        InternalOperationFinishedProgressEvent createFinishedEvent(TO descriptor, DETAILS details, OperationFinishEvent finishEvent);
    
        /**
         * Maps the given progress event. Returns {@code null} of the event should be discarded and not forwarded to the client.
         */
        @Nullable
        default InternalProgressEvent createProgressEvent(TO descriptor, OperationProgressEvent progressEvent) {
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationListenerManager.java

     *
     * 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)
    public interface BuildOperationListenerManager {
    
        void addListener(BuildOperationListener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top