- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 487 for path_ (0.02 sec)
-
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) -
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) -
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/org/codelibs/fess/app/web/api/admin/dict/ListBody.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiCreator.java
* @param id The ID of the dictionary file. * @param path The path of the dictionary file. * @param timestamp The timestamp of the dictionary file. * @return A new dictionary file. */ @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new KuromojiFile(id, path, timestamp).manager(dictionaryManager); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlJvmTest.kt
} @Test fun fromUriPartial() { val uri = URI("/path") assertThat(uri.toHttpUrlOrNull()).isNull() } @Test fun toJavaNetUrl() { val httpUrl = "http://username:password@host/path?query#fragment".toHttpUrl() val javaNetUrl = httpUrl.toUrl() assertThat(javaNetUrl.toString()) .isEqualTo("http://username:password@host/path?query#fragment") } @Test fun toUri() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
protected String id; /** The file path of this dictionary. */ protected String path; /** The timestamp when this dictionary file was created or last modified. */ protected Date timestamp; /** * Creates a new DictionaryFile with the specified parameters. * * @param id the unique identifier for this dictionary file * @param path the file path of this dictionary
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0) -
.github/workflows/maven.yml
- uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Checkout fess-parent uses: actions/checkout@v4 with: repository: codelibs/fess-parent ref: ${{ env.PARENT_BRANCH }} path: fess-parent - name: Install fess-parent run: |
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue May 06 09:07:19 UTC 2025 - 1.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/NativeImageTestsAccessors.kt
import okhttp3.Response import okhttp3.internal.connection.Exchange import okhttp3.internal.connection.RealCall import okhttp3.internal.connection.RealConnection import okio.FileSystem import okio.Path internal fun buildCache( file: Path, maxSize: Long, fileSystem: FileSystem, ): Cache = Cache(fileSystem, file, maxSize) internal var RealConnection.idleAtNsAccessor: Long get() = idleAtNs set(value) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.3K bytes - Viewed (0)