- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 1,448 for convert (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java
return asJson(new ApiResponse().status(Status.OK).result()); } /** * Creates an EditBody from a RequestHeader entity. * * @param entity the request header entity to convert * @return the converted EditBody */ protected EditBody createEditBody(final RequestHeader entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, copyOp -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
} /** * Creates an EditBody from a WebAuthentication entity. * * @param entity the web authentication entity to convert * @return the converted EditBody */ protected EditBody createEditBody(final WebAuthentication entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, copyOp -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
configure.py
def convert_version_to_int(version): """Convert a version number to a integer that can be used to compare. Version strings of the form X.YZ and X.Y.Z-xxxxx are supported. The 'xxxxx' part, for instance 'homebrew' on OS/X, is ignored. Args: version: a version to be converted Returns: An integer if converted successfully, otherwise return None. """
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Apr 30 15:18:54 UTC 2025 - 48.3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
addr[1] = (byte) (this.address >>> 16 & 0xFF); addr[2] = (byte) (this.address >>> 8 & 0xFF); addr[3] = (byte) (this.address & 0xFF); return addr; } /** * To convert this address to an <code>InetAddress</code>. * * @return the {@link java.net.InetAddress} representation of this address. * @throws UnknownHostException if the address cannot be resolved */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java
// Parse sockaddr structure (starts at offset + 24) InetAddress addr = parseSockaddr(data, offset + 24); if (addr == null) { return null; } // Convert bits per second to Mbps for internal use NetworkInterfaceInfo info = new NetworkInterfaceInfo(addr, (int) (linkSpeedBps / 1000000L)); info.setInterfaceIndex(ifIndex); info.setCapability(capability);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeInputStreamTest.java
when(tree.send(any(Smb2IoctlRequest.class), eq(RequestParam.NO_RETRY))).thenThrow(new SmbException("boom")); IOException ex = assertThrows(IOException.class, stream::available, "Should convert SmbException to IOException"); assertTrue(ex.getMessage().contains("boom")); } @Test @DisplayName("ensureTreeConnected delegates to handle")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
}); } /** * Creates an EditBody from a StemmerOverrideItem entity for API responses. * * @param entity the StemmerOverrideItem entity to convert * @param dictId the dictionary ID * @return the converted EditBody object */ protected EditBody createEditBody(final StemmerOverrideItem entity, final String dictId) { final EditBody body = new EditBody();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.8K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InetAddresses.java
} /** * Converts a BigInteger to either an IPv4 or IPv6 address. If the IP is IPv4, it must be * constrained to 32 bits, otherwise it is constrained to 128 bits. * * @param address the address represented as a big integer * @param isIpv6 whether the created address should be IPv4 or IPv6 * @return the BigInteger converted to an address
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/ApiAdminFileconfigAction.java
* Creates an edit body from a file configuration entity for API responses. * Processes permissions and virtual hosts for proper display formatting. * * @param entity the file configuration entity to convert * @return edit body containing the entity data */ protected EditBody createEditBody(final FileConfig entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, copyOp -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
} } } return null; } /** * Converts the target object to an XContentBuilder for OpenSearch indexing. * * @param target The object to convert to JSON. * @return The XContentBuilder containing the JSON representation of the target. * @throws OpenSearchAccessException if the conversion fails. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 34.2K bytes - Viewed (0)