Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for linguist (0.03 sec)

  1. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            final List<String> langList = new ArrayList<>(item1.getLanguages().length + item2.getLanguages().length);
            Collections.addAll(langList, item1.getLanguages());
            for (final String lang : item2.getLanguages()) {
                if (!langList.contains(lang)) {
                    langList.add(lang);
                }
            }
            mergedItem.languages = langList.toArray(new String[langList.size()]);
    
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java

                newDoc.put(indexFieldDocId, systemHelper.generateDocId(newDoc));
                if (newDoc.get(indexFieldLang) instanceof final List<?> langList) {
                    if (langList.contains("auto")) {
                        newDoc.remove(indexFieldLang);
                    }
                    languageHelper.updateDocument(newDoc);
                }
                return newDoc;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  3. doc/go_spec.html

    These conversions may change the representation of <code>x</code>
    and incur a run-time cost.
    All other conversions only change the type but not the representation
    of <code>x</code>.
    </p>
    
    <p>
    There is no linguistic mechanism to convert between pointers and integers.
    The package <a href="#Package_unsafe"><code>unsafe</code></a>
    implements this functionality under restricted circumstances.
    </p>
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 06 19:12:15 UTC 2025
    - 286.2K bytes
    - Viewed (0)
Back to top