- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 123 for fois (0.04 sec)
-
docs/pt/docs/python-types.md
Isso não é o mesmo que declarar valores padrão como seria com: ```Python first_name="john", last_name="doe" ``` É uma coisa diferente. Estamos usando dois pontos (`:`), não é igual a (`=`). E adicionar type hints normalmente não muda o que acontece do que aconteceria sem eles. Mas agora, imagine que você está novamente no meio da criação dessa função, mas com type hints.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 16.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/ResponseDataUtilTest.java
assertNotNull(tempFile); assertTrue(tempFile.exists()); // Read and verify content try (FileInputStream fis = new FileInputStream(tempFile)) { byte[] buffer = new byte[1024]; int bytesRead = fis.read(buffer); String content = new String(buffer, 0, bytesRead); assertEquals("Test response body", content); } finally {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 7.9K bytes - Viewed (0) -
docs/pt/docs/help-fastapi.md
Você gosta do **FastAPI**? Você gostaria de ajudar o FastAPI, outras pessoas usuárias e o autor? Ou você gostaria de obter ajuda com o **FastAPI**? Há maneiras muito simples de ajudar (várias envolvem apenas um ou dois cliques). E também há várias formas de obter ajuda. ## Assine a newsletter { #subscribe-to-the-newsletter }
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Nov 12 16:23:57 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
FileOutputStream fos = null; try { newFile = ComponentUtil.getSystemHelper().createTempFile(MAPPING, ".txt"); fos = new FileOutputStream(newFile); writer = new BufferedWriter(new OutputStreamWriter(fos, Constants.UTF_8)); fos = null; // Successfully wrapped, no need to close explicitlyRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 15.3K bytes - Viewed (0) -
cmd/xl-storage-format-utils_test.go
} fivs, err := getFileInfoVersions(buf, basefi.Volume, basefi.Name, false) if err != nil { t.Fatalf("getFileInfoVersions failed: %v", err) } chkNumVersions := func(fis []FileInfo) bool { for i := 0; i < len(fis)-1; i++ { if fis[i].NumVersions != fis[i+1].NumVersions { return false } } return true } if !chkNumVersions(fivs.Versions) { t.Fatalf("Expected all versions to have the same NumVersions")
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
FileOutputStream fos = null; try { newFile = ComponentUtil.getSystemHelper().createTempFile(PROTWORDS, ".txt"); fos = new FileOutputStream(newFile); writer = new BufferedWriter(new OutputStreamWriter(fos, Constants.UTF_8)); fos = null; // Successfully wrapped, no need to close explicitlyRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
FileOutputStream fos = null; try { newFile = ComponentUtil.getSystemHelper().createTempFile(STOPWORDS, ".txt"); fos = new FileOutputStream(newFile); writer = new BufferedWriter(new OutputStreamWriter(fos, Constants.UTF_8)); fos = null; // Successfully wrapped, no need to close explicitlyRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 13K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/en-ie/stopwords.txt
a ach ag agus an aon ar arna as b' ba beirt bhúr caoga ceathair ceathrar chomh chtó chuig chun cois céad cúig cúigear d' daichead dar de deich deichniúr den dhá do don dtí dá dár dó faoi faoin faoina faoinár fara fiche gach gan go gur
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 19 06:31:02 UTC 2018 - 685 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
FileOutputStream fos = null; try { newFile = ComponentUtil.getSystemHelper().createTempFile(KUROMOJI, ".txt"); fos = new FileOutputStream(newFile); writer = new BufferedWriter(new OutputStreamWriter(fos, Constants.UTF_8)); fos = null; // Successfully wrapped, no need to close explicitlyRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
FileOutputStream fos = null; try { newFile = ComponentUtil.getSystemHelper().createTempFile(STEMMER_OVERRIDE, ".txt"); fos = new FileOutputStream(newFile); writer = new BufferedWriter(new OutputStreamWriter(fos, Constants.UTF_8)); fos = null; // Successfully wrapped, no need to close explicitlyRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 14.2K bytes - Viewed (0)