- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 1,094 for configurator (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java
import jakarta.annotation.Resource; /** * API action for admin general settings management. * Provides RESTful API endpoints for managing general system configuration settings in the Fess search engine. * General settings include system-wide parameters, LDAP configuration, and core application settings. * */ public class ApiAdminGeneralAction extends FessApiAdminAction {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainFactory.java
* * <p>This factory is responsible for instantiating concrete toolchain implementations * based on toolchain model configurations or default settings.</p> * * @since 4.0.0 */ @Experimental @Consumer public interface ToolchainFactory { /** * Creates a toolchain instance from the provided model configuration. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java
} return packet; } @Test void decode_basic_noContexts() throws Exception { Configuration config = Mockito.mock(Configuration.class); Smb2CreateResponse resp = new Smb2CreateResponse(config, "file.txt"); byte[] fileId = new byte[16]; for (int i = 0; i < fileId.length; i++)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
docs/bucket/replication/README.md
Delete marker replication is allowed in [AWS V1 Configuration](https://aws.amazon.com/blogs/storage/managing-delete-marker-replication-in-amazon-s3/) but not in V2 configuration. The MinIO implementation above is based on V2 configuration, however it has been extended to allow both DeleteMarker replication and replication of versioned deletes with the `DeleteMarkerReplication` and `DeleteReplication` fields in the replication configuration above. By default, this is set to `Disabled` unless the...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComQueryInformation.java
public class SmbComQueryInformation extends ServerMessageBlock { /** * Constructs a query information request. * * @param config the configuration * @param filename the file name to query */ public SmbComQueryInformation(final Configuration config, final String filename) { super(config, SMB_COM_QUERY_INFORMATION, filename); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/EditForm.java
super(); } /** * The unique identifier of the data configuration being edited. * This is a required field for identifying which data config to update. */ @Required @Size(max = 1000) public String id; /** * The username of the user who last updated this data configuration. * Used for audit trail purposes to track who made changes. */ @Size(max = 1000)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/EditForm.java
super(); } /** * The unique identifier of the path mapping configuration being edited. * This is a required field for identifying which path map to update. */ @Required @Size(max = 1000) public String id; /** * The username of the user who last updated this path mapping configuration. * Used for audit trail purposes to track who made changes. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/EditForm.java
} /** * The unique identifier of the related content configuration being edited. * This is a required field for identifying which related content entry to update. */ @Required @Size(max = 1000) public String id; /** * The username of the user who last updated this related content configuration. * Used for audit trail purposes to track who made changes. */
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/fess/app/web/admin/webauth/EditForm.java
} /** * The unique identifier of the web authentication configuration being edited. * This is a required field for identifying which web authentication entry to update. */ @Required @Size(max = 1000) public String id; /** * The username of the user who last updated this web authentication configuration. * Used for audit trail purposes to track who made changes.
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/fess/app/service/WebConfigService.java
}); } /** * Gets a web configuration by its ID. * * @param id The ID of the web configuration * @return Optional containing the web configuration if found */ public OptionalEntity<WebConfig> getWebConfig(final String id) { return webConfigBhv.selectByPK(id); } /** * Gets a web configuration by its name.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0)