Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for Ismail (0.2 sec)

  1. src/archive/tar/testdata/small.txt

    Russ Cox <******@****.***> 1410149331 -0400
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Sep 08 04:08:51 GMT 2014
    - 5 bytes
    - Viewed (0)
  2. misc/chrome/gophertool/popup.html

    <script src="popup.js"></script>
    </head>
    <body style='margin: 0.5em; font-family: sans;'>
    <small><a href="#" url="https://golang.org/issue">issue</a>,
    <a href="#" url="https://golang.org/cl">codereview</a>,
    <a href="#" url="https://golang.org/change">commit</a>, or
    <a href="#" url="https://golang.org/pkg/">pkg</a> id/name:</small>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 05 02:35:21 GMT 2021
    - 830 bytes
    - Viewed (0)
  3. src/builtin/builtin.go

    //	backed by this underlying array.
    //	Map: An empty map is allocated with enough space to hold the
    //	specified number of elements. The size may be omitted, in which case
    //	a small starting size is allocated.
    //	Channel: The channel's buffer is initialized with the specified
    //	buffer capacity. If zero, or the size is omitted, the channel is
    //	unbuffered.
    func make(t Type, size ...IntegerType) Type
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/bytes/bytes.go

    	case n == len(s):
    		if Equal(sep, s) {
    			return 0
    		}
    		return -1
    	case n > len(s):
    		return -1
    	case n <= bytealg.MaxLen:
    		// Use brute force when s and sep both are small
    		if len(s) <= bytealg.MaxBruteForce {
    			return bytealg.Index(s, sep)
    		}
    		c0 := sep[0]
    		c1 := sep[1]
    		i := 0
    		t := len(s) - n + 1
    		fails := 0
    		for i < t {
    			if s[i] != c0 {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg log/syslog (darwin-386), const LOG_LOCAL7 Priority
    pkg log/syslog (darwin-386), const LOG_LPR = 48
    pkg log/syslog (darwin-386), const LOG_LPR Priority
    pkg log/syslog (darwin-386), const LOG_MAIL = 16
    pkg log/syslog (darwin-386), const LOG_MAIL Priority
    pkg log/syslog (darwin-386), const LOG_NEWS = 56
    pkg log/syslog (darwin-386), const LOG_NEWS Priority
    pkg log/syslog (darwin-386), const LOG_NOTICE = 5
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  6. src/archive/tar/testdata/v7.tar

    small.txt Kilts small2.txt Google.com...
    TAR Archive
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Sep 08 04:08:51 GMT 2014
    - 3.5K bytes
    - Viewed (0)
  7. src/archive/tar/testdata/writer.tar

    small.txt Kilts small2.txt Google.com link.txt...
    TAR Archive
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Sep 08 04:08:51 GMT 2014
    - 3.5K bytes
    - Viewed (0)
  8. api/go1.8.txt

    pkg net/http, type Transport struct, ProxyConnectHeader Header
    pkg net/http, var ErrAbortHandler error
    pkg net/http, var ErrServerClosed error
    pkg net/http, var NoBody noBody
    pkg net/mail, func ParseDate(string) (time.Time, error)
    pkg net, method (*Buffers) Read([]uint8) (int, error)
    pkg net, method (*Buffers) WriteTo(io.Writer) (int64, error)
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Dec 21 05:25:57 GMT 2016
    - 16.3K bytes
    - Viewed (0)
  9. src/bytes/bytes_test.go

    				t.Errorf("IndexByte(%q, 'x') = %v", b1, pos)
    			}
    			b1[j] = 0
    			pos = IndexByte(b1, 'x')
    			if pos != -1 {
    				t.Errorf("IndexByte(%q, 'x') = %v", b1, pos)
    			}
    		}
    	}
    }
    
    // test a small index across all page offsets
    func TestIndexByteSmall(t *testing.T) {
    	b := make([]byte, 5015) // bigger than a page
    	// Make sure we find the correct byte even when straddling a page.
    	for i := 0; i <= len(b)-15; i++ {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  10. api/go1.20.txt

    pkg log/syslog (freebsd-riscv64), const LOG_LPR = 48 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_LPR Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_MAIL = 16 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_MAIL Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_NEWS = 56 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_NEWS Priority #53466
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
Back to top