- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 4,235 for Class3 (0.03 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebConfigBhv.java
} @Override protected Class<? extends WebConfig> typeOfSelectedEntity() { return WebConfig.class; } @Override protected Class<WebConfig> typeOfHandlingEntity() { return WebConfig.class; } @Override protected Class<WebConfigCB> typeOfHandlingConditionBean() { return WebConfigCB.class; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java
logger.fine("Expanded: " + formatFeatureSet(features)); @SuppressWarnings("rawtypes") // class literals List<Class<? extends AbstractTester>> testers = getTesters(); TestSuite suite = new TestSuite(name); for (@SuppressWarnings("rawtypes") // class literals Class<? extends AbstractTester> testerClass : testers) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.4K bytes - Viewed (0) -
guava-gwt/test/com/google/common/GwtTestSuite.java
* "suite," as the per-suite setup is expensive. */ public class GwtTestSuite extends TestCase { public static Test suite() throws IOException { GWTTestSuite suite = new GWTTestSuite(); for (ClassInfo info : ClassPath.from(GwtTestSuite.class.getClassLoader()).getTopLevelClasses()) { if (info.getName().endsWith("_gwt")) { Class<?> clazz = info.load();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java
import org.lastaflute.web.response.ActionResponse; import org.lastaflute.web.response.StreamResponse; /** * Action class for handling cached document content requests. * Provides functionality to retrieve and display cached versions of crawled documents. */ public class CacheAction extends FessSearchAction { /** * Creates a new instance of CacheAction. */ public CacheAction() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.9K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/AndroidPlatform.kt
/** * A trust manager for Android applications that customize the trust manager. * * This class exploits knowledge of Android implementation details. This class is potentially * much faster to initialize than [BasicTrustRootIndex] because it doesn't need to load and * index trusted CA certificates. */ internal data class CustomTrustRootIndex( private val trustManager: X509TrustManager,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu May 29 16:52:38 UTC 2025 - 6.5K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt
level = Level.FINEST } private fun applyLogger(fn: Logger.() -> Unit) { Logger.getLogger(OkHttpClient::class.java.`package`.name).fn() Logger.getLogger(OkHttpClient::class.java.name).fn() Logger.getLogger(Http2::class.java.name).fn() Logger.getLogger(TaskRunner::class.java.name).fn() Logger.getLogger("javax.net.ssl").fn() }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri May 30 21:28:20 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/crud/header.jsp
</c:if> </h3> <div class="card-tools"> <c:choose> <c:when test="${crudMode == null}"> <la:link href="createnew" styleClass="btn btn-success btn-xs ${f:h(editableClass)}"> <em class="fa fa-plus"> <la:message key="labels.crud_link_create" /> </la:link> </c:when> <c:otherwise> <la:link href="../list" styleClass="btn btn-primary btn-xs"> <em class="fa fa-th-list">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Feb 07 10:28:50 UTC 2020 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
* * @author koichik * @see ClassHandler * @see TraversalUtil */ public abstract class ClassTraversalUtil { /** * Do not instantiate. */ protected ClassTraversalUtil() { } /** The file extension for class files. */ protected static final String CLASS_SUFFIX = ".class"; /** The file extension for WAR files. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheControlJvmTest.kt
import java.util.concurrent.TimeUnit import kotlin.test.assertFailsWith import okhttp3.CacheControl.Companion.parse import okhttp3.Headers.Companion.headersOf import org.junit.jupiter.api.Test class CacheControlJvmTest { @Test @Throws(Exception::class) fun completeBuilder() { val cacheControl = CacheControl .Builder() .noCache() .noStore() .maxAge(1, TimeUnit.SECONDS)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java
import org.lastaflute.web.response.HtmlResponse; /** * Abstract base action class for handling login functionality in Fess. * This action provides logic for redirecting authenticated users to appropriate * admin interfaces based on their roles and permissions. */ public abstract class FessLoginAction extends FessSearchAction { /** * Default constructor. */ public FessLoginAction() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0)