- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 163 for getErr (0.07 sec)
-
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
final SmbResourceLocator loc = this.getParent().getLocator(); final String unc = loc.getUNCPath(); final String p = loc.getURL().getPath(); if (p.lastIndexOf('/') != p.length() - 1) { throw new SmbException(loc.getURL() + " directory must end with '/'"); } if (unc.lastIndexOf('\\') != unc.length() - 1) { throw new SmbException(unc + " UNC must end with '\\'");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacUnicodeStringTest.java
import org.junit.jupiter.api.Test; /** * Tests for the {@link PacUnicodeString} class. */ class PacUnicodeStringTest { /** * Tests the constructor and getter methods. */ @Test void testConstructorAndGetters() { // Create a new instance with some test data short length = 10; short maxLength = 20; int pointer = 100;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java
id = repository.getId(); } log.debug("Using mirror: " + mirror.getUrl() + " (id: " + id + ")"); repository = artifactRepositoryFactory.createArtifactRepository( id, mirror.getUrl(), repository.getLayout(), repository.getSnapshots(), repository.getReleases()); } return repository; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
throw new RuntimeCIFSException("NTLM handshake failed", e); } this.handshakeComplete = true; } @Override public URL getURL() { return this.connection.getURL(); } @Override public int getContentLength() { handshake(); return this.connection.getContentLength(); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 25.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java
} public boolean isResolved() { return resolved; } public void setResolved(boolean resolved) { this.resolved = resolved; } public String getUri() { return uri; } public void setUri(String uri) { this.uri = uri; } public String getScope() { return getArtifactScope().getScope(); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/TestLockingTest.java
errContent = new ByteArrayOutputStream(); System.setOut(new PrintStream(outContent)); System.setErr(new PrintStream(errContent)); } @AfterEach void restoreStreams() { System.setOut(originalOut); System.setErr(originalErr); } @Test @DisplayName("TestLocking fields are properly initialized") void testFieldInitialization() {
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/core/beans/impl/BeanDescImpl.java
propertyDescCache.remove(name); } invalidPropertyNames.clear(); } /** * Prepares the getter method. * * @param readMethod * the getter method * @param propertyName * the property name */ protected void setupReadMethod(final Method readMethod, final String propertyName) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/ClickLog.java
asDocMeta().version(version); } public void addField(final String key, final Object value) { fields.put(key, value); } public String getLogMessage() { return getUrl(); } @Override public Map<String, Object> toSource() { final Map<String, Object> sourceMap = super.toSource(); if (fields != null) { sourceMap.putAll(fields); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
assertEquals(l.getUNCPath(), copy.getUNCPath()); assertEquals(l.getShare(), copy.getShare()); assertEquals(l.getType(), copy.getType()); assertSame(l.getURL(), copy.getURL()); } @ParameterizedTest @DisplayName("queryLookup extracts values case-insensitively") @CsvSource({ "a=1&b=2,a,1", "A=1&a=2,a,1", // first match before next param
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
urlList = fessXpathTransformer.convertChildUrlList(urlList); assertEquals(2, urlList.size()); assertEquals("http://www.example.com", urlList.get(0).getUrl()); assertEquals("http://www.test.com", urlList.get(1).getUrl()); urlList.clear(); urlList.add(RequestDataBuilder.newRequestData().get().url("feed://www.example.com").build());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 41.5K bytes - Viewed (0)