Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for makeReader (0.77 sec)

  1. src/compress/flate/inflate.go

    				f.err = CorruptInputError(f.roffset)
    				return 0, f.err
    			}
    			f.b = b >> (n & 31)
    			f.nb = nb - n
    			return int(chunk >> huffmanValueShift), nil
    		}
    	}
    }
    
    func (f *decompressor) makeReader(r io.Reader) {
    	if rr, ok := r.(Reader); ok {
    		f.rBuf = nil
    		f.r = rr
    		return
    	}
    	// Reuse rBuf if possible. Invariant: rBuf is always created (and owned) by decompressor.
    	if f.rBuf != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. src/io/multi_test.go

    func TestMultiReaderFlatten(t *testing.T) {
    	pc := make([]uintptr, 1000) // 1000 should fit the full stack
    	n := runtime.Callers(0, pc)
    	var myDepth = callDepth(pc[:n])
    	var readDepth int // will contain the depth from which fakeReader.Read was called
    	var r Reader = MultiReader(readerFunc(func(p []byte) (int, error) {
    		n := runtime.Callers(1, pc)
    		readDepth = callDepth(pc[:n])
    		return 0, errors.New("irrelevant")
    	}))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
  3. test-site/activator-launch-1.3.2.jar

    final ComponentProvider componentProvider(java.io.File); private ModuleDefinition appModule(xsbti.ApplicationID, scala.Option, boolean, String); public static scala.Tuple2 update(ModuleDefinition, String); public final ClassLoader xsbt$boot$Launch$$makeLoader$1(java.io.File, ModuleDefinition); public static xsbti.ApplicationID xsbt$boot$Launch$$resolveId$1(scala.Option, xsbti.ApplicationID); public final RetrievedModule xsbt$boot$Launch$$retrieve$1(scala.Option, ModuleDefinition, scala.Function1); public...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top