- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 577 for existent (0.15 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
return asJson( new ApiResult.ApiUpdateResponse().id(String.valueOf(entity.getId())).created(true).status(ApiResult.Status.OK).result()); } /** * Updates an existing Kuromoji dictionary item. * * @param dictId the dictionary ID * @param body the request body containing updated Kuromoji item information * @return JSON response with result status */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
return asJson( new ApiResult.ApiUpdateResponse().id(String.valueOf(entity.getId())).created(true).status(ApiResult.Status.OK).result()); } /** * Update an existing protected words entry in the specified dictionary. * * @param dictId identifier of the dictionary * @param body update request payload * @return JSON response containing update result and entry ID
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
assertEquals("the", item.getInput()); assertEquals("the", item.getNewInput()); } public void test_constructor_withNonZeroId() { // Test when id is not 0 (existing item) StopwordsItem item = new StopwordsItem(123, "and"); assertEquals(123, item.getId()); assertEquals("and", item.getInput()); assertNull(item.getNewInput()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java
} return asJson(new ApiResult.ApiUpdateResponse().id(entity.getId()).created(true).status(ApiResult.Status.OK).result()); } /** * Updates an existing role setting. * * @param body the role data to update * @return JSON response containing the updated role setting ID */ // PUT /api/admin/role/setting @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7K bytes - Viewed (0) -
PULL_REQUESTS_ETIQUETTE.md
- Keep PRs focused—one feature or fix. Split large changes into multiple PRs. 3. **Testing**: - Include unit tests for new functionality or bug fixes. - Ensure existing tests pass (`make test`). - Document testing steps in the PR summary if manual testing was performed. 4. **Before Submitting**: - Run `make verify` to check formatting, linting, and tests.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun May 25 16:32:03 UTC 2025 - 4.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapComputeIfAbsentTester.java
} @MapFeature.Require(SUPPORTS_PUT) @CollectionSize.Require(absent = ZERO) public void testComputeIfAbsent_supportedPresent() { assertEquals( "computeIfAbsent(present, function) should return existing value", v0(), getMap() .computeIfAbsent( k0(), k -> { throw new AssertionFailedError(); })); expectUnchanged();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 6.7K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java
/* * This is a public type so that the Android test runner can create an instance directly as it * insists upon doing. It then runs the test, which behaves exactly like this package's existing * PackageSanityTests. (The test would run on the JVM, too, if not for the suppression below, and * that would be a problem because it violates small-test rules. Note that we strip the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 02:48:50 UTC 2024 - 5.4K bytes - Viewed (0) -
docs/de/docs/tutorial/handling-errors.md
Sie müssten beispielsweise einem Client sagen: * Dass er nicht die notwendigen Berechtigungen hat, eine Aktion auszuführen. * Dass er zu einer Ressource keinen Zugriff hat. * Dass die Ressource, auf die er zugreifen möchte, nicht existiert. * usw. In diesen Fällen geben Sie normalerweise einen **HTTP-Statuscode** im Bereich **400** (400 bis 499) zurück.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
); // Set the session ID of the existing session request.setSessionId(getSessionId()); // CRITICAL: Set the binding flag per MS-SMB2 request.setSessionBinding(true); // The actual transport send would need proper integration // This would be sent on the NEW channel's transport, not the existing one
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 20K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
</association> </field> <field> <name>file</name> <version>1.0.0+</version> <description> Specifies that this profile will be activated based on existence of a file. </description> <association> <type>ActivationFile</type> </association> </field> <field> <name>packaging</name>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 33.8K bytes - Viewed (0)