Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 650 for necessarily (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/errors/errors.go

    )
    
    // MessageCountMap contains occurrence for each error message.
    type MessageCountMap map[string]int
    
    // Aggregate represents an object that contains multiple errors, but does not
    // necessarily have singular semantic meaning.
    // The aggregate can be used with `errors.Is()` to check for the occurrence of
    // a specific error type.
    // Errors.As() is not supported, because the caller presumably cares about a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

       * executor. Each event can be added and dispatched as separate phases.
       *
       * <p>This class is very similar to {@link SequentialExecutor} with the exception that events can
       * be added without necessarily executing immediately.
       */
      private static final class PerListenerQueue<L> implements Runnable {
        final L listener;
        final Executor executor;
    
        @GuardedBy("this")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/ReaderInputStream.java

     * An {@link InputStream} that converts characters from a {@link Reader} into bytes using an
     * arbitrary Charset.
     *
     * <p>This is an alternative to copying the data to an {@code OutputStream} via a {@code Writer},
     * which is necessarily blocking. By implementing an {@code InputStream} it allows consumers to
     * "pull" as much data as they can handle, which is more convenient when dealing with flow
     * controlled, async APIs.
     *
     * @author Chris Nokleberg
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/ReaderInputStream.java

     * An {@link InputStream} that converts characters from a {@link Reader} into bytes using an
     * arbitrary Charset.
     *
     * <p>This is an alternative to copying the data to an {@code OutputStream} via a {@code Writer},
     * which is necessarily blocking. By implementing an {@code InputStream} it allows consumers to
     * "pull" as much data as they can handle, which is more convenient when dealing with flow
     * controlled, async APIs.
     *
     * @author Chris Nokleberg
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/PercentEscaper.java

       */
      private final boolean[] safeOctets;
    
      /**
       * Constructs a percent escaper with the specified safe characters and optional handling of the
       * space character.
       *
       * <p>Not that it is allowed, but not necessarily desirable to specify {@code %} as a safe
       * character. This has the effect of creating an escaper which has no well-defined inverse but it
       * can be useful when escaping additional characters.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/PercentEscaper.java

       */
      private final boolean[] safeOctets;
    
      /**
       * Constructs a percent escaper with the specified safe characters and optional handling of the
       * space character.
       *
       * <p>Not that it is allowed, but not necessarily desirable to specify {@code %} as a safe
       * character. This has the effect of creating an escaper which has no well-defined inverse but it
       * can be useful when escaping additional characters.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  7. src/go/types/union.go

    			// in the beginning. Embedded interfaces with tilde are excluded above. If we reach
    			// here, we must have at least two terms in the syntactic term list (but not necessarily
    			// in the term list of the union's type set).
    			if f != nil {
    				tset := f.typeSet()
    				switch {
    				case tset.NumMethods() != 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileCollection.java

         *
         * <p>Note that this method returns {@link File} objects that represent locations on the file system. These {@link File} objects do not necessarily refer to regular files.
         * Depending on the implementation of this file collection and how it has been configured, the returned set may contain directories, or missing files, or any other kind of
         * file system element.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:51:59 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  9. src/compress/gzip/gzip.go

    	}
    	// GZIP strings are NUL-terminated.
    	z.buf[0] = 0
    	_, err = z.w.Write(z.buf[:1])
    	return err
    }
    
    // Write writes a compressed form of p to the underlying [io.Writer]. The
    // compressed bytes are not necessarily flushed until the [Writer] is closed.
    func (z *Writer) Write(p []byte) (int, error) {
    	if z.err != nil {
    		return 0, z.err
    	}
    	var n int
    	// Write the GZIP header lazily.
    	if !z.wroteHeader {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_overlay.txt

    stderr '(compile|gccgo)( |\.exe).*test_cache.go'  # not cached
    env CACHE=$OLD_GOCACHE
    
    # Run same tests but with gccgo.
    env GO111MODULE=off
    [!exec:gccgo] stop
    [cross] stop  # gccgo can't necessarily cross-compile
    
    ! go build -compiler=gccgo .
    go build -compiler=gccgo -overlay overlay.json -o main_gccgo$GOEXE .
    exec ./main_gccgo$goexe
    stdout '^hello$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 29 00:40:18 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top