- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 3,496 for 1Final (0.06 sec)
-
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
private static final Logger logger = LogManager.getLogger(ESSourceReader.class); protected final Queue<Map<String, Object>> queue = new ConcurrentLinkedQueue<>(); protected final AtomicBoolean isFinished = new AtomicBoolean(false); protected final Random random = new Random(); protected final Client client; protected final SuggestSettings settings; protected final String indexName;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
* フィールド * @param beanDesc * {@link BeanDesc}。{@literal null}であってはいけません */ public PropertyDescImpl(final String propertyName, final Class<?> propertyType, final Method readMethod, final Method writeMethod, final Field field, final BeanDesc beanDesc) { assertArgumentNotEmpty("propertyName", propertyName); assertArgumentNotNull("propertyType", propertyType);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
private final AtomicBoolean executed = new AtomicBoolean(false); private final long timeout; public ProcessDestroyer(final Process p, final InputStreamThread ist, final long timeout) { this.p = p; this.ist = ist; this.timeout = timeout; } @Override public void run() { if (!p.isAlive()) { return;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
* @param toText * 置き換えるテキスト * @return 結果 */ public static final String replace(final String text, final String fromText, final String toText) { if (text == null || fromText == null || toText == null) { return null; } final StringBuilder buf = new StringBuilder(100); int pos = 0; int pos2 = 0; while (true) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 21.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java
@Override public void characters(final char[] ch, final int offset, final int length) { buffer.append(new String(ch, offset, length)); } @Override public void endElement(final String uri, final String localName, final String qName) { if ("field".equals(qName)) { if (fieldName != null) { final Object obj = dataMap.get(fieldName);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
} } protected void loadProtocols(final String basePackage) { final List<String> subPackages = new ArrayList<>(); final String path = basePackage.replace('.', '/'); final ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); try { final Enumeration<URL> resources = classLoader.getResources(path);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jun 19 01:34:15 UTC 2024 - 7.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java
private String getOutputExtension(final String extension) { final String outExt = extensionMap.get(extension); return outExt == null ? "txt" : outExt; } private String getFileName(final String resourceName) { final String name = resourceName.replaceAll("/+$", ""); final int pos = name.lastIndexOf('/'); if (pos >= 0) { return name.substring(pos + 1); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
public class SambaHelper { private static final Logger logger = LogManager.getLogger(SambaHelper.class); public static final int SID_TYPE_ALIAS = 4; public static final int SID_TYPE_DELETED = 6; public static final int SID_TYPE_DOM_GRP = 2; public static final int SID_TYPE_DOMAIN = 3; public static final int SID_TYPE_INVALID = 7; public static final int SID_TYPE_UNKNOWN = 8;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:58:21 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/exentity/SearchLog.java
sourceMap.put("documents", documentList); return sourceMap; } @Override protected void addFieldToSource(final Map<String, Object> sourceMap, final String field, final Object value) { if (value instanceof final LocalDateTime ldt) { final ZonedDateTime zdt = ZonedDateTime.of(ldt, ZoneId.systemDefault());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
} return OptionalEntity.empty(); } public static OptionalEntity<FileAuthentication> getFileAuthentication(final CreateForm form) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final String username = systemHelper.getUsername(); final long currentTime = systemHelper.getCurrentTimeAsLong(); return getEntity(form, username, currentTime).map(entity -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.5K bytes - Viewed (0)