Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for twitter (0.21 sec)

  1. api/go1.txt

    pkg syscall (linux-386), type Timex struct, Esterror int32
    pkg syscall (linux-386), type Timex struct, Freq int32
    pkg syscall (linux-386), type Timex struct, Jitcnt int32
    pkg syscall (linux-386), type Timex struct, Jitter int32
    pkg syscall (linux-386), type Timex struct, Maxerror int32
    pkg syscall (linux-386), type Timex struct, Modes uint32
    pkg syscall (linux-386), type Timex struct, Offset int32
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  2. api/go1.2.txt

    pkg syscall (linux-arm-cgo), type Timex struct, Freq int32
    pkg syscall (linux-arm-cgo), type Timex struct, Jitcnt int32
    pkg syscall (linux-arm-cgo), type Timex struct, Jitter int32
    pkg syscall (linux-arm-cgo), type Timex struct, Maxerror int32
    pkg syscall (linux-arm-cgo), type Timex struct, Modes uint32
    pkg syscall (linux-arm-cgo), type Timex struct, Offset int32
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  3. src/bufio/example_test.go

    }
    
    // Use a Scanner to implement a simple word-count utility by scanning the
    // input as a sequence of space-delimited tokens.
    func ExampleScanner_words() {
    	// An artificial input source.
    	const input = "Now is the winter of our discontent,\nMade glorious summer by this sun of York.\n"
    	scanner := bufio.NewScanner(strings.NewReader(input))
    	// Set the split function for the scanning operation.
    	scanner.Split(bufio.ScanWords)
    	// Count the words.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 4.9K bytes
    - Viewed (0)
Back to top