Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for readLength (0.21 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/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	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: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TranslateAccountName", Func, 0},
    		{"TranslateName", Func, 0},
    		{"TransmitFile", Func, 0},
    		{"TransmitFileBuffers", Type, 0},
    		{"TransmitFileBuffers.Head", Field, 0},
    		{"TransmitFileBuffers.HeadLength", Field, 0},
    		{"TransmitFileBuffers.Tail", Field, 0},
    		{"TransmitFileBuffers.TailLength", Field, 0},
    		{"Truncate", Func, 0},
    		{"UNIX_PATH_MAX", Const, 12},
    		{"USAGE_MATCH_TYPE_AND", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top