- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 550 for TXT (0.01 sec)
-
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java
*/ public class StemmerOverrideCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(StemmerOverrideCreator.class); /** * Constructs a new creator for stemmer override dictionaries. * It sets the file pattern to match files starting with "stemmer_override" * and ending with ".txt". */ public StemmerOverrideCreator() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/context/BaseContextTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryPathInformationTest.java
*/ class Trans2QueryPathInformationTest { /** * Tests the constructor of Trans2QueryPathInformation. */ @Test void testConstructor() { // Given String filename = "testFile.txt"; int informationLevel = 0x0100; // SMB_QUERY_FILE_BASIC_INFO // When Trans2QueryPathInformation trans = new Trans2QueryPathInformation(filename, informationLevel); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0) -
.github/workflows/build-docs.yml
cache-dependency-glob: | requirements**.txt pyproject.toml - name: Install docs extras run: uv pip install -r requirements-docs.txt - name: Install Material for MkDocs Insiders if: ( github.event_name != 'pull_request' || github.secret_source == 'Actions' ) run: uv pip install -r requirements-docs-insiders.txt env:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Aug 15 21:44:06 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/FileNotifyInformationTest.java
assertEquals(actionValue, mockFileNotifyInfo.getAction()); } @ParameterizedTest @CsvSource({ "file.txt", "document.doc", "image.png", "folder/subfolder/file.txt", "C:\\Windows\\System32\\config.sys", "/usr/local/bin/app", "file with spaces.txt", "''" // empty string }) @DisplayName("Test getFileName with various file names")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Test.java
assertEquals("\\test\\dir\\*.txt", writtenPath); } @ParameterizedTest @DisplayName("Test writeParametersWireFormat with various wildcards") @CsvSource({ "'\\path', '*.txt', '\\path\\*.txt'", "'\\path\\', '*.doc', '\\path\\*.doc'", "'\\', '*.*', '\\*.*'", "'\\test', 'file?.txt', '\\test\\file?.txt'" })
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
docs/ru/docs/deployment/docker.md
COPY ./pyproject.toml ./poetry.lock* /tmp/ # (5) RUN poetry export -f requirements.txt --output requirements.txt --without-hashes # (6) FROM python:3.9 # (7) WORKDIR /code # (8) COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt # (9) RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # (10) COPY ./app /code/app # (11)
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Dec 12 22:48:28 UTC 2024 - 57.6K bytes - Viewed (0) -
docs/de/docs/deployment/versions.md
Angenommen, Sie verwenden in Ihrer Anwendung die Version `0.45.0`. Wenn Sie eine `requirements.txt`-Datei verwenden, können Sie die Version wie folgt angeben: ```txt fastapi==0.45.0 ``` Das würde bedeuten, dass Sie genau die Version `0.45.0` verwenden. Oder Sie können sie auch anpinnen mit: ```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 - 3.9K bytes - Viewed (0) -
src/test/java/jcifs/tests/persistent/HandleInfoTest.java
} testLeaseKey = new Smb2LeaseKey(); } @Test public void testHandleInfoCreation() { HandleInfo info = new HandleInfo("/test/file.txt", testGuid, testFileId, HandleType.DURABLE_V2, 120000, testLeaseKey); assertEquals("/test/file.txt", info.getPath()); assertEquals(testGuid, info.getCreateGuid()); assertArrayEquals(testFileId, info.getFileId());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 4.6K bytes - Viewed (0) -
docs/pt/docs/deployment/versions.md
Por exemplo, supondo que você está usando a versão `0.45.0` em sua aplicação. Caso você utilize o arquivo `requirements.txt`, você poderia especificar a versão com: ```txt fastapi==0.45.0 ``` Isso significa que você conseguiria utilizar a versão exata `0.45.0`. Ou, você poderia fixá-la com: ```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 - 3.8K bytes - Viewed (0)