Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 189 for buffer_end (0.2 sec)

  1. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/EditorReportsBuilder.kt

    internal
    fun File.readLinesRange() =
        countLines().let { count ->
            if (count == 0L) 0..0L
            else 1..count
        }
    
    
    private
    fun File.countLines(): Long =
        inputStream().buffered().use { input ->
            input.countLines()
        }
    
    
    private
    fun BufferedInputStream.countLines(): Long {
        val buffer = ByteArray(DEFAULT_BUFFER_SIZE)
        val newLine = '\n'.code.toByte()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/trace/trace.go

    		Name:  s.name,
    		Time:  float64(s.end.UnixNano()) / float64(time.Microsecond),
    		TID:   s.tid,
    		Phase: phaseDurationEnd,
    	})
    }
    
    type tracer struct {
    	file chan traceFile // 1-buffered
    
    	nextTID    atomic.Uint64
    	nextFlowID atomic.Uint64
    }
    
    func (t *tracer) writeEvent(ev *format.Event) error {
    	f := <-t.file
    	defer func() { t.file <- f }()
    	var err error
    	if f.entries == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/compress/zlib/reader.go

    // to switch to a new underlying Reader. This permits reusing a ReadCloser
    // instead of allocating a new one.
    type Resetter interface {
    	// Reset discards any buffered data and resets the Resetter as if it was
    	// newly initialized with the given reader.
    	Reset(r io.Reader, dict []byte) error
    }
    
    // NewReader creates a new ReadCloser.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. tests/fuzz/oss_fuzz_build.sh

    printf "package main\nimport _ \"github.com/AdamKorcz/go-118-fuzz-build/testing\"\n" > register.go
    go mod tidy
    
    # Find all native fuzzers and compile them
    # shellcheck disable=SC2016
    grep --line-buffered --include '*_test.go' -Pr 'func Fuzz.*\(.* \*testing\.F' | sed -E 's/(func Fuzz(.*)\(.*)/\2/' | xargs -I{} sh -c '
      fname="$(dirname $(echo "{}" | cut -d: -f1))"
      func="Fuzz$(echo "{}" | cut -d: -f2)"
      set -x
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder_test.go

    		}
    	}
    }
    
    func TestBigYAML(t *testing.T) {
    	d := `
    stuff: 1
    `
    	maxLen := 5 * 1024 * 1024
    	bufferLen := 4 * 1024
    	//  maxLen 5 M
    	dd := strings.Repeat(d, 512*1024)
    	r := NewDocumentDecoder(io.NopCloser(bytes.NewReader([]byte(dd[:maxLen-1]))))
    	b := make([]byte, bufferLen)
    	n, err := r.Read(b)
    	if err != io.ErrShortBuffer {
    		t.Fatalf("expected ErrShortBuffer: %d / %v", n, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. src/debug/dwarf/buf.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Buffered reading and decoding of DWARF data streams.
    
    package dwarf
    
    import (
    	"bytes"
    	"encoding/binary"
    	"strconv"
    )
    
    // Data buffer being decoded.
    type buf struct {
    	dwarf  *Data
    	order  binary.ByteOrder
    	format dataFormat
    	name   string
    	off    Offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

       * Prepares the HTTP headers and sends them to the server.
       *
       * For streaming requests with a body, headers must be prepared **before** the output stream has
       * been written to. Otherwise the body would need to be buffered!
       *
       * For non-streaming requests with a body, headers must be prepared **after** the output stream
       * has been written to and closed. This ensures that the `Content-Length` header field receives
       * the proper value.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/ByteSink.java

       *
       * @throws IOException if an I/O error occurs while opening the stream
       */
      public abstract OutputStream openStream() throws IOException;
    
      /**
       * Opens a new buffered {@link OutputStream} for writing to this sink. The returned stream is not
       * required to be a {@link BufferedOutputStream} in order to allow implementations to simply
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/ByteSink.java

       *
       * @throws IOException if an I/O error occurs while opening the stream
       */
      public abstract OutputStream openStream() throws IOException;
    
      /**
       * Opens a new buffered {@link OutputStream} for writing to this sink. The returned stream is not
       * required to be a {@link BufferedOutputStream} in order to allow implementations to simply
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/LoggingServiceRegistryTest.groovy

            then:
            1 * listener.onOutput("error")
            1 * listener.onOutput(SystemProperties.instance.lineSeparator)
            0 * listener._
    
            when:
            System.out.print("buffered")
            System.err.print("error")
            System.err.flush()
    
            then:
            1 * listener.onOutput("error")
            0 * listener._
        }
    
        def routesStyledTextToListenersWhenStarted() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
Back to top