- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 365 for _doc (0.17 seconds)
-
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java
SearchResultBuilder builder = SearchResult.create(); for (int i = 0; i < 10; i++) { Map<String, Object> doc = new HashMap<>(); doc.put(ID_FIELD, null); // Explicitly null doc.put("title", "Document " + i); builder.addDocument(doc); } builder.allRecordCount(10); builder.allRecordCountRelation(Relation.EQUAL_TO.toString());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 14.3K bytes - Click Count (0) -
fastapi/security/oauth2.py
*, flows: Annotated[ OAuthFlowsModel | dict[str, dict[str, Any]], Doc( """ The dictionary of OAuth2 flows. """ ), ] = OAuthFlowsModel(), scheme_name: Annotated[ str | None, Doc( """ Security scheme name.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Mar 24 16:32:10 GMT 2026 - 23.6K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/test_code_blocks/test_code_blocks_number_mismatch.py
cli, ["fix-pages", "docs/lang/docs/doc.md"], ) assert result.exit_code == 1, result.output fixed_content = (root_dir / "docs" / "lang" / "docs" / "doc.md").read_text("utf-8") expected_content = Path(f"{data_path}/translated_doc_number_gt.md").read_text( "utf-8" ) assert fixed_content == expected_content # Translated doc remains unchangedCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Jan 10 22:43:44 GMT 2026 - 1.9K bytes - Click Count (0) -
api/maven-api-plugin/pom.xml
<artifactId>modello-maven-plugin</artifactId> <executions> <execution> <id>modello-plugin</id> <goals> <goal>velocity</goal> <goal>xdoc</goal> <goal>xsd</goal> </goals> <phase>generate-sources</phase> <configuration> <velocityBasedir>${project.basedir}/../../src/mdo</velocityBasedir>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Jun 29 22:37:39 GMT 2025 - 3.8K bytes - Click Count (0) -
src/archive/zip/testdata/readme.zip
README This is the source code repository for the Go programming language. For documentation about how to install and use Go, visit http://golang.org/ or load doc/install.html in your web browser. After installing Go, you can view a nicely formatted doc/install.html by running godoc --http=:6060 and then visiting http://localhost:6060/doc/install.html. Unless otherwise noted, the Go source files are distributed under the BSD-style license found in the LICENSE file. -- Binary Distribution Notes If...
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Sat Jul 11 14:36:33 GMT 2015 - 1.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/IndexExportJobTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 09:08:38 GMT 2026 - 66.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
List<Map<String, Object>> documentList = new ArrayList<>(); for (int i = 0; i < 5; i++) { Map<String, Object> doc = new HashMap<>(); doc.put("title", "Doc" + i); documentList.add(doc); } QueryResponseList qrList = new QueryResponseList(documentList, 0, 10, 0); List<Map<String, Object>> subList = qrList.subList(1, 4);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 40.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/ChatMessageTest.java
@Test public void test_chatSourceFromMap() { final Map<String, Object> doc = new HashMap<>(); doc.put("title", "Test Title"); doc.put("url", "https://example.com"); doc.put("doc_id", "doc-123"); doc.put("content_description", "Test snippet"); final ChatSource source = new ChatSource(5, doc); assertEquals(5, source.getIndex());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 25.8K bytes - Click Count (0) -
docs/sts/web-identity.go
} func main() { flag.Parse() if clientID == "" { flag.PrintDefaults() return } ddoc, err := parseDiscoveryDoc(configEndpoint) if err != nil { log.Println(fmt.Errorf("Failed to parse OIDC discovery document %s", err)) fmt.Println(err) return } scopes := ddoc.ScopesSupported if clientScopes != "" { scopes = strings.Split(clientScopes, ",") }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri May 19 09:13:33 GMT 2023 - 7.8K bytes - Click Count (0)