- Sort Score
- Result 10 results
- Languages All
Results 2241 - 2250 of 7,967 for aclass (0.05 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt
* This is for the benefit of container environments that implement code unloading. * * Most applications should share a process-wide [TaskRunner] and use queues for per-client work. */ class TaskRunner( val backend: Backend, internal val logger: Logger = TaskRunner.logger, ) { val lock: ReentrantLock = ReentrantLock() val condition: Condition = lock.newCondition()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 29 00:33:04 UTC 2024 - 10.6K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/AbstractCache.java
import java.util.concurrent.ConcurrentMap; import java.util.concurrent.ExecutionException; /** * This class provides a skeletal implementation of the {@code Cache} interface to minimize the * effort required to implement this interface. * * <p>To implement a cache, the programmer needs only to extend this class and provide an * implementation for the {@link #put} and {@link #getIfPresent} methods. {@link #getAllPresent} is
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 9.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
import jakarta.annotation.PostConstruct; import jakarta.annotation.PreDestroy; import jakarta.annotation.Resource; public class OpenSearchUrlQueueService extends AbstractCrawlerService implements UrlQueueService<OpenSearchUrlQueue> { private static final Logger logger = LoggerFactory.getLogger(OpenSearchUrlQueueService.class); @Resource protected OpenSearchDataService dataService;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 13.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/AccessTokenCQ.java
*/ package org.codelibs.fess.es.config.cbean.cq; import org.codelibs.fess.es.config.cbean.cq.bs.BsAccessTokenCQ; /** * @author ESFlute (using FreeGen) */ public class AccessTokenCQ extends BsAccessTokenCQ {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 831 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/BoostDocumentRuleCQ.java
*/ package org.codelibs.fess.es.config.cbean.cq; import org.codelibs.fess.es.config.cbean.cq.bs.BsBoostDocumentRuleCQ; /** * @author ESFlute (using FreeGen) */ public class BoostDocumentRuleCQ extends BsBoostDocumentRuleCQ {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 849 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/DuplicateHostCQ.java
*/ package org.codelibs.fess.es.config.cbean.cq; import org.codelibs.fess.es.config.cbean.cq.bs.BsDuplicateHostCQ; /** * @author ESFlute (using FreeGen) */ public class DuplicateHostCQ extends BsDuplicateHostCQ {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 837 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/ElevateWordCQ.java
*/ package org.codelibs.fess.es.config.cbean.cq; import org.codelibs.fess.es.config.cbean.cq.bs.BsElevateWordCQ; /** * @author ESFlute (using FreeGen) */ public class ElevateWordCQ extends BsElevateWordCQ {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 831 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/FailureUrlCQ.java
*/ package org.codelibs.fess.es.config.cbean.cq; import org.codelibs.fess.es.config.cbean.cq.bs.BsFailureUrlCQ; /** * @author ESFlute (using FreeGen) */ public class FailureUrlCQ extends BsFailureUrlCQ {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 828 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/RelatedContentCQ.java
*/ package org.codelibs.fess.es.config.cbean.cq; import org.codelibs.fess.es.config.cbean.cq.bs.BsRelatedContentCQ; /** * @author ESFlute (using FreeGen) */ public class RelatedContentCQ extends BsRelatedContentCQ {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 840 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/OptionalUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.util; import org.dbflute.optional.OptionalEntity; public class OptionalUtil { public static <T> OptionalEntity<T> ofNullable(final T entity) { return OptionalEntity.ofNullable(entity, () -> {}); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 866 bytes - Viewed (0)