- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 774 for Classes (0.11 seconds)
-
CLAUDE.md
- Use `OptionalEntity<T>` for nullable returns - Plain classes (no extends/implements) ### Helper - Stateless utility classes - Access via `ComponentUtil.getXyzHelper()` - Named with "Helper" suffix ### DBFlute Generated Code ``` opensearch/{index}/ ├── bsentity/, bsbhv/ # Base classes (DO NOT EDIT) ├── exentity/, exbhv/ # Extended classes (customize here)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 09:48:10 GMT 2026 - 7.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Nov 07 13:11:07 GMT 2025 - 14.2K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditTask.java
for (String each : violatingClasses) { violationsExcludes.add(each); } } public void ignoreJarHellWithJDK(String... classes) { for (String each : classes) { jdkJarHellExcludes.add(each); } } @Input public Set<String> getJdkJarHellExcludes() { return jdkJarHellExcludes; }
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jun 17 08:59:22 GMT 2021 - 16.2K bytes - Click Count (0) -
guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java
* } * </pre> * * <p>please use {@link ClassSanityTester#forAllPublicStaticMethods}. * * <p>If not all classes on the classpath should be covered, {@link #ignoreClasses} can be used to * exclude certain classes. As a special case, classes with an underscore in the name (like {@code * AutoValue_Foo}) can be excluded using <code>ignoreClasses({@link #UNDERSCORE_IN_NAME})</code>. *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Apr 02 14:49:41 GMT 2026 - 17.9K bytes - Click Count (0) -
android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java
} public void testFindClassesToTest_withCorrespondingTestClassAndExplicitlyTested() { ImmutableList<Class<?>> classes = ImmutableList.of(Foo.class, FooTest.class); assertThat(findClassesToTest(classes, "testPublic")).isEmpty(); assertThat(findClassesToTest(classes, "testNotThere", "testPublic")).isEmpty(); } public void testFindClassesToTest_withCorrespondingTestClass_noTestName() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 28 02:48:50 GMT 2024 - 5.4K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java
*/ private static boolean isApplicable(Method method, Class<?>... classes) { Class<?>[] methodArgs = method.getParameterTypes(); if (methodArgs.length != classes.length) { return false; } for (int i = 0; i < classes.length; ++i) { if (!isMethodInvocationConvertible(methodArgs[i], classes[i])) { return false; } }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 14.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
* preventing deserialization of arbitrary classes that could lead to RCE vulnerabilities. * Only explicitly registered classes can be serialized/deserialized. * </p> */ public DataSerializer() { kryoThreadLocal = ThreadLocal.withInitial(() -> { final Kryo kryo = new Kryo(); // Enable registration requirement for security - only registered classes can be deserializedCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:54:09 GMT 2026 - 10.5K bytes - Click Count (3) -
build-tools-internal/src/integTest/java/org/elasticsearch/gradle/jarhell/ThirdPartyAuditTaskIT.java
).buildAndFail(); assertTaskFailed(result, ":absurd"); assertOutputContains(result.getOutput(), "Classes with violations:", " * TestingIO", "> Audit of third party dependencies failed"); assertOutputMissing(result.getOutput(), "Missing classes:"); assertNoDeprecationWarning(result); } public void testClassNotFoundAndCompileOnlyIgnored() {
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 4.6K bytes - Click Count (0) -
src/main/java/org/codelibs/core/io/Traverser.java
*/ boolean isExistClass(final String className); /** * Searches for classes handled by this instance and calls the handler for each class. * <p> * If a root package is specified at instance construction, only classes under the root package are targeted. * </p> * * @param handler the handler to process classes */ void forEach(ClassHandler handler); /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 2.1K bytes - Click Count (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/SourceRootTest.java
void testTargetPath() { Build build = mock(Build.class); when(build.getDirectory()).thenReturn("target"); when(build.getOutputDirectory()).thenReturn("target/classes"); when(build.getTestOutputDirectory()).thenReturn("target/test-classes"); Project project = mock(Project.class); when(project.getBuild()).thenReturn(build); when(project.getBasedir()).thenReturn(Path.of("myproject"));
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Oct 26 17:22:14 GMT 2025 - 2.9K bytes - Click Count (0)