Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 635 for discarded (0.13 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCache.java

     */
    @ThreadSafe
    public interface CrossBuildInMemoryCache<K, V> extends 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 must prevent more than one thread calculating the same key at the same time.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. pkg/probe/dialer_others.go

    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    // Using 1 second instead of 0 because SO_LINGER socket option to 0 causes pending data to be
    // discarded and the connection to be aborted with an RST rather than for the pending data to be
    // transmitted and the connection closed cleanly with a FIN.
    // Ref: https://issues.k8s.io/89898
    func ProbeDialer() *net.Dialer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

         * This allows the classes to be collected.
         *
         * <p>A map differs from a cache in that entries are not discarded based on memory pressure, but are discarded only when the key is collected.
         * You should prefer using a cache instead of a map where possible, and use a map only when generating other classes based on the key.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/compose.go

    		return t
    
    	} else if b.private != "" {
    		t.str = b.private
    		t.RemakeString()
    	}
    	return t
    }
    
    // SetTag copies all the settings from a given Tag. Any previously set values
    // are discarded.
    func (b *Builder) SetTag(t Tag) {
    	b.Tag.LangID = t.LangID
    	b.Tag.RegionID = t.RegionID
    	b.Tag.ScriptID = t.ScriptID
    	// TODO: optimize
    	b.variants = b.variants[:0]
    	if variants := t.Variants(); variants != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/dialer_others.go

    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    // Using 1 second instead of 0 because SO_LINGER socket option to 0 causes pending data to be
    // discarded and the connection to be aborted with an RST rather than for the pending data to be
    // transmitted and the connection closed cleanly with a FIN.
    // Ref: https://issues.k8s.io/89898
    func ProbeDialer() *net.Dialer {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 02:39:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/dialer_windows.go

    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    // Using 1 second instead of 0 because SO_LINGER socket option to 0 causes pending data to be
    // discarded and the connection to be aborted with an RST rather than for the pending data to be
    // transmitted and the connection closed cleanly with a FIN.
    // Ref: https://issues.k8s.io/89898
    func ProbeDialer() *net.Dialer {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 02:39:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/config/LoggingSourceSystem.java

     */
    public interface LoggingSourceSystem extends LoggingSystem {
        /**
         * Sets the minimum log level for this logging system. This is advisory only, the logging system may generate events at lower priority, but these will be discarded.
         * Logging systems that have no intrinsic levels should generate events at the specified logging level.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top