Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Didier (0.19 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	//TODO: FIDIV (R11)                     // 41de33
    	//TODO: FIDIVL (BX)                     // da33
    	//TODO: FIDIVL (R11)                    // 41da33
    	//TODO: FIDIVR (BX)                     // de3b
    	//TODO: FIDIVR (R11)                    // 41de3b
    	//TODO: FIDIVRL (BX)                    // da3b
    	//TODO: FIDIVRL (R11)                   // 41da3b
    	//TODO: FILD (BX)                       // df03
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  2. src/archive/zip/reader.go

    	if name == "." {
    		return dotFile
    	}
    
    	dir, elem, _ := split(name)
    	files := r.fileList
    	i := sort.Search(len(files), func(i int) bool {
    		idir, ielem, _ := split(files[i].name)
    		return idir > dir || idir == dir && ielem >= elem
    	})
    	if i < len(files) {
    		fname := files[i].name
    		if fname == name || len(fname) == len(name)+1 && fname[len(name)] == '/' && fname[:len(name)] == name {
    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)
  3. src/bufio/scan.go

    // deliver a final empty token (which is different from a nil token).
    // One could achieve the same behavior with a custom error value but
    // providing one here is tidier.
    // See the emptyFinalToken example for a use of this value.
    var ErrFinalToken = errors.New("final token")
    
    // Scan advances the [Scanner] to the next token, which will then be
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
Back to top