- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 314 for presentation (1.37 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java
*/ @Override public int hashCode() { return java.util.Objects.hash(loc, lastmod); } /** * Returns a string representation of this SitemapFile. * @return A string representation. */ @Override public String toString() { return "SitemapFile [loc=" + loc + ", lastmod=" + lastmod + "]"; }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.4K bytes - Viewed (1) -
src/main/java/jcifs/smb/SID.java
si += 4; } } /** * Construct a SID from it's textual representation such as * {@code S-1-5-21-1496946806-2192648263-3843101252-1029}. * * @param textual the textual representation of the SID * @throws SmbException if the textual format is invalid */ public SID(final String textual) throws SmbException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UUID.java
node[3] = uuid.node[3]; node[4] = uuid.node[4]; node[5] = uuid.node[5]; } /** * Constructs a UUID from a string representation * * @param str the string representation of the UUID to parse */ public UUID(final String str) { final char[] arr = str.toCharArray(); time_low = hex_to_bin(arr, 0, 8);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/DcerpcMessageTest.java
buf.enc_ndr_small(0); // minor version buf.enc_ndr_small(2); // ptype = 2 (Response) buf.enc_ndr_small(0); // flags buf.enc_ndr_long(0x00000010); // data representation buf.enc_ndr_short(20); // length buf.enc_ndr_short(0); // auth length buf.enc_ndr_long(0); // call_id // Response body buf.enc_ndr_long(4); // alloc_hint
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
.thenReturn(DcerpcConstants.RPC_PT_RESPONSE) // ptype .thenReturn(DcerpcConstants.RPC_C_PF_BROADCAST); // flags when(mockBuffer.dec_ndr_long()).thenReturn(0x00000010) // Data representation .thenReturn(123); // call_id when(mockBuffer.dec_ndr_short()).thenReturn(100) // length .thenReturn(0); // auth_value length
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.15.md
Work on making Kubernetes installation, upgrade and configuration even more robust has been a major focus for this cycle for SIG Cluster Lifecycle (see the May 6, 2019 [Community Update](https://docs.google.com/presentation/d/1QUOsQxfEfHlMq4lPjlK2ewQHsr9peEKymDw5_XwZm8Q/edit?usp=sharing)). Bug fixes across bare metal tooling and production-ready user stories, such as the high availability use cases have been given priority for 1.15.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 278.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultDataImpl.java
} catch (final UnsupportedEncodingException e) { return new String(data, Constants.UTF_8_CHARSET); } } /** * Returns a string representation of this object. * @return A string representation. */ @Override public String toString() { return "AccessResultDataImpl [id=" + id + ", transformerName=" + transformerName + ", encoding=" + encoding + "]"; }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ObjectUtil.java
public static int hashCode(final Object obj) { return obj == null ? 0 : obj.hashCode(); } /** * Returns the string representation of the specified object, or null if the object is null. * * @param obj the object * @return the string representation or null */ public static String toString(final Object obj) { return obj == null ? null : obj.toString(); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2SetFileInformationResponseTest.java
String actualString = response.toString(); assertTrue(actualString.startsWith("Trans2SetFileInformationResponse["), "The string representation should start with the class name."); assertTrue(actualString.endsWith("]"), "The string representation should end with a bracket."); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
return false; } return true; } /** * Returns a string representation of this CharMappingItem including all fields. * * @return string representation of this object */ @Override public String toString() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0)