Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Gustav (0.22 sec)

  1. src/archive/tar/strconv.go

    //
    // Keys and values should be UTF-8, but the number of bad writers out there
    // forces us to be a more liberal.
    // Thus, we only reject all keys with NUL, and only reject NULs in values
    // for the PAX version of the USTAR string fields.
    // The key must not contain an '=' character.
    func validPAXRecord(k, v string) bool {
    	if k == "" || strings.Contains(k, "=") {
    		return false
    	}
    	switch k {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  2. src/archive/tar/reader_test.go

    			Uid:      010000000,
    			ModTime:  time.Unix(0, 0),
    			Typeflag: '0',
    		}},
    	}, {
    		// USTAR archive with a regular entry with non-zero device numbers.
    		file: "testdata/ustar-file-devs.tar",
    		headers: []*Header{{
    			Name:     "file",
    			Mode:     0644,
    			Typeflag: '0',
    			ModTime:  time.Unix(0, 0),
    			Devmajor: 1,
    			Devminor: 1,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  3. RELEASE.md

    Waterworth, Danijar Hafner, Darren Garvey, Denis Gorbachev, @DjangoPeng,
    Egor-Krivov, Elia Palme, Eric Platon, Fabrizio Milo, Gaetan Semet, Georg
    Nebehay, Gu Wang, Gustav Larsson, @haosdent, Harold Cooper, Hw-Zz, @ichuang,
    Igor Babuschkin, Igor Macedo Quintanilha, Ilya Edrenkin, @ironhead, Jakub
    Kolodziejczyk, Jennifer Guo, Jihun Choi, Jonas Rauber, Josh Bleecher Snyder,
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  4. src/archive/tar/tar_test.go

    		}
    	}
    }
    
    func Benchmark(b *testing.B) {
    	type file struct {
    		hdr  *Header
    		body []byte
    	}
    
    	vectors := []struct {
    		label string
    		files []file
    	}{{
    		"USTAR",
    		[]file{{
    			&Header{Name: "bar", Mode: 0640, Size: int64(3)},
    			[]byte("foo"),
    		}, {
    			&Header{Name: "world", Mode: 0640, Size: int64(5)},
    			[]byte("hello"),
    		}},
    	}, {
    		"GNU",
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (linux-amd64), type Ustat_t struct
    pkg syscall (linux-amd64), type Ustat_t struct, Fname [6]int8
    pkg syscall (linux-amd64), type Ustat_t struct, Fpack [6]int8
    pkg syscall (linux-amd64), type Ustat_t struct, Pad_cgo_0 [4]uint8
    pkg syscall (linux-amd64), type Ustat_t struct, Pad_cgo_1 [4]uint8
    pkg syscall (linux-amd64), type Ustat_t struct, Tfree int32
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  6. api/go1.2.txt

    pkg syscall (linux-arm-cgo), type Ucred struct, Uid uint32
    pkg syscall (linux-arm-cgo), type Ustat_t struct
    pkg syscall (linux-arm-cgo), type Ustat_t struct, Fname [6]uint8
    pkg syscall (linux-arm-cgo), type Ustat_t struct, Fpack [6]uint8
    pkg syscall (linux-arm-cgo), type Ustat_t struct, Tfree int32
    pkg syscall (linux-arm-cgo), type Ustat_t struct, Tinode uint32
    pkg syscall (linux-arm-cgo), type Utimbuf struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  7. CREDITS

    gopkg.in/check.v1
    https://gopkg.in/check.v1
    ----------------------------------------------------------------
    Gocheck - A rich testing framework for Go
     
    Copyright (c) 2010-2013 Gustavo Niemeyer <gustavo@niemeyer.net>
    
    All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met: 
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:31:35 GMT 2024
    - 1.6M bytes
    - Viewed (0)
Back to top