- Sort Score
- Result 10 results
- Languages All
Results 631 - 640 of 5,083 for Returns (3.28 sec)
-
README.md
```java import org.codelibs.core.convert.*; // Safe type conversions with null handling Integer value = IntegerConversionUtil.toInteger("123"); // Returns 123 Integer nullValue = IntegerConversionUtil.toInteger(null); // Returns null Boolean flag = BooleanConversionUtil.toBoolean("true"); // Returns true Date date = DateConversionUtil.toDate("2023-12-25", "yyyy-MM-dd"); // Primitive conversions with default values
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java
* @param id the job log ID * @return JSON response containing the job log details */ @Execute public JsonResponse<ApiResult> get$log(final String id) { return asJson(new ApiLogResponse().log(jobLogService.getJobLog(id).map(this::createEditBody).orElseGet(() -> { throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); return null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
return setupWireFormatReturn; } @Override protected int writeParametersWireFormat(byte[] dst, int dstIndex) { return parametersWireFormatReturn; } @Override protected int writeDataWireFormat(byte[] dst, int dstIndex) { return dataWireFormatReturn; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/archive/zip/register.go
} } func compressor(method uint16) Compressor { ci, ok := compressors.Load(method) if !ok { return nil } return ci.(Compressor) } func decompressor(method uint16) Decompressor { di, ok := decompressors.Load(method) if !ok { return nil } return di.(Decompressor)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Oct 13 18:36:46 UTC 2023 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/DfsReferralTest.java
/** * Tests for the DfsReferral class. * This class tests the functionality of the DfsReferral class, * ensuring that objects are constructed correctly, appended properly, * and that the toString method returns the expected format. */ class DfsReferralTest { /** * Tests the default constructor of the DfsReferral class. * It verifies that a new DfsReferral object is initialized with its 'next'
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/FileTypeHelperTest.java
fileTypeHelper.add("text/plain", "text"); assertEquals("pdf", fileTypeHelper.get("application/pdf")); assertEquals("text", fileTypeHelper.get("text/plain")); // Test non-existent mimetype returns default value assertEquals("others", fileTypeHelper.get("non/existent")); } public void test_get_withNullMimetype() { assertEquals("others", fileTypeHelper.get(null)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 5.3K bytes - Viewed (0) -
docs/en/docs/advanced/additional-status-codes.md
For example, let's say that you want to have a *path operation* that allows to update items, and returns HTTP status codes of 200 "OK" when successful. But you also want it to accept new items. And when the items didn't exist before, it creates them, and returns an HTTP status code of 201 "Created". To achieve that, import `JSONResponse`, and return your content there directly, setting the `status_code` that you want:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2K bytes - Viewed (0) -
cmd/site-replication-utils.go
if !globalSiteReplicationSys.isEnabled() { return } sm.Lock() defer sm.Unlock() for _, rs := range sm.peerResyncMap { st, ok := sm.resyncStatus[rs.resyncID] if !ok { return } switch st.Status { case ResyncCompleted, ResyncFailed: return default: delete(st.BucketStatuses, b) } } } // returns overall resync status from individual bucket resync status map
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumTest.java
assertNotNull(descrBytes); assertEquals(13, descrBytes.length); // WrLeh(5) + null(1) + B13BWz(6) + null(1) = 13 } @Test @DisplayName("Test writeSetupWireFormat returns 0") void testWriteSetupWireFormat() { netShareEnum = new NetShareEnum(realConfig); byte[] dst = new byte[100]; int result = netShareEnum.writeSetupWireFormat(dst, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
}); } /** * Returns HTML response for the edit page. * * @return HTML response for the edit page */ private HtmlResponse asEditHtml() { return asHtml(path_AdminFileconfig_AdminFileconfigEditJsp).renderWith(data -> { registerRolesAndLabels(data); }); } /** * Returns HTML response for the details page. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.7K bytes - Viewed (0)