Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for sottile (0.43 sec)

  1. api/go1.3.txt

    pkg syscall (openbsd-386), const SIOCSVNETID ideal-int
    pkg syscall (openbsd-386), const SYS_CLOCK_GETRES = 89
    pkg syscall (openbsd-386), const SYS_CLOCK_GETTIME = 87
    pkg syscall (openbsd-386), const SYS_CLOCK_SETTIME = 88
    pkg syscall (openbsd-386), const SYS_FHSTATFS = 65
    pkg syscall (openbsd-386), const SYS_FSTAT = 53
    pkg syscall (openbsd-386), const SYS_FSTATAT = 42
    pkg syscall (openbsd-386), const SYS_FSTATFS = 64
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_GETTIME = 427
    pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_GETTIME ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_SETTIME = 428
    pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_SETTIME ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS___CLONE = 287
    pkg syscall (netbsd-arm64-cgo), const SYS___CLONE ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_CLOSE = 6
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. src/bytes/bytes.go

    				c += 'a' - 'A'
    			}
    			b[i] = c
    		}
    		return b
    	}
    	return Map(unicode.ToLower, s)
    }
    
    // ToTitle treats s as UTF-8-encoded bytes and returns a copy with all the Unicode letters mapped to their title case.
    func ToTitle(s []byte) []byte { return Map(unicode.ToTitle, s) }
    
    // ToUpperSpecial treats s as UTF-8-encoded bytes and returns a copy with all the Unicode letters mapped to their
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (linux-386), const SYS_TIMERFD_SETTIME = 325
    pkg syscall (linux-386), const SYS_TIMER_CREATE = 259
    pkg syscall (linux-386), const SYS_TIMER_DELETE = 263
    pkg syscall (linux-386), const SYS_TIMER_GETOVERRUN = 262
    pkg syscall (linux-386), const SYS_TIMER_GETTIME = 261
    pkg syscall (linux-386), const SYS_TIMER_SETTIME = 260
    pkg syscall (linux-386), const SYS_TIMES = 43
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. src/bytes/example_test.go

    func ExampleToTitle() {
    	fmt.Printf("%s\n", bytes.ToTitle([]byte("loud noises")))
    	fmt.Printf("%s\n", bytes.ToTitle([]byte("хлеб")))
    	// Output:
    	// LOUD NOISES
    	// ХЛЕБ
    }
    
    func ExampleToTitleSpecial() {
    	str := []byte("ahoj vývojári golang")
    	totitle := bytes.ToTitleSpecial(unicode.AzeriCase, str)
    	fmt.Println("Original : " + string(str))
    	fmt.Println("ToTitle : " + string(totitle))
    	// Output:
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
  6. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const SYS_TIMERFD_SETTIME ideal-int
    pkg syscall (linux-arm-cgo), const SYS_TIMER_CREATE ideal-int
    pkg syscall (linux-arm-cgo), const SYS_TIMER_DELETE ideal-int
    pkg syscall (linux-arm-cgo), const SYS_TIMER_GETOVERRUN ideal-int
    pkg syscall (linux-arm-cgo), const SYS_TIMER_GETTIME ideal-int
    pkg syscall (linux-arm-cgo), const SYS_TIMER_SETTIME ideal-int
    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. src/archive/zip/reader.go

    		i--
    	}
    	if i < 0 {
    		return ".", name, isDir
    	}
    	return name[:i], name[i+1:], isDir
    }
    
    var dotFile = &fileListEntry{name: "./", isDir: true}
    
    func (r *Reader) openLookup(name string) *fileListEntry {
    	if name == "." {
    		return dotFile
    	}
    
    	dir, elem, _ := split(name)
    	files := r.fileList
    	i := sort.Search(len(files), func(i int) bool {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    	{"123a456", "123A456"},
    	{"double-blind", "DOUBLE-BLIND"},
    	{"ÿøû", "ŸØÛ"},
    }
    
    func TestToTitle(t *testing.T) {
    	for _, tt := range ToTitleTests {
    		if s := string(ToTitle([]byte(tt.in))); s != tt.out {
    			t.Errorf("ToTitle(%q) = %q, want %q", tt.in, s, tt.out)
    		}
    	}
    }
    
    var EqualFoldTests = []struct {
    	s, t string
    	out  bool
    }{
    	{"abc", "abc", true},
    	{"ABcd", "ABcd", true},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  9. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_CLOCK_NANOSLEEP = 244
    pkg syscall (freebsd-arm64), const SYS_CLOCK_NANOSLEEP ideal-int
    pkg syscall (freebsd-arm64), const SYS_CLOCK_SETTIME = 233
    pkg syscall (freebsd-arm64), const SYS_CLOCK_SETTIME ideal-int
    pkg syscall (freebsd-arm64), const SYS_CLOSE = 6
    pkg syscall (freebsd-arm64), const SYS_CLOSE ideal-int
    pkg syscall (freebsd-arm64), const SYS_CLOSEFROM = 509
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg syscall (linux-386), const SYS_TIMERFD_SETTIME ideal-int
    pkg syscall (linux-386), const SYS_TIMER_CREATE ideal-int
    pkg syscall (linux-386), const SYS_TIMER_DELETE ideal-int
    pkg syscall (linux-386), const SYS_TIMER_GETOVERRUN ideal-int
    pkg syscall (linux-386), const SYS_TIMER_GETTIME ideal-int
    pkg syscall (linux-386), const SYS_TIMER_SETTIME ideal-int
    pkg syscall (linux-386), const SYS_TIMES ideal-int
    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)
Back to top