Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. internal/ioutil/ioutil.go

    type SkipReader struct {
    	io.Reader
    
    	skipCount int64
    }
    
    func (s *SkipReader) Read(p []byte) (int, error) {
    	l := int64(len(p))
    	if l == 0 {
    		return 0, nil
    	}
    	for s.skipCount > 0 {
    		if l > s.skipCount {
    			l = s.skipCount
    		}
    		n, err := s.Reader.Read(p[:l])
    		if err != nil {
    			return 0, err
    		}
    		s.skipCount -= int64(n)
    	}
    	return s.Reader.Read(p)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // Returns the current OS stack trace as an std::string.
    //
    // The maximum number of stack frames to be included is specified by
    // the gtest_stack_trace_depth flag.  The skip_count parameter
    // specifies the number of top frames to be skipped, which doesn't
    // count against the number of frames to be included.
    //
    // For example, if Foo() calls Bar(), which in turn calls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // Returns the current OS stack trace as an std::string.
    //
    // The maximum number of stack frames to be included is specified by
    // the gtest_stack_trace_depth flag.  The skip_count parameter
    // specifies the number of top frames to be skipped, which doesn't
    // count against the number of frames to be included.
    //
    // For example, if Foo() calls Bar(), which in turn calls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top