- Sort Score
- Result 10 results
- Languages All
Results 1131 - 1140 of 1,647 for GoString (0.04 sec)
-
src/main/java/jcifs/smb/Kerb5Authenticator.java
} return PREFERRED_MECHS.contains(mechanism); } /** * {@inheritDoc} * * @see java.lang.Object#toString() */ @Override public String toString() { return "Kerb5Authenticator[subject=" + (this.getSubject() != null ? this.getSubject().getPrincipals() : null) + ",user=" + this.user + ",realm=" + this.realm + "]";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/util/PathValidatorTest.java
for (int i = 0; i < 100; i++) { longPath.append("\\verylongfoldername"); } assertThrows(SmbException.class, () -> { validator.validatePath(longPath.toString()); }); } @Test public void testComponentTooLong() throws Exception { StringBuilder longComponent = new StringBuilder("\\share\\"); for (int i = 0; i < 300; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
buildType: BuildType?, mode: KillProcessMode, os: Os, arch: Arch = Arch.AMD64, executionMode: BuildStep.ExecutionMode = BuildStep.ExecutionMode.DEFAULT, ) { script { name = mode.toString() this.executionMode = executionMode scriptContent = "\"${ javaHome( BuildToolBuildJvm, os, arch,
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
} else { enc = encoding; } buf.append(enc); final HttpServletResponse response = LaResponseUtil.getResponse(); response.setContentType(buf.toString()); writeHeaders(response); try (PrintWriter out = new PrintWriter(new OutputStreamWriter(response.getOutputStream(), enc))) { out.print(text); } catch (final IOException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsLabelType.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java
StringBuilder sb = new StringBuilder(); for (int i = 0; i < 1000; i++) { sb.append("Long message part ").append(i).append(" "); } String longMessage = sb.toString(); ScheduledJobException exception = new ScheduledJobException(longMessage); assertEquals(longMessage, exception.getMessage()); } public void test_specialCharactersInMessage() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java
StringBuilder longMessage = new StringBuilder(); for (int i = 0; i < 1000; i++) { longMessage.append("Storage error ").append(i).append(" "); } String message = longMessage.toString(); StorageException exception = new StorageException(message); assertEquals(message, exception.getMessage()); } public void test_specialCharactersInMessage() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/RelationshipTester.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/TrustedListenableFutureTaskTest.java
} } }, "Custom thread name"); thread.start(); enterLatch.await(); assertFalse(task.isDone()); String result = task.toString(); assertThat(result).contains("Custom thread name"); task.cancel(true); exitLatch.await(); } @J2ktIncompatible @GwtIncompatible // used only in GwtIncompatible tests
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
throw new IllegalArgumentException("File ID must be 16 bytes"); } System.arraycopy(newFileId, 0, this.fileId, 0, 16); } @Override public String toString() { return "HandleInfo{" + "path='" + path + '\'' + ", createGuid=" + createGuid + ", type=" + type + ", timeout=" + timeout + ", reconnecting=" + reconnecting + '}'; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0)