Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for readLength (0.1 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

                            continue;
                        }
    
                        if (ignoreTestLevel && !isClassLevel) {
                            decoder.skipBytes(readLength);
                            continue;
                        }
    
                        if (testId == 0 || testId == readTestId) {
                            byte[] stringBytes = new byte[readLength];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/net/http/transfer.go

    			t.Body = NoBody
    		} else {
    			t.Body = &body{src: internal.NewChunkedReader(r), hdr: msg, r: r, closing: t.Close}
    		}
    	case realLength == 0:
    		t.Body = NoBody
    	case realLength > 0:
    		t.Body = &body{src: io.LimitReader(r, realLength), closing: t.Close}
    	default:
    		// realLength < 0, i.e. "Content-Length" not mentioned in header
    		if t.Close {
    			// Close semantics (i.e. HTTP/1.0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. src/syscall/types_windows.go

    	TF_REUSE_SOCKET       = 2
    	TF_WRITE_BEHIND       = 4
    	TF_USE_DEFAULT_WORKER = 0
    	TF_USE_SYSTEM_THREAD  = 16
    	TF_USE_KERNEL_APC     = 32
    )
    
    type TransmitFileBuffers struct {
    	Head       uintptr
    	HeadLength uint32
    	Tail       uintptr
    	TailLength uint32
    }
    
    const (
    	IFF_UP           = 1
    	IFF_BROADCAST    = 2
    	IFF_LOOPBACK     = 4
    	IFF_POINTTOPOINT = 8
    	IFF_MULTICAST    = 16
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top