- Sort Score
- Result 10 results
- Languages All
Results 4031 - 4040 of 5,086 for Strings (0.1 sec)
-
src/test/java/jcifs/internal/fscc/FileFsFullSizeInformationTest.java
@Nested @DisplayName("ToString Method Tests") class ToStringMethodTests { @Test @DisplayName("Should return correct string representation with default values") void shouldReturnCorrectStringWithDefaultValues() { // When String result = fileFsFullSizeInfo.toString(); // Then assertNotNull(result);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameTest.java
name.name = null; String result = name.toString(); assertTrue(result.contains("null")); } @Test void toString_withMSBrowseName_shouldReplaceSpecialCharacters() { Name name = new Name(mockConfig, "\u0001MSBROWSE ", 0x01, null); String result = name.toString();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
* @return JSON response containing the key match setting */ // GET /api/admin/keymatch/setting/{id} @Execute public JsonResponse<ApiResult> get$setting(final String id) { return asJson(new ApiConfigResponse().setting(keyMatchService.getKeyMatch(id).map(this::createEditBody).orElseGet(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java
private byte fileInformationClass = FILE_BOTH_DIRECTORY_INFO; private byte queryFlags; private int fileIndex; private byte[] fileId; private final int outputBufferLength; private String fileName; /** * Constructs an SMB2 query directory request with the given configuration. * * @param config the configuration for this request */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponseTest.java
*/ @Test void testToString() { Trans2QueryFSInformationResponse response = new Trans2QueryFSInformationResponse(Trans2QueryFSInformationResponse.SMB_INFO_ALLOCATION); String responseString = response.toString(); assertTrue(responseString.startsWith("Trans2QueryFSInformationResponse["), "toString should start with the class name");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java
* complex requiring a long list of checks, need to create a parent/interface/encapsulation * for the types of exceptions */ @Deprecated public class ArtifactResolutionResult { private static final String LS = System.lineSeparator(); private Artifact originatingArtifact; private List<Artifact> missingArtifacts; // Exceptions private List<Exception> exceptions;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
@CsvSource({ "-1, fff", // SMB_INFO_ALLOCATION "3, 003" // FS_SIZE_INFO }) void testToStringWithDifferentLevels(int infoLevel, String expectedHex) { trans2QueryFSInfo = new Trans2QueryFSInformation(config, infoLevel); String result = trans2QueryFSInfo.toString(); assertNotNull(result); assertTrue(result.contains("Trans2QueryFSInformation"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
} /** * Returns the syntax identifier for LSA RPC. * * @return the syntax identifier string */ /** * Returns the RPC syntax identifier for LSA RPC interface. * * @return the RPC syntax string */ public static String getSyntax() { return "12345778-1234-abcd-ef00-0123456789ab:0.0"; } /** * LSA Quality of Service information.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
.collect(Collectors.joining("\n"))); return body; } /** * Gets the CSV file encoding from configuration. * * @return the CSV file encoding string */ private String getCsvEncoding() { return fessConfig.getCsvFileEncoding(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Cut.java
return (o == this) ? 0 : -1; } @Override public int hashCode() { return System.identityHashCode(this); } @Override public String toString() { return "-\u221e"; } private Object readResolve() { return INSTANCE; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 12.4K bytes - Viewed (0)