- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 313 for xdoc (0.04 sec)
-
src/main/webapp/WEB-INF/view/searchResults.jsp
<ol class="list-unstyled col-md-8"> <c:forEach var="doc" varStatus="s" items="${documentItems}"> <li id="result${s.index}"> <h3 class="title text-truncate"> <a class="link" href="${doc.url_link}" data-uri="${doc.url_link}" data-id="${doc.doc_id}" data-order="${s.index}">${doc.content_title}</a> </h3> <div class="body"> <c:if test="${thumbnailSupport && !empty doc.thumbnail}"> <div class="mr-3">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 09 04:29:42 UTC 2022 - 9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/UserGuideTransformTask.groovy
} private def transformImpl(Document doc) { use(BuildableDOMCategory) { addVersionInfo(doc) transformApiLinks(doc) transformWebsiteLinks(doc) fixProgramListings(doc) } } def addVersionInfo(Document doc) { Element releaseInfo = doc.createElement('releaseinfo') releaseInfo.appendChild(doc.createTextNode(version.get().toString()))
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 5.6K bytes - Viewed (0) -
fastapi/security/api_key.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Apr 23 22:29:18 UTC 2024 - 9.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SearchListTests.java
final Map<String, Object> requestBody = new HashMap<>(); final Map<String, Object> doc = new HashMap<>(); final String keyProp = NAME_PREFIX + id; doc.put(KEY_PROPERTY, keyProp); doc.put("url", "http://example.com/" + id); doc.put("boost", id); doc.put("role", "Rguest"); requestBody.put("doc", doc); return requestBody; } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.5K bytes - Viewed (0) -
fastapi/datastructures.py
""" file: Annotated[ BinaryIO, Doc("The standard Python file object (non-async)."), ] filename: Annotated[Optional[str], Doc("The original file name.")] size: Annotated[Optional[int], Doc("The size of the file in bytes.")] headers: Annotated[Headers, Doc("The headers of the request.")] content_type: Annotated[ Optional[str], Doc("The content type of the request, from the headers.") ]
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Apr 02 02:48:51 UTC 2024 - 5.6K bytes - Viewed (0) -
fastapi/routing.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 09:44:57 UTC 2024 - 172.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
} public void test_createScript() { Map<String, Object> doc = new HashMap<>(); assertEquals("aaa", languageHelper.createScript(doc, "aaa").getIdOrCode()); doc.put("lang", "ja"); assertEquals("aaa;ctx._source.title_ja=ctx._source.title;ctx._source.content_ja=ctx._source.content", languageHelper.createScript(doc, "aaa").getIdOrCode()); } public void test_getReindexScriptSource() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.7K bytes - Viewed (0) -
fastapi/security/oauth2.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 23 18:30:18 UTC 2024 - 21.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
} protected XPathNodes getNodeList(final Document doc, final String xpath) throws XPathExpressionException { final XPath xPathApi = getXPathAPI().createXPath(f -> {}); xPathApi.setNamespaceContext(new DefaultNamespaceContext(doc.getNodeType() == Node.DOCUMENT_NODE ? doc.getDocumentElement() : doc)); return xPathApi.evaluateExpression(xpath, doc, XPathNodes.class); } protected XPathAPI getXPathAPI() {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 17.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java
final PDDocument doc = document; final Set<Exception> exceptionSet = new HashSet<>(); final Thread task = new Thread(() -> { try { stripper.writeText(doc, writer); extractEmbeddedDocuments(doc, writer); extractAnnotations(doc, writer); } catch (final Exception e) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 9.8K bytes - Viewed (0)