- Sort Score
- Result 10 results
- Languages All
Results 761 - 770 of 2,092 for Defaults (2.56 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolver.java
* @param session the session to use * @param artifactCoordinates t * @return the version range resolution result * @throws VersionResolverException if an errors occurs */ @Nonnull default VersionRangeResolverResult resolve( @Nonnull Session session, @Nonnull ArtifactCoordinates artifactCoordinates) throws VersionResolverException {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/DesignForm.java
* This constructor initializes the form for design file management * in the admin interface, handling upload and management of templates and CSS files. */ public DesignForm() { // Default constructor with explicit documentation } /** * The multipart file containing the design content to upload. */ public MultipartFormFile designFile; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/group/CreateForm.java
@Size(max = 100) public String name; /** * Additional attributes for the group. */ public Map<String, String> attributes = new HashMap<>(); /** * Initializes the form with default values. */ public void initialize() { crudMode = CrudMode.CREATE; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorAction.java
* This action displays error pages when unhandled exceptions occur * during search operations or page navigation. */ public class ErrorAction extends FessSearchAction { /** * Default constructor for ErrorAction. */ public ErrorAction() { super(); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorSystemerrorAction.java
* This action displays error pages when the server encounters * an unexpected condition that prevents it from fulfilling the request. */ public class ErrorSystemerrorAction extends FessSearchAction { /** * Default constructor for ErrorSystemerrorAction. */ public ErrorSystemerrorAction() { super(); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/LdapChain.java
import org.codelibs.fess.util.ComponentUtil; /** * An authentication chain for LDAP. */ public class LdapChain implements AuthenticationChain { /** * Default constructor. */ public LdapChain() { // do nothing } @Override public void update(final User user) { ComponentUtil.getLdapManager().insert(user); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/WrappingExecutorService.java
* to any {@code Runnable} passed to the default implementation of {@link #wrapTask(Runnable)}. */ protected abstract <T extends @Nullable Object> Callable<T> wrapTask(Callable<T> callable); /** * Wraps a {@code Runnable} for submission to the underlying executor. The default implementation * delegates to {@link #wrapTask(Callable)}. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 5.4K bytes - Viewed (0) -
.idea/codeStyles/codeStyleConfig.xml
<component name="ProjectCodeStyleConfiguration"> <state> <option name="USE_PER_PROJECT_SETTINGS" value="true" /> <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" /> </state>
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue May 14 13:10:36 UTC 2024 - 210 bytes - Viewed (0) -
cmd/admin-handlers-config-kv.go
if err = saveServerConfig(ctx, objectAPI, cfg); err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } // freshly retrieve the config so that default values are loaded for reset config if cfg, err = getValidConfig(objectAPI); err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 15.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
import jakarta.annotation.Resource; import jakarta.servlet.http.HttpSession; /** * The action for search operations. */ public class SearchAction extends FessSearchAction { /** * Default constructor. */ public SearchAction() { super(); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14K bytes - Viewed (0)