- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 310 for initializer (0.05 sec)
-
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
/** Timeout in seconds for process destruction */ protected int processDestroyTimeout = 10; /** * Default constructor for ProcessHelper. * Initializes the process management system with default timeout values. */ public ProcessHelper() { // Default constructor } /** * Cleanup method called when the bean is destroyed.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java
} protected void expectUnchanged() { expectContents(getOrderedElements()); } /** * Asserts that the collection under test contains exactly the elements it was initialized with * plus the given elements, according to {@link #expectContents(java.util.Collection)}. In other * words, for the default {@code expectContents()} implementation, the number of occurrences of
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java
public String versionNo; /** Search/filter parameter for data configuration description. */ public String description; /** * Creates a new DataConfigPager with default values. * Initializes pagination settings and clears all search parameters. */ public DataConfigPager() { // Default constructor with explicit documentation } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
/** * The filter chain that processes queries through all registered filters * before executing the appropriate query command. */ protected FilterChain filterChain; /** * Initializes the query processor after construction. * This method creates the initial filter chain from the registered filters. * Called automatically by the DI container after bean construction. */ @PostConstruct
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt
) : RoutePlanner.Plan, ExchangeCodec.Carrier { /** True if this connect was canceled; typically because it lost a race. */ @Volatile private var canceled = false // These properties are initialized by connect() and never reassigned. /** The low-level TCP socket. */ private var rawSocket: JavaNetSocket? = null /**
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
private SearchRequestParams params; private boolean escape = false; private String sortField; /** * Default constructor for QueryStringBuilder. * Initializes a new instance with default settings for escape and sortField. */ public QueryStringBuilder() { // Default constructor } /** * Quotes a string value if it contains spaces.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
@Override public void setUp() throws Exception { super.setUp(); corsFilter = new CorsFilter(); corsHandlerFactory = new TestCorsHandlerFactory(); // Initialize mocks mockRequest = new TestHttpServletRequest(); mockResponse = new TestHttpServletResponse(); mockFilterChain = new TestFilterChain();
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/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
protected void setUpChild() throws Exception { // Register other query commands that might be needed new TermQueryCommand().register(); new MatchAllQueryCommand().register(); // Initialize and register BooleanQueryCommand booleanQueryCommand = new BooleanQueryCommand(); booleanQueryCommand.register(); } // Test getQueryClassName method public void test_getQueryClassName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0)