- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 599 for setKinds (0.13 sec)
-
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
*/ public ApiConfigsResponse<T> settings(final List<T> settings) { this.settings = settings; total = settings.size(); return this; } /** * Sets the total number of configuration settings. * @param total The total number of configuration settings. * @return The ApiConfigsResponse instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
api/maven-api-settings/pom.xml
<parent> <groupId>org.apache.maven</groupId> <artifactId>maven-api</artifactId> <version>4.1.0-SNAPSHOT</version> </parent> <artifactId>maven-api-settings</artifactId> <name>Maven 4 API :: Settings</name> <description>Maven 4 API - Immutable Settings model.</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-annotations</artifactId>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 3.6K bytes - Viewed (0) -
.teamcity/README.md
- Click `Versioned Settings` on the left sidebar. - Select `Synchronization enabled` - `use settings from VCS` - `MyNewVcsRoot`(the one you just created) - `Settings format: Kotlin`, then `Apply`. - At the popup window, click `Import Settings from VCS`. Wait a few seconds.
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Mar 06 23:02:25 UTC 2024 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java
/** * Retrieves label type settings with pagination. * * @param body the search parameters for filtering and pagination * @return JSON response containing label type settings list */ // GET /api/admin/labeltype/settings // PUT /api/admin/labeltype/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.5K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/03-gopls.yml
attributes: label: "What did you expect to see?" validations: required: true - type: textarea id: editor-and-settings attributes: label: "Editor and settings" description: "Your editor and any settings you have configured (for example, your VSCode settings.json file)" validations: required: false - type: textarea id: logs attributes: label: "Logs"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri May 24 17:09:04 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestBulkFileWriter.java
@Override public SuggestWriterResult write(final Client client, final SuggestSettings settings, final String index, final SuggestItem[] items, final boolean update) { throw new UnsupportedOperationException("not yet."); } @Override public SuggestWriterResult delete(final Client client, final SuggestSettings settings, final String index, final String id) { throw new UnsupportedOperationException("not yet.");
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 2.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Writer.kt
} } /** Write okhttp's settings to the peer. */ @Throws(IOException::class) fun settings(settings: Settings) { withLock { if (closed) throw IOException("closed") frameHeader( streamId = 0, length = settings.size() * 6, type = TYPE_SETTINGS, flags = FLAG_NONE, ) for (i in 0 until Settings.COUNT) { if (!settings.isSet(i)) continue
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
runner.ensureYellow(); client = runner.client(); // Initialize suggest settings Suggester suggester = Suggester.builder().build(client, "test"); settings = suggester.settings(); // Create test index client.admin().indices().prepareCreate(TEST_INDEX).execute().actionGet(); } @AfterClass
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 18.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
} /** * Updates the general system configuration settings. * * @param form the edit form containing updated settings * @return HTML response after updating settings */ @Execute @Secured({ ROLE }) public HtmlResponse update(final EditForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2Test.kt
object : BaseTestHandler() { override fun settings( clearPrevious: Boolean, settings: Settings, ) { // No clearPrevious in HTTP/2. assertThat(clearPrevious).isFalse() assertThat(settings.headerTableSize).isEqualTo(reducedTableSizeBytes) assertThat(settings.getEnablePush(true)).isFalse() } }, ) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 28.1K bytes - Viewed (0)