Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Kanani (0.22 sec)

  1. api/go1.11.txt

    pkg debug/elf, const EM_KVARC = 214
    pkg debug/elf, const EM_KVARC Machine
    pkg debug/elf, const EM_L10M = 180
    pkg debug/elf, const EM_L10M Machine
    pkg debug/elf, const EM_LANAI = 244
    pkg debug/elf, const EM_LANAI Machine
    pkg debug/elf, const EM_LATTICEMICO32 = 138
    pkg debug/elf, const EM_LATTICEMICO32 Machine
    pkg debug/elf, const EM_M16C = 117
    pkg debug/elf, const EM_M16C Machine
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  2. src/bytes/bytes_test.go

    	{"", "", "<>", -1, "<>"},
    	{"banana", "a", "<>", -1, "b<>n<>n<>"},
    	{"banana", "a", "<>", 1, "b<>nana"},
    	{"banana", "a", "<>", 1000, "b<>n<>n<>"},
    	{"banana", "an", "<>", -1, "b<><>a"},
    	{"banana", "ana", "<>", -1, "b<>na"},
    	{"banana", "", "<>", -1, "<>b<>a<>n<>a<>n<>a<>"},
    	{"banana", "", "<>", 10, "<>b<>a<>n<>a<>n<>a<>"},
    	{"banana", "", "<>", 6, "<>b<>a<>n<>a<>n<>a"},
    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)
  3. src/bytes/example_test.go

    	fmt.Println(bytes.NewReader([]byte("こんにちは!")).Len())
    	// Output:
    	// 3
    	// 16
    }
    
    func ExampleRepeat() {
    	fmt.Printf("ba%s", bytes.Repeat([]byte("na"), 2))
    	// Output: banana
    }
    
    func ExampleReplace() {
    	fmt.Printf("%s\n", bytes.Replace([]byte("oink oink oink"), []byte("k"), []byte("ky"), 2))
    	fmt.Printf("%s\n", bytes.Replace([]byte("oink oink oink"), []byte("oink"), []byte("moo"), -1))
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
Back to top