- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 213 for dangling (0.04 sec)
-
src/main/java/org/codelibs/core/beans/FieldDesc.java
* governing permissions and limitations under the License. */ package org.codelibs.core.beans; import java.lang.reflect.Field; import java.util.Collection; import java.util.Map; /** * Interface for handling fields. * * @author koichik */ public interface FieldDesc { /** * Returns the {@link BeanDesc} of the class that owns this field. * * @return {@link BeanDesc} */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/PropertyDesc.java
*/ package org.codelibs.core.beans; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.Collection; import java.util.Map; /** * Interface for handling properties. * * @author higa */ public interface PropertyDesc { /** * Returns the property name. * * @return the property name */ String getPropertyName();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlResponseTest.java
import java.util.HashMap; import java.util.List; import java.util.Map; import org.codelibs.curl.io.ContentCache; import org.junit.Test; /** * Test class for CurlResponse. * Tests response handling, header operations, and content access. */ public class CurlResponseTest { @Test public void testConstructor() { CurlResponse response = new CurlResponse(); assertNotNull(response);
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java
} /** * Creates a synonym item from the provided form data with validation. * * @param form the create form containing synonym data * @param hook the validation error hook for handling errors * @return OptionalEntity containing the created synonym item or empty if creation failed */ protected OptionalEntity<SynonymItem> createSynonymItem(final CreateForm form, final VaErrorHook hook) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.7K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/util/RenderDataUtil.java
import org.dbflute.Entity; import org.lastaflute.web.response.render.RenderData; /** * Utility class for managing render data in web responses. * This class provides methods to register values in RenderData objects with proper handling * of Entity objects and Collections that may contain Entity objects. * */ public class RenderDataUtil { /** * Default constructor. */ private RenderDataUtil() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/naming/InitialContextUtil.java
import java.util.Hashtable; import javax.naming.InitialContext; import javax.naming.NamingException; import org.codelibs.core.exception.NamingRuntimeException; /** * Utility class for handling {@link javax.naming.InitialContext InitialContext}. * * @author higa */ public abstract class InitialContextUtil { /** * Do not instantiate. */ protected InitialContextUtil() { }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.8K bytes - Viewed (0) -
android/guava/src/com/google/common/base/StandardSystemProperty.java
* available even under older version. * <li>Any property may be cleared through APIs like {@link System#clearProperty}. * <li>Unusual environments like GWT may have their own special handling of system properties. * </ul> * * <p>Note that {@code StandardSystemProperty} does not provide constants for more recently added * properties, including: * * <ul>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 06 10:03:30 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
import org.opensearch.common.unit.Fuzziness; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Query command implementation for handling fuzzy search queries. * This class converts Lucene FuzzyQuery objects into OpenSearch fuzzy query builders, * supporting configurable fuzzy matching parameters like edit distance and expansions. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java
import org.codelibs.fess.util.DocumentUtil; import org.lastaflute.web.Execute; import org.lastaflute.web.response.ActionResponse; import org.lastaflute.web.response.StreamResponse; /** * Action class for handling cached document content requests. * Provides functionality to retrieve and display cached versions of crawled documents. */ public class CacheAction extends FessSearchAction { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java
import org.apache.catalina.WebResource; import org.apache.catalina.webresources.StandardRoot; /** * Fess-specific web resource root implementation for Tomcat. * This class extends StandardRoot to provide custom web resource handling * for Fess plugins, including support for plugin JAR files in the WEB-INF/plugin directory. */ public class FessWebResourceRoot extends StandardRoot { /** Logger instance for this class */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0)