Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,476 for readPing (4.17 sec)

  1. src/compress/zlib/reader.go

    	zlibDeflate   = 8
    	zlibMaxWindow = 7
    )
    
    var (
    	// ErrChecksum is returned when reading ZLIB data that has an invalid checksum.
    	ErrChecksum = errors.New("zlib: invalid checksum")
    	// ErrDictionary is returned when reading ZLIB data that has an invalid dictionary.
    	ErrDictionary = errors.New("zlib: invalid dictionary")
    	// ErrHeader is returned when reading ZLIB data that has an invalid header.
    	ErrHeader = errors.New("zlib: invalid header")
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/internal/coverage/test/counter_test.go

    		if aWant != aGot {
    			t.Errorf("reading decoded args, got %s want %s", aGot, aWant)
    		}
    		for i := range funcs {
    			if isDead(funcs[i]) {
    				continue
    			}
    			var fp decodecounter.FuncPayload
    			if ok, err := cdr.NextFunc(&fp); err != nil {
    				t.Fatalf("reading func %d: %v", i, err)
    			} else if !ok {
    				t.Fatalf("reading func %d: bad return", i)
    			}
    			got := fmt.Sprintf("%+v", fp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:34 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/settings/AnalyzerSettingsTest.java

                final String term = tokens.get(i).getTerm();
                final String reading = readingTokens.get(i).getTerm();
                switch (term) {
                case "fess":
                    matchCount++;
                    assertEquals("fess", reading);
                    break;
                case "検索":
                    matchCount++;
                    assertEquals("ケンサク", reading);
                    break;
                case "無料":
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/image/gif/reader.go

    func (b *blockReader) close() error {
    	if b.err == io.EOF {
    		// A clean block-sequence terminator was encountered while reading.
    		return nil
    	} else if b.err != nil {
    		// Some other error was encountered while reading.
    		return b.err
    	}
    
    	if b.i == b.j {
    		// We reached the end of a sub block reading LZW data. We'll allow at
    		// most one more sub block of data with a length of 1 byte.
    		b.fill()
    		if b.err == io.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu_arm64_other.go

    //go:build arm64 && !linux && !freebsd && !android && (!darwin || ios) && !openbsd
    
    package cpu
    
    func osInit() {
    	// Other operating systems do not support reading HWCap from auxiliary vector,
    	// reading privileged aarch64 system registers or sysctl in user space to detect
    	// CPU features at runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 08 15:07:46 UTC 2022
    - 466 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/util/internal/DisconnectableInputStream.java

            } finally {
                lock.unlock();
            }
        }
    
        /**
         * Closes this {@code InputStream} for reading. Any threads blocked in read() will receive an end-of-stream. Also requests that the
         * reader thread stop reading, if possible, but does not block waiting for this to happen.
         *
         * <p>NOTE: this method does not close the source input stream.</p>
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:46 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf_test.go

    	f := gobuild(t, dir, prog, NoOpt)
    
    	defer f.Close()
    
    	d, err := f.DWARF()
    	if err != nil {
    		t.Fatalf("error reading DWARF: %v", err)
    	}
    
    	rdr := d.Reader()
    	for entry, err := rdr.Next(); entry != nil; entry, err = rdr.Next() {
    		if err != nil {
    			t.Fatalf("error reading DWARF: %v", err)
    		}
    		switch entry.Tag {
    		case dwarf.TagStructType:
    			name, ok := entry.Val(dwarf.AttrName).(string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  8. src/internal/cpu/cpu_ppc64x_other.go

    // license that can be found in the LICENSE file.
    
    //go:build (ppc64 || ppc64le) && !aix && !linux
    
    package cpu
    
    func osinit() {
    	// Other operating systems do not support reading HWCap from auxiliary vector,
    	// reading privileged system registers or sysctl in user space to detect CPU
    	// features at runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 18 06:24:06 UTC 2023
    - 423 bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	End   uint64   // virtual address of last byte in sym (Start+size-1)
    }
    
    // A UI manages user interactions.
    type UI interface {
    	// ReadLine returns a line of text (a command) read from the user.
    	// prompt is printed before reading the command.
    	ReadLine(prompt string) (string, error)
    
    	// Print shows a message to the user.
    	// It formats the text as fmt.Print would and adds a final \n if not already present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/CharStreams.java

        return sb;
      }
    
      /**
       * Reads all of the lines from a {@link Readable} object. The lines do not include
       * line-termination characters, but do include other leading and trailing whitespace.
       *
       * <p>Does not close the {@code Readable}. If reading files or resources you should use the {@link
       * Files#readLines} and {@link Resources#readLines} methods.
       *
       * @param r the object to read from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top