- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 487 for store64 (0.18 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/role/EditForm.java
* Used for audit trail purposes to track who made changes. */ @Size(max = 1000) public String updatedBy; /** * The timestamp when this role was last updated. * Stored as a long value representing milliseconds since epoch. * Used for audit trail and concurrency control. */ @ValidateTypeFailure public Long updatedTime; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/LocalRepository.java
import org.apache.maven.api.annotations.Immutable; import org.apache.maven.api.annotations.Nonnull; /** * <p>The <dfn>local repository</dfn> is a directory on the developer's machine where * Maven stores all the downloaded artifacts (such as dependencies, plugins, * and project artifacts). When Maven builds a project, it first checks the * local repository to see if the required artifacts are already available.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java
/** * Install an artifact from a particular directory. The artifact handler is used to determine * the filename of the source file. * * @param basedir the directory where the artifact is stored * @param finalName the name of the artifact sans extension * @param artifact the artifact definition * @param localRepository the local repository to install into
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
validateApi(body, messages -> {}); body.crudMode = CrudMode.CREATE; final DuplicateHost duplicateHost = getDuplicateHost(body).map(entity -> { try { duplicateHostService.store(entity); } catch (final Exception e) { logger.warn("Failed to process a request.", e);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
* custom data transformation and enrichment during the crawling process. * * <p>It supports pluggable ingesters that can modify the result data * before it is stored in the search index.</p> */ public class FessResponseProcessor extends DefaultResponseProcessor { /** * Default constructor. */ public FessResponseProcessor() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
* Maximum length is 1000 characters. */ @Size(max = 1000) public String createdBy; /** * The timestamp when this access token was created. * Stored as a long value representing milliseconds since epoch. */ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default values for creation.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/di/tool/package-info.java
* which processes classes annotated with {@link org.apache.maven.api.di.Named} and creates an index file * that allows for efficient discovery of injectable components at runtime. * <p> * The generated index is stored at {@code META-INF/maven/org.apache.maven.api.di.Inject} and contains * the fully qualified names of all classes annotated with {@code @Named}. * * @since 4.0.0 */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
@Resource private DataConfigService dataConfigService; @Resource private DataConfigPager dataConfigPager; @Resource private RoleTypeService roleTypeService; /** The data store factory. */ @Resource protected DataStoreFactory dataStoreFactory; // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/LocalRepositoryNotAccessibleException.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.repository; import java.io.IOException; /** * Signals a failure to store files within the local repository. * */ @Deprecated public class LocalRepositoryNotAccessibleException extends IOException { public LocalRepositoryNotAccessibleException(String message, Throwable cause) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java
} body.crudMode = CrudMode.CREATE; final RequestHeader reqHeader = getRequestHeader(body).map(entity -> { try { reqHeaderService.store(entity); } catch (final Exception e) { logger.warn("Failed to process a request.", e);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0)