- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for getAttributes (0.15 sec)
-
src/main/java/org/codelibs/fess/util/PrunedTag.java
final Node attr = node.getAttributes().getNamedItem(attrName); if (attr == null || !attrValue.equals(attr.getNodeValue())) { return false; } } if (id == null) { if (css == null) { return true; } final Node classAttr = node.getAttributes().getNamedItem("class");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 4.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
final XPathNodes list = getXPathAPI().selectNodeList(document, "//BASE"); if (list.size() > 0) { final Node node = list.get(0); final Node attrNode = node.getAttributes().getNamedItem("href"); if (attrNode != null) { String attrValue = attrNode.getNodeValue(); if (StringUtil.isNotBlank(attrValue)) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Oct 24 12:16:00 UTC 2024 - 19.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
} } @Override public void setReadOnly () throws SmbException { setAttributes(getAttributes() | ATTR_READONLY); } @Override public void setReadWrite () throws SmbException { setAttributes(getAttributes() & ~ATTR_READONLY); } /** * Returns a {@link java.net.URL} for this <code>SmbFile</code>. The
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
if (parent.getNodeName().indexOf(prefix + ":") == 0) { return parent.getNamespaceURI(); } final NamedNodeMap nnm = parent.getAttributes(); for (int i = 0; i < nnm.getLength(); i++) { final Node attr = nnm.item(i); final String aname = attr.getNodeName();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 17.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
if (logger.isDebugEnabled()) { logger.debug("img tag: {}", imgNode); } final NamedNodeMap attributes = imgNode.getAttributes(); final String thumbnailUrl = getThumbnailSrc(responseData.getUrl(), attributes); final Integer height = getAttributeAsInteger(attributes, "height");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0) -
.gitattributes
Tim Hockin <******@****.***> 1730147621 -0700
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Mon Oct 28 20:33:50 UTC 2024 - 510 bytes - Viewed (0) -
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java
PlexusConfiguration pc = md.getMojoConfiguration().getChild(0); assertEquals("${jar.finalName}", pc.getValue()); assertEquals("${project.build.finalName}", pc.getAttribute("default-value")); assertEquals("java.lang.String", pc.getAttribute("implementation")); Parameter mp = md.getParameters().get(0); assertEquals("finalName", mp.getName()); assertEquals("jarName", mp.getAlias());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/webapp/js/admin/jquery-3.7.1.min.js
e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 85.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
} } return pageSize; } @Override public Object getAttribute(final String name) { return request.getAttribute(name); } @Override public Locale getLocale() { return Locale.ROOT; } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
searchLog.setReferer(StringUtils.abbreviate(req.getHeader("referer"), 1000)); searchLog.setUserAgent(StringUtils.abbreviate(req.getHeader("user-agent"), 255)); final Object accessType = req.getAttribute(Constants.SEARCH_LOG_ACCESS_TYPE); if (Constants.SEARCH_LOG_ACCESS_TYPE_JSON.equals(accessType)) { searchLog.setAccessType(Constants.SEARCH_LOG_ACCESS_TYPE_JSON);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 22 02:07:37 UTC 2024 - 21.7K bytes - Viewed (0)