- Sort Score
- Result 10 results
- Languages All
Results 861 - 870 of 1,682 for GoString (0.14 sec)
-
src/main/java/jcifs/smb/SmbEnumerationUtil.java
if ( u.getPath().lastIndexOf('/') != ( u.getPath().length() - 1 ) ) throw new SmbException(u.toString() + " directory must end with '/'"); if ( locator.getType() != SmbConstants.TYPE_SERVER ) throw new SmbException("The requested list operations is invalid: " + u.toString()); Set<FileEntry> set = new HashSet<>(); if ( tc.getDfs().isTrustedDomain(tc, locator.getServer()) ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:41:19 UTC 2019 - 12.5K bytes - Viewed (0) -
src/test/java/jcifs/tests/ReadWriteTest.java
@Test public void testReadWriteTwoHandles () throws IOException { try ( SmbFile f = createTestFile() ) { try ( SmbFile s = new SmbFile(f.getURL().toString(), withTestNTLMCredentials(getContext())); SmbFile t = new SmbFile(f.getURL().toString(), withTestNTLMCredentials(getContext())) ) { try ( OutputStream os = s.getOutputStream(); InputStream is = t.getInputStream() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CharSourceTest.java
while ((read = reader.read(buf)) != -1) { writer.write(buf, 0, read); } reader.close(); writer.close(); assertTrue(source.wasStreamClosed()); assertEquals(STRING, writer.toString()); } public void testLines() throws IOException { source = new TestCharSource(LINES); ImmutableList<String> lines; try (Stream<String> linesStream = source.lines()) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:20:11 UTC 2024 - 11.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java
throw new GradleException("filter isn't ready to transform"); } Document document = Jsoup.parse(CharStreams.toString(in)); document.outputSettings().indentAmount(2).prettyPrint(true); document.prependChild(new DocumentType("html", "", "")); document.head(). append("<meta charset='utf-8'>").
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 03 05:02:20 UTC 2024 - 9.9K bytes - Viewed (0) -
guava/src/com/google/common/base/CommonPattern.java
public abstract String pattern(); public abstract int flags(); // Re-declare this as abstract to force subclasses to override. @Override public abstract String toString(); public static CommonPattern compile(String pattern) { return Platform.compilePattern(pattern); } public static boolean isPcreLike() { return Platform.patternCompilerIsPcreLike(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Apr 09 00:52:54 UTC 2021 - 1.4K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ContributorTest.java
void testEqualsIdentity() { Contributor thing = new Contributor(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new Contributor().toString()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ExtensionTest.java
void testEqualsIdentity() { Extension thing = new Extension(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new Extension().toString()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/PluginContainerTest.java
PluginContainer thing = new PluginContainer(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new PluginContainer().toString()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/RelocationTest.java
void testEqualsIdentity() { Relocation thing = new Relocation(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new Relocation().toString()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
* href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>. */ @Override public String toString() { // racy single-check idiom, safe because String is immutable String result = toString; if (result == null) { result = computeToString(); toString = result; } return result; } private String computeToString() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Sep 26 19:15:09 UTC 2024 - 47.5K bytes - Viewed (0)