Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for Hong (0.17 sec)

  1. src/bytes/buffer_test.go

    			readBytes, _ := buf.Read(tmp)
    			yBytes := Repeat(y, growLen)
    			allocs := testing.AllocsPerRun(100, func() {
    				buf.Grow(growLen)
    				buf.Write(yBytes)
    			})
    			// Check no allocation occurs in write, as long as we're single-threaded.
    			if allocs != 0 {
    				t.Errorf("allocation occurred during write")
    			}
    			// Check that buffer has correct data.
    			if !Equal(buf.Bytes()[0:startLen-readBytes], xBytes[readBytes:]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/bufio/bufio.go

    // [Reader.ReadBytes]('\n') or [Reader.ReadString]('\n') instead or use a [Scanner].
    //
    // ReadLine tries to return a single line, not including the end-of-line bytes.
    // If the line was too long for the buffer then isPrefix is set and the
    // beginning of the line is returned. The rest of the line will be returned
    // from future calls. isPrefix will be false when returning the last fragment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/test.go

    // issue 22958
    
    typedef struct {
    	unsigned long long f8  : 8;
    	unsigned long long f16 : 16;
    	unsigned long long f24 : 24;
    	unsigned long long f32 : 32;
    	unsigned long long f40 : 40;
    	unsigned long long f48 : 48;
    	unsigned long long f56 : 56;
    	unsigned long long f64 : 64;
    } issue22958Type;
    
    // issue 23356
    int a(void) { return 5; };
    int r(void) { return 3; };
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. src/archive/tar/reader_test.go

    			Name:     "bar",
    			Linkname: "PAX4/PAX4/long-linkpath-name",
    			ModTime:  time.Unix(0, 0),
    			Typeflag: '2',
    			PAXRecords: map[string]string{
    				"linkpath": "PAX4/PAX4/long-linkpath-name",
    			},
    			Format: FormatPAX,
    		}},
    	}, {
    		// Both BSD and GNU tar truncate long names at first NUL even
    		// if there is data following that NUL character.
    		// This is reasonable as GNU long names are C-strings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testerrors/testdata/err2.go

    // license that can be found in the LICENSE file.
    
    package main
    
    /*
    #include <stdio.h>
    
    typedef struct foo foo_t;
    typedef struct bar bar_t;
    
    foo_t *foop;
    
    long double x = 0;
    
    static int transform(int x) { return x; }
    
    typedef void v;
    void F(v** p) {}
    
    void fvi(void *p, int x) {}
    
    void fppi(int** p) {}
    
    int i;
    void fi(int i) {}
    */
    import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/archive/tar/common.go

    var tarinsecurepath = godebug.New("tarinsecurepath")
    
    var (
    	ErrHeader          = errors.New("archive/tar: invalid tar header")
    	ErrWriteTooLong    = errors.New("archive/tar: write too long")
    	ErrFieldTooLong    = errors.New("archive/tar: header field too long")
    	ErrWriteAfterClose = errors.New("archive/tar: write after close")
    	ErrInsecurePath    = errors.New("archive/tar: insecure file path")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testerrors/testdata/err4.go

    // Copyright 2017 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.
    
    package main
    
    /*
    long double x = 0;
    */
    import "C"
    
    func main() {
    	_ = C.x // ERROR HERE
    	_ = C.x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 259 bytes
    - Viewed (0)
  8. src/archive/tar/strconv.go

    	if n := len(b) - len(s) - 1; n > 0 {
    		s = strings.Repeat("0", n) + s
    	}
    	f.formatString(b, s)
    }
    
    // fitsInOctal reports whether the integer x fits in a field n-bytes long
    // using octal encoding with the appropriate NUL terminator.
    func fitsInOctal(n int, x int64) bool {
    	octBits := uint(n-1) * 3
    	return x >= 0 && (n >= 22 || x < 1<<octBits)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		io.Copy(&errsb, r)
    	}()
    
    	// Give the program a chance to enter the function.
    	// If the program doesn't get there the test will still
    	// pass, although it doesn't quite test what we intended.
    	// This is fine as long as the program normally makes it.
    	time.Sleep(time.Millisecond)
    
    	cmd.Process.Signal(syscall.SIGSEGV)
    
    	err = cmd.Wait()
    
    	s := out.String()
    	if len(s) > 0 {
    		t.Log(s)
    	}
    	wg.Wait()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/testx.go

    // in ms.
    long long twoSleep(int);
    
    // issue 3775
    void lockOSThreadC(void);
    int usleep(unsigned usec);
    
    // issue 4054 part 2 - part 1 in test.go
    typedef enum {
    	A = 0,
    	B,
    	C,
    	D,
    	E,
    	F,
    	G,
    	H,
    	II,
    	J,
    } issue4054b;
    
    // issue 5548
    
    extern int issue5548_in_c(void);
    
    // issue 6833
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top