- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 3,883 for void (0.08 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java
return name.substring(pos + 1); } return name; } public void setOfficeManager(final OfficeManager officeManager) { this.officeManager = officeManager; } public void setTempDir(final File tempDir) { this.tempDir = tempDir; } public void setOutputEncoding(final String outputEncoding) { this.outputEncoding = outputEncoding; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 8.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java
public class FessFunctionsTest extends UnitFessTestCase { public void test_formatNumber() { assertEquals("0", FessFunctions.formatNumber(0, "###,###")); assertEquals("1,000", FessFunctions.formatNumber(1000, "###,###")); assertEquals("1,000,000", FessFunctions.formatNumber(1000000, "###,###")); } public void test_formatFileSize() { assertEquals("0", FessFunctions.formatFileSize(0));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
} public void setUseSession(final boolean useSession) { this.useSession = useSession; } public void addInitFacetParam(final String key, final String value) { initFacetParamMap.put(value, key); } public Map<String, String> getInitFacetParamMap() { return initFacetParamMap; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 40.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java
@Param({"1", "5", "25", "125"}) int count; @Param({"1", "10"}) int length; private String originalString; @BeforeExperiment void setUp() { originalString = Strings.repeat("x", length); } @Benchmark void oldRepeat(long reps) { for (int i = 0; i < reps; i++) { String x = oldRepeat(originalString, count); if (x.length() != (originalString.length() * count)) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Sep 17 20:24:24 UTC 2021 - 3.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java
@Override protected Executor executor() { return new Executor() { @Override public void execute(Runnable command) {} }; } @Override protected void run() throws Exception {} } public void testStopWhileStarting_runNotCalled() throws Exception { final CountDownLatch started = new CountDownLatch(1); FakeService service =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/exentity/Role.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/TestWriter.java
this.out = out; } @Override public void write(int c) throws IOException { super.write(c); flush(); // flush write to TestOutputStream to get its behavior } @Override public void write(char[] cbuf, int off, int len) throws IOException { super.write(cbuf, off, len); flush(); } @Override public void write(String str, int off, int len) throws IOException {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/scope/WeakMojoExecutionListener.java
* * @see org.apache.maven.execution.MojoExecutionListener * @since 3.1.2 */ public interface WeakMojoExecutionListener { void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException; void afterMojoExecutionSuccess(MojoExecutionEvent event) throws MojoExecutionException; void afterExecutionFailure(MojoExecutionEvent event);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/MsWordExtractorTest.java
public MsWordExtractor msWordExtractor; @Override protected void setUp() throws Exception { super.setUp(); StandardCrawlerContainer container = new StandardCrawlerContainer().singleton("msWordExtractor", MsWordExtractor.class); msWordExtractor = container.getComponent("msWordExtractor"); } public void test_getText() {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java
super(messageBuilderFactory, out); this.printResourceNames = printResourceNames; } @Override public void transferInitiated(TransferEvent event) { overridePreviousTransfer(event); super.transferInitiated(event); } @Override public void transferCorrupted(TransferEvent event) throws TransferCancelledException { overridePreviousTransfer(event);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0)