Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 241 for discarded (0.19 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

        /**
         * Use a WeakHashMap here, so the keys (Class objects) can be garbage collected.
         * This approach prevents permgen space overflows due to retention of discarded
         * classloaders.
         */
        private static final Map<Class<?>, WeakReference<ClassMap>> CLASS_MAPS = new WeakHashMap<>();
    
        static final int EOF = -1;
    
        static final char PROPERTY_START = '.';
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. src/encoding/xml/read.go

    //     If there is no such field, the character data is discarded.
    //
    //   - If the XML element contains comments, they are accumulated in
    //     the first struct field that has tag ",comment".  The struct
    //     field may have type []byte or string. If there is no such
    //     field, the comments are discarded.
    //
    //   - If the XML element contains a sub-element whose name matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. src/log/slog/handler.go

    	// The handler ignores records whose level is lower.
    	// It is called early, before any arguments are processed,
    	// to save effort if the log event should be discarded.
    	// If called from a Logger method, the first argument is the context
    	// passed to that method, or context.Background() if nil was passed
    	// or the method does not take a context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. src/math/big/rat.go

    	// - the optional extra bit is shifted away in step 3 below.
    	// - the high-order 1 is omitted in "normal" representation;
    	// - the low-order 1 will be used during rounding then discarded.
    	exp := alen - blen
    	var a2, b2 nat
    	a2 = a2.set(a)
    	b2 = b2.set(b)
    	if shift := Msize2 - exp; shift > 0 {
    		a2 = a2.shl(a2, uint(shift))
    	} else if shift < 0 {
    		b2 = b2.shl(b2, uint(-shift))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

            if (invalidatedRoot != root) {
                LOGGER.info("Some of the file system contents retained in the virtual file system are on file systems that Gradle doesn't support watching. " +
                    "The relevant state was discarded to ensure changes to these locations are properly detected. " +
                    "You can override this by explicitly enabling file system watching.");
            }
            return invalidatedRoot;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/invocation/DefaultGradleSpec.groovy

            given:
            gradle.attachSettings(state1)
    
            when:
            gradle.attachSettings(state2)
    
            then:
            1 * state1.close()
        }
    
        def "closes settings when discarded"() {
            def state = Mock(SettingsState)
    
            given:
            gradle.attachSettings(state)
    
            when:
            gradle.resetState()
    
            then:
            1 * state.close()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. src/text/tabwriter/tabwriter.go

    // this may not be true in some fonts or if the string contains combining
    // characters.
    //
    // If [DiscardEmptyColumns] is set, empty columns that are terminated
    // entirely by vertical (or "soft") tabs are discarded. Columns
    // terminated by horizontal (or "hard") tabs are not affected by
    // this flag.
    //
    // If a Writer is configured to filter HTML, HTML tags and entities
    // are passed through. The widths of tags and entities are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. src/bufio/bufio.go

    		}
    	}
    	return b.buf[b.r : b.r+n], err
    }
    
    // Discard skips the next n bytes, returning the number of bytes discarded.
    //
    // If Discard skips fewer than n bytes, it also returns an error.
    // If 0 <= n <= b.Buffered(), Discard is guaranteed to succeed without
    // reading from the underlying io.Reader.
    func (b *Reader) Discard(n int) (discarded int, err error) {
    	if n < 0 {
    		return 0, ErrNegativeCount
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  9. internal/logger/target/kafka/kafka.go

    	if h.store != nil {
    		h.storeCtxCancel()
    	}
    
    	// Set logch to nil and close it.
    	// This will block all Send operations,
    	// and finish the existing ones.
    	// All future ones will be discarded.
    	h.logChMu.Lock()
    	xioutil.SafeClose(h.logCh)
    	h.logCh = nil
    	h.logChMu.Unlock()
    
    	if h.producer != nil {
    		h.producer.Close()
    		h.client.Close()
    	}
    
    	// Wait for messages to be sent...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

         * Theoretically, a service could accept the write and then redirect to another page that polls for the success of that write.
         */
        def "non method preserving redirects on write result in discarded write"() {
            given:
            httpBuildCacheServer.cacheDir.createDir("redirect")
            httpBuildCacheServer.addResponder { req, res ->
                if (req.method == "PUT") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top