- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 2,612 for creates (0.41 sec)
-
src/main/java/org/codelibs/fess/cors/CorsHandler.java
* Abstract base class for handling CORS (Cross-Origin Resource Sharing) requests. * Provides common CORS header constants and defines the processing interface. */ public abstract class CorsHandler { /** * Creates a new instance of CorsHandler. */ public CorsHandler() { // Default constructor } /** * CORS header for specifying allowed origin. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/SQLRuntimeException.java
* * @author higa * @author manhole */ public class SQLRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 2533513110369526191L; /** * Creates a {@link SQLRuntimeException}. * * @param cause the underlying exception */ public SQLRuntimeException(final SQLException cause) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DocumentBuilderFactoryUtil.java
} catch (final ParserConfigurationException e) { throw new ParserConfigurationRuntimeException(e); } return factory; } /** * Creates a new {@link DocumentBuilder}. * * @return A new {@link DocumentBuilder}. */ public static DocumentBuilder newDocumentBuilder() { try { return newInstance().newDocumentBuilder();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java
* This file should contain a list of words that will be filtered from search results. */ @Required public MultipartFormFile badWordFile; /** * Default constructor for UploadForm. * Creates a new instance with default values. */ public UploadForm() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
} /** Return value from the RPC call. */ public int retval; /** Policy handle to be closed. */ public rpc.policy_handle handle; /** * Creates a new LsarClose message. * * @param handle the policy handle to close */ public LsarClose(final rpc.policy_handle handle) { this.handle = handle; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
android/guava-testlib/pom.xml
<version>4.13.2</version> </dependency> <dependency> <!-- Do not include Truth in non-test scope! Doing so creates a problematic dependency cycle. --> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <version>${truth.version}</version> <scope>test</scope> <exclusions>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Mar 19 17:26:38 UTC 2025 - 4.9K bytes - Viewed (0) -
guava-testlib/pom.xml
<version>4.13.2</version> </dependency> <dependency> <!-- Do not include Truth in non-test scope! Doing so creates a problematic dependency cycle. --> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <version>${truth.version}</version> <scope>test</scope> <exclusions>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Mar 19 17:26:38 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
// ------------- /** * Creates a new path mapping based on the provided form data. * * @param form the create form containing the new path mapping data * @return HTML response redirecting to the path mapping list page */ @Execute @Secured({ ROLE }) public HtmlResponse create(final CreateForm form) { verifyCrudMode(form.crudMode, CrudMode.CREATE);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
android/guava/src/com/google/common/net/MediaType.java
return create(AUDIO_TYPE, subtype); } /** * Creates a media type with the "font" type and the given subtype. * * @throws IllegalArgumentException if subtype is invalid */ static MediaType createFontType(String subtype) { return create(FONT_TYPE, subtype); } /** * Creates a media type with the "image" type and the given subtype.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/InvalidAccessTokenException.java
/** Serial version UID for serialization */ private static final long serialVersionUID = 1L; /** Type of the invalid access token */ private final String type; /** * Creates a new InvalidAccessTokenException with the specified type and message. * * @param type the type of the invalid access token * @param message the detailed error message */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0)