- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 550 for TXT (6.09 sec)
-
src/test/java/jcifs/SmbWatchHandleTest.java
when(fileNotifyInfo2.getAction()).thenReturn(FileNotifyInformation.FILE_ACTION_MODIFIED); when(fileNotifyInfo2.getFileName()).thenReturn("existingfile.txt"); when(fileNotifyInfo3.getAction()).thenReturn(FileNotifyInformation.FILE_ACTION_REMOVED); when(fileNotifyInfo3.getFileName()).thenReturn("deletedfile.txt"); // Verify actions and filenames
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java
* from files that match the pattern "stopwords.*\\.txt". */ public class StopwordsCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(StopwordsCreator.class); /** * Constructs a new creator for stopwords dictionaries. * It sets the file pattern to match files starting with "stopwords" * and ending with ".txt". */ public StopwordsCreator() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
.github/workflows/people.yml
with: version: "0.4.15" enable-cache: true cache-dependency-glob: | requirements**.txt pyproject.toml - name: Install Dependencies run: uv pip install -r requirements-github-actions.txt # Allow debugging with tmate - name: Setup tmate session uses: mxschmitt/action-tmate@v3
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Aug 15 21:44:06 UTC 2025 - 1.6K bytes - Viewed (0) -
.github/workflows/smokeshow.yml
uses: astral-sh/setup-uv@v6 with: version: "0.4.15" enable-cache: true cache-dependency-glob: | requirements**.txt pyproject.toml - run: uv pip install -r requirements-github-actions.txt - uses: actions/download-artifact@v5 with: name: coverage-html path: htmlcov github-token: ${{ secrets.GITHUB_TOKEN }}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Aug 15 21:44:06 UTC 2025 - 1.8K bytes - Viewed (0) -
okhttp-zstd/src/test/java/okhttp3/zstd/ZstdTestMain.kt
.Builder() .addInterceptor(CompressionInterceptor(Zstd)) .build() sendRequest("https://developers.facebook.com/docs/", client) sendRequest("https://www.facebook.com/robots.txt", client) sendRequest("https://www.instagram.com/robots.txt", client) } private fun sendRequest( url: String, client: OkHttpClient, ) { val req = Request.Builder().url(url).build() client.newCall(req).execute().use {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 29 20:01:04 UTC 2025 - 1.3K bytes - Viewed (0) -
.github/workflows/notify-translations.yml
with: version: "0.4.15" enable-cache: true cache-dependency-glob: | requirements**.txt pyproject.toml - name: Install Dependencies run: uv pip install -r requirements-github-actions.txt # Allow debugging with tmate - name: Setup tmate session uses: mxschmitt/action-tmate@v3
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Aug 15 21:44:06 UTC 2025 - 1.7K bytes - Viewed (0) -
docs/fr/docs/deployment/versions.md
Par exemple, disons que vous utilisez la version `0.45.0` dans votre application. Si vous utilisez un fichier `requirements.txt`, vous pouvez spรฉcifier la version avecย : ```txt fastapi==0.45.0 ``` ce qui signifierait que vous utiliseriez exactement la version `0.45.0`. Ou vous pourriez aussi l'รฉpingler avecย : ```txt fastapi>=0.45.0,<0.46.0 ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 4.1K bytes - Viewed (0) -
docs/em/docs/deployment/versions.md
## ๐ ๐ `fastapi` โฌ ๐ฅ ๐ ๐ ๐ "๐" โฌ **FastAPI** ๐ โ๏ธ ๐ฏ ๐ฐ โฌ ๐ ๐ ๐ญ ๐ท โ ๐ ๐ธ. ๐ผ, โก๏ธ ๐ฌ ๐ โ๏ธ โฌ `0.45.0` ๐ ๐ฑ. ๐ฅ ๐ โ๏ธ `requirements.txt` ๐ ๐ ๐ช โ โฌ โฎ๏ธ: ```txt fastapi==0.45.0 ``` ๐ ๐ โ ๐ ๐ ๐ โ๏ธ โซ๏ธโ โฌ `0.45.0`. โ๏ธ ๐ ๐ช ๐ โซ๏ธ โฎ๏ธ: ```txt fastapi>=0.45.0,<0.46.0 ``` ๐ ๐ โ ๐ ๐ ๐ โ๏ธ โฌ `0.45.0` โ๏ธ ๐, โ๏ธ ๐ ๐ `0.46.0`, ๐ผ, โฌ `0.45.2` ๐ ๐ซ.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 2.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/MultipartBodyTest.kt
|Content-Type: multipart/mixed; boundary=BbC04y | |--BbC04y |Content-Disposition: file; filename="file1.txt" |Content-Type: text/plain; charset=utf-8 | |... contents of file1.txt ... |--BbC04y |Content-Disposition: file; filename="file2.gif" |Content-Transfer-Encoding: binary |Content-Type: image/gif |
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
* </p> * * @param rootDir the root directory (must not be {@literal null}) * @param baseDirectory the base directory
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.2K bytes - Viewed (0)