- Sort Score
- Result 10 results
- Languages All
Results 1791 - 1800 of 7,612 for class (0.04 sec)
-
src/main/java/org/codelibs/fess/es/user/exbhv/UserBhv.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.exception.IllegalBehaviorStateException; import org.dbflute.util.DfTypeUtil; /** * @author FreeGen */ public class UserBhv extends BsUserBhv { private static final String ROLES = "roles"; private static final String GROUPS = "groups"; private static final String PASSWORD = "password";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.7K bytes - Viewed (0) -
architecture/standards/0002-avoid-using-java-serialization.md
This is due to Java's use of reflection and the need to maintain a lot of metadata. - **Size of Serialized Data:** Java serialization tends to produce larger serialized objects because it includes class metadata and other overhead. - **Flexibility and Control:**
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Feb 29 22:32:18 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
public static RequestManager getRequestManager() { return getComponent(RequestManager.class); } public static ResponseManager getResponseManager() { return getComponent(ResponseManager.class); } public static JobManager getJobManager() { return getComponent(JobManager.class); } public static DocumentHelper getDocumentHelper() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:35:51 UTC 2024 - 20.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
} data class GradleSubproject(val name: String, val path: String, val unitTests: Boolean = true, val functionalTests: Boolean = true, val crossVersionTests: Boolean = false) { fun hasTestsOf(testType: TestType) = (unitTests && testType.unitTests) || (functionalTests && testType.functionalTests) || (crossVersionTests && testType.crossVersionTests) } data class Stage( val stageName: StageName,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlRequest.java
import org.codelibs.curl.Curl.Method; import org.codelibs.curl.io.ContentCache; import org.codelibs.curl.io.ContentOutputStream; public class CurlRequest { protected static final String GZIP = "gzip"; protected static final Logger logger = Logger.getLogger(CurlRequest.class.getName()); protected String url; protected Proxy proxy; protected String encoding = "UTF-8";
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Sun Feb 12 12:21:25 UTC 2023 - 12.3K bytes - Viewed (0) -
docs/tr/docs/python-types.md
{!../../docs_src/python_types/tutorial010.py!} ``` Ve yine bütün editör desteğini alırsınız: <img src="/img/python-types/image06.png"> ## Pydantic modelleri <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> veri doğrulaması yapmak için bir Python kütüphanesidir. Verilerin "biçimini" niteliklere sahip sınıflar olarak düzenlersiniz. Ve her niteliğin bir türü vardır.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
emptyList(), extraParameters = "-PonlyTestGradleVersion=$startInclusive-$endExclusive" ) } } data class TestClassAndSourceSet( val testClass: String, val sourceSet: String ) data class SmallSubprojectBucket( val subprojects: List<GradleSubproject>, val parallelizationMethod: ParallelizationMethod ) : BuildTypeBucket {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 12 09:50:29 UTC 2024 - 9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/EvictingQueueTest.java
* * @author Kurt Alfred Kluever */ @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public class EvictingQueueTest extends TestCase { public void testCreateWithNegativeSize() throws Exception { assertThrows(IllegalArgumentException.class, () -> EvictingQueue.create(-1)); } public void testCreateWithZeroSize() throws Exception {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 15 17:36:06 UTC 2024 - 6.6K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/java/gradlebuild/codenarc/rules/IntegrationTestFixturesRule.java
} @Override public String getDescription() { return "Reports incorrect usages of integration test fixtures"; } @Override protected Class<?> getAstVisitorClass() { return IntegrationTestFixtureVisitor.class; }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.4K bytes - Viewed (0) -
docs_src/request_form_models/tutorial002_pv1_an.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 06 17:31:18 UTC 2024 - 322 bytes - Viewed (0)