- Sort Score
- Result 10 results
- Languages All
Results 991 - 1000 of 1,295 for implementar (0.36 sec)
-
src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java
* } * </pre> * * @see ContentsParser * @see SuggestItem * @see ReadingConverter * @see Normalizer * @see SuggestAnalyzer */ public class DefaultContentsParser implements ContentsParser { private static final Logger logger = LogManager.getLogger(DefaultContentsParser.class); private final int maxAnalyzedContentLength; /** * Constructor. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 15.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
import org.codelibs.fess.util.ComponentUtil; import org.codelibs.fess.util.ParameterUtil; /** * @author FreeGen */ public class WebConfig extends BsWebConfig implements CrawlingConfig { private static final long serialVersionUID = 1L; protected volatile Pattern[] includedDocUrlPatterns; protected volatile Pattern[] excludedDocUrlPatterns;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
import java.security.NoSuchAlgorithmException; import jcifs.smb1.util.Hexdump; import jcifs.smb1.util.LogStream; /** * To filter 0 len updates and for debugging */ public class SigningDigest implements SmbConstants { static LogStream log = LogStream.getInstance(); private MessageDigest digest; private byte[] macSigningKey; private boolean bypass = false; private int updates;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.9K bytes - Viewed (0) -
android/guava/src/com/google/common/io/CharSink.java
* returned writer is closed. * <li><b>Convenience methods:</b> These are implementations of common operations that are * typically implemented by opening a writer using one of the methods in the first category, * doing something and finally closing the writer that was opened. * </ul> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:07:06 UTC 2025 - 6.7K bytes - Viewed (0) -
internal/stmt_store/stmt_store.go
// The callback ensures that if the evicted value (v) is not nil, its Close method is called asynchronously // to release associated resources. // // Returns: // - A Store instance implemented by lruStore, which internally uses an LRU cache with the specified size, // eviction callback, and TTL. func New(size int, ttl time.Duration) Store { if size <= 0 { size = defaultMaxSize }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun Apr 27 06:05:16 UTC 2025 - 6K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Monitor.java
// // 3. I think "enterWhen(notEmpty)" reads better than "notEmpty.enter()". // // TODO(user): Implement ReentrantLock features: // - toString() method // - getOwner() method // - getQueuedThreads() method // - getWaitingThreads(Guard) method // - implement Serializable // - redo the API to be as close to identical to ReentrantLock as possible,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 42.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
/** * An {@link Iterator} that iterates over {@link DateFormat} instances corresponding to the styles supported by the locale. * * @author koichik */ protected static class DateFormatIterator implements Iterator<DateFormat> { /** Locale */ protected final Locale locale; /** Index indicating the current style */ protected int index; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
/** * An {@link Iterator} that iterates over {@link DateFormat} instances corresponding to the styles supported by the locale. * * @author koichik */ protected static class DateFormatIterator implements Iterator<DateFormat> { /** Locale */ protected final Locale locale; /** Index indicating the current style */ protected int index; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
* </ul> * * <p>Supported languages are defined in the SUPPORTED_LANGUAGES array.</p> * * <p>Inner class:</p> * <ul> * <li>DefaultContentsAnalyzer: Implements the SuggestAnalyzer interface to analyze text and retrieve tokens using * the configured analyzers.</li> * </ul> * * <p>Protected static class:</p> * <ul>
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 26.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java
* * <p>This class is very similar to {@link SequentialExecutor} with the exception that events can * be added without necessarily executing immediately. */ private static final class PerListenerQueue<L> implements Runnable { final L listener; final Executor executor; @GuardedBy("this") final Queue<ListenerCallQueue.Event<L>> waitQueue = new ArrayDeque<>(); @GuardedBy("this")
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 8.1K bytes - Viewed (0)