Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JI (0.01 sec)

  1. internal/store/queuestore.go

    	}
    
    	// Sort the entries.
    	sort.Slice(files, func(i, j int) bool {
    		ii, err := files[i].Info()
    		if err != nil {
    			return false
    		}
    		ji, err := files[j].Info()
    		if err != nil {
    			return true
    		}
    		return ii.ModTime().Before(ji.ModTime())
    	})
    
    	return files, nil
    }
    
    // Extension will return the file extension used
    // for the items stored in the queue.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 25 16:44:20 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            map.put("グ", new String[] { "gu" });
            map.put("ゲ", new String[] { "ge" });
            map.put("ゴ", new String[] { "go" });
    
            map.put("ザ", new String[] { "za" });
            map.put("ジ", new String[] { "zi", "ji" });
            map.put("ズ", new String[] { "zu" });
            map.put("ゼ", new String[] { "ze" });
            map.put("ゾ", new String[] { "zo" });
    
            map.put("ダ", new String[] { "da" });
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top