- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 148 for Options (1.71 sec)
-
src/main/java/org/codelibs/fess/exec/Crawler.java
* sets up monitoring, and executes the crawling process. * * @param args command-line arguments as defined in the Options class */ public static void main(final String[] args) { final Options options = new Options(); final CmdLineParser parser = new CmdLineParser(options); try { parser.parseArgument(args); } catch (final CmdLineException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
final Options options = new Options(); final CmdLineParser parser = new CmdLineParser(options); try { parser.parseArgument(args); } catch (final CmdLineException e) { System.err.println(e.getMessage()); System.err.println("java " + ThumbnailGenerator.class.getCanonicalName() + " [options...] arguments...");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java
ThumbnailGenerator.Options options = new ThumbnailGenerator.Options(); options.sessionId = "test-session"; options.name = "test-name"; options.propertiesPath = "/path/to/props"; options.numOfThreads = 5; String expected = "Options [sessionId=test-session, name=test-name, propertiesPath=/path/to/props, numOfThreads=5]"; assertEquals(expected, options.toString()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
final Options options = new Options(); final CmdLineParser parser = new CmdLineParser(options); try { parser.parseArgument(args); } catch (final CmdLineException e) { System.err.println(e.getMessage()); System.err.println("java " + SuggestCreator.class.getCanonicalName() + " [options...] arguments...");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
Crawler.Options options = new Crawler.Options(); options.sessionId = "session123"; options.name = "testCrawl"; options.webConfigIds = "web1,web2"; options.fileConfigIds = "file1"; options.dataConfigIds = "data1"; options.propertiesPath = "/path/to/props"; options.expires = "7"; options.hotThread = 5000;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
assertArgumentNotNull("options", options); final T dest = ClassUtil.newInstance(destClass); copyMapToMap(src, dest, options); return dest; } /** * Builds {@link CopyOptions} from a {@link Consumer}. * * @param option * the option * @return the copy options */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlTest.java
// ## Arrange ## final String url = "http://example.com"; // ## Act ## final CurlRequest request = Curl.options(url); // ## Assert ## assertNotNull(request); assertEquals(Method.OPTIONS, request.method()); } @Test public void test_ConnectFactoryMethod() { // ## Arrange ##
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 8.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/TestByteSink.java
private final ByteArrayOutputStream bytes = new ByteArrayOutputStream(); private final ImmutableSet<TestOption> options; private boolean outputStreamOpened; private boolean outputStreamClosed; public TestByteSink(TestOption... options) { this.options = ImmutableSet.copyOf(options); } byte[] getBytes() { return bytes.toByteArray(); } @Override public boolean wasStreamOpened() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
// Test constructor public void test_constructor() { CorsFilter filter = new CorsFilter(); assertNotNull(filter); } // Test OPTIONS constant public void test_optionsConstant() { assertEquals("OPTIONS", CorsFilter.OPTIONS); } // Helper classes for testing private static class TestCorsHandlerFactory extends CorsHandlerFactory {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
return jvmOptions(buf.toString()); } /** * Adds JVM options for this job execution. * * @param options the JVM options to add * @return this ExecJob instance for method chaining */ public ExecJob jvmOptions(final String... options) { Collections.addAll(jvmOptions, options); return this; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0)