- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 422 for getRate (0.12 sec)
-
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
} public void test_getName() { // Test getName and setName methods generator = new TestThumbnailGenerator(); // Default name should be null assertNull(generator.getName()); // Set and get name generator.setName("test-generator"); assertEquals("test-generator", generator.getName()); // Change name generator.setName("new-name");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/ResourceTraversalTest.java
}); assertTrue(count > 0); } /** * @throws Exception */ @Test public void testForEachJarFile() throws Exception { final String classFilePath = TestCase.class.getName().replace('.', '/') + ".class"; final URL classURL = ResourceUtil.getResource(classFilePath); final JarURLConnection con = (JarURLConnection) classURL.openConnection();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 6K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/SourceSinkTester.java
super(method.getName()); this.factory = checkNotNull(factory); this.data = checkNotNull(data); this.expected = checkNotNull(factory.getExpected(data)); this.suiteName = checkNotNull(suiteName); this.caseDesc = checkNotNull(caseDesc); } @Override public String getName() { return super.getName() + " [" + suiteName + " [" + caseDesc + "]]"; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 4.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractTester.java
@J2ktIncompatible @GwtIncompatible // not used under GWT, and super.getName() is not available under J2CL public final String getTestMethodName() { return super.getName(); } @J2ktIncompatible @GwtIncompatible // not used under GWT, and super.getName() is not available under J2CL @Override public String getName() { return super.getName() + '[' + suiteName + ']'; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/JobProcessTest.java
assertNotNull(jobProcess); assertSame(mockProcess, jobProcess.getProcess()); assertNotNull(jobProcess.getInputStreamThread()); assertEquals("InputStreamThread", jobProcess.getInputStreamThread().getName()); } public void test_constructor_withBufferSizeAndCallback() throws IOException { Process mockProcess = createMockProcess("callback test\nanother line");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 8.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java
private static boolean isAnyEnter(Method method) { return method.getName().startsWith("enter") || method.getName().startsWith("tryEnter"); } /** Identifies just tryEnterXxx methods (a subset of {@link #isAnyEnter}), which never block. */ private static boolean isTryEnter(Method method) { return method.getName().startsWith("tryEnter"); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 27K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java
if (field.getType().equals(HtmlNext.class)) { Object value = field.get(null); assertNotNull("Field " + field.getName() + " should not be null", value); assertTrue("Field " + field.getName() + " should be HtmlNext instance", value instanceof HtmlNext); } } } } public void test_pathValues() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
assertEquals("protwords", protwordsFile.getType()); } public void test_getPath() { assertEquals(testFile.getAbsolutePath(), protwordsFile.getPath()); } public void test_getSimpleName() { String expected = testFile.getName(); assertEquals(expected, protwordsFile.getSimpleName()); } public void test_get_found() { // Load data first
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/AbstractScriptEngine.java
/** * Register this script engine. */ public void register() { ComponentUtil.getScriptEngineFactory().add(getName(), this); } /** * Get the name of this script engine. * @return The name of this script engine. */ protected abstract String getName();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java
* @param methodArgs * Array of arguments */ public ConstructorNotFoundRuntimeException(final Class<?> targetClass, final Object[] methodArgs) { super("ECL0048", asArray(targetClass.getName(), getSignature(methodArgs))); this.targetClass = targetClass; this.methodArgs = methodArgs; paramTypes = null; } /** * Creates a {@link ConstructorNotFoundRuntimeException}.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.8K bytes - Viewed (0)