- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 691 for path_ (0.02 sec)
-
src/main/java/org/codelibs/core/exception/ResourceNotFoundRuntimeException.java
/** * The path to the resource. */ private final String path; /** * Creates a {@link ResourceNotFoundRuntimeException}. * * @param path the resource path */ public ResourceNotFoundRuntimeException(final String path) { super("ECL0055", asArray(path)); this.path = path; } /** * Returns the path. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/DfsReferralData.java
String getShare(); /** * Get the number of characters from the UNC path that were consumed by this referral * * @return the number of characters from the unc path that were consumed by this referral */ int getPathConsumed(); /** * Get the replacement path for this referral * * @return the replacement path for this referal */ String getPath(); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2GetDfsReferralTest.java
// Check that the path is written after the referral level // The path should be written starting at index 2 // writeString adds null terminator assertTrue(len > 2, "Length should include path"); String writtenPath = extractStringFromBuffer(buffer, 2, len - 2); assertTrue(writtenPath.contains("abc"), "Path should be written to buffer"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
samples/static-server/src/main/java/okhttp3/sample/SampleServer.java
return result; } private String contentType(String path) { if (path.endsWith(".png")) return "image/png"; if (path.endsWith(".jpg")) return "image/jpeg"; if (path.endsWith(".jpeg")) return "image/jpeg"; if (path.endsWith(".gif")) return "image/gif"; if (path.endsWith(".html")) return "text/html; charset=utf-8"; if (path.endsWith(".txt")) return "text/plain; charset=utf-8";
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jan 02 02:50:44 UTC 2019 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformation.java
* @param config the SMB configuration * @param filename the path to query information for * @param informationLevel the information level to query */ public Trans2QueryPathInformation(final Configuration config, final String filename, final int informationLevel) { super(config, SMB_COM_TRANSACTION2, TRANS2_QUERY_PATH_INFORMATION); this.path = filename; this.informationLevel = informationLevel;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4K bytes - Viewed (0) -
kotlin-js-store/yarn.lock
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 22 12:28:51 UTC 2023 - 87.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiRequestTest.java
} @Override public void tearDown() throws Exception { webApiRequest = null; mockRequest = null; super.tearDown(); } // Test constructor with various servlet path values public void test_constructor_withNormalServletPath() { final String servletPath = "/api/v1/search"; webApiRequest = new WebApiRequest(mockRequest, servletPath); assertNotNull(webApiRequest);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/TagForm.java
/** * Form class for handling tag operations in storage management. * This form represents tag data including path, name, and associated metadata. */ public class TagForm { /** * The file or directory path associated with this tag. */ @Required public String path; /** * The name of the tag with a maximum length of 100 characters. */ @Required @Size(max = 100)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
* * @param id The unique identifier for this dictionary file. * @param path The path to the dictionary file. * @param timestamp The last modified timestamp of the file. */ public StopwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return STOPWORDS; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
* @param path the file path * @param timestamp the file timestamp */ public ProtwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return PROTWORDS; } @Override public String getPath() { return path; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.5K bytes - Viewed (0)