- Sort Score
- Num 10 results
- Language All
Results 211 - 220 of 303 for Bharat (0.05 seconds)
-
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
protected String generateId(final String urlId) { final StringBuilder encodedBuf = new StringBuilder(urlId.length() + 100); for (int i = 0; i < urlId.length(); i++) { final char c = urlId.charAt(i); if (c >= 'a' && c <= 'z' // || c >= 'A' && c <= 'Z' // || c >= '0' && c <= '9' // || c == '.' // || c == '-' //
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 15.2K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
} private static boolean isLastSpaceChar(final StringBuilder buf) { if (buf.length() == 0) { return false; } return buf.charAt(buf.length() - 1) == ' '; } private static boolean removeLastDuplication(final StringBuilder buf, final int size, final boolean isSpace, final Set<String> termCache) {Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Nov 22 13:28:22 GMT 2025 - 12K bytes - Click Count (0) -
src/main/java/org/codelibs/core/log/Logger.java
*/ public static LogMessage format(final String messageCode, final Object... args) { assertArgumentNotEmpty("messageCode", messageCode); final char messageType = messageCode.charAt(0); final String message = MessageFormatter.getSimpleMessage(messageCode, args); switch (messageType) { case 'D': return new LogMessage(LogLevel.DEBUG, message); case 'I':Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 12.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelper.java
Map<String, MethodInfo> classMethodCache = METHOD_CACHE.computeIfAbsent(beanType, this::buildMethodCache); String title = Character.toTitleCase(propertyName.charAt(0)) + propertyName.substring(1); // Try setter first MethodInfo setter = classMethodCache.get("set" + title); if (setter != null && isMethodCompatible(setter.method, valueType)) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Nov 12 14:59:46 GMT 2025 - 12.3K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CipherSuite.kt
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 39.9K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java
public final void writeUTF(final String str) throws SmbException { final int len = str.length(); int ch, size = 0; byte[] dst; for (int i = 0; i < len; i++) { ch = str.charAt(i); size += ch > 0x07F ? ch > 0x7FF ? 3 : 2 : 1; } dst = new byte[size]; writeShort(size); try { Encdec.enc_utf8(str, dst, 0, size);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 14.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 16.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/DfsImpl.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 29.7K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
throws UnknownHostException { if (host == null || host.length() == 0) { return getLocalHost(); } if (!Character.isDigit(host.charAt(0))) { return doNameQuery(new Name(host, type, scope), svr); } int IP = 0x00; int hitDots = 0; final char[] data = host.toCharArray();Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Thu Aug 07 02:41:28 GMT 2025 - 17.8K bytes - Click Count (0)