- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 119 for extractors (0.04 sec)
-
src/main/java/jcifs/pac/ASN1Util.java
throws PACDecodingException, IOException { return as(type, stream.readObject()); } /** * Extracts the base object from an ASN.1 tagged object and casts it to the specified type * @param <T> the target ASN.1 primitive type * @param type the target class type * @param tagged the ASN.1 tagged object
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
* This class handles the authentication, connection management, and data retrieval * from storage buckets and objects. * * <p> * The connection extracts bucket and object names from the URL and uses environment * variables for authentication and endpoint configuration. * </p> */ public class StorageURLConnection extends URLConnection {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
*/ protected CrawlingInfoService getCrawlingInfoService() { return ComponentUtil.getComponent(CrawlingInfoService.class); } /** * Extracts the canonical session ID by removing any suffix after the first hyphen. * If the session ID contains a hyphen, returns the portion before the first hyphen. * Otherwise, returns the original session ID. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
cmd/erasure-healing-common.go
// do we have enough common versions // that have enough quorum to satisfy // the etag. if count >= quorum { return etags } } return make([]string, len(partsMetadata)) } // Extracts list of times from FileInfo slice and returns, skips // slice elements which have errors. func listObjectModtimes(partsMetadata []FileInfo, errs []error) (modTimes []time.Time) { modTimes = bootModtimes(len(partsMetadata))
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
/** * Loads the list of available data store names by scanning plugin JAR files. * This method searches for 'fess_ds++.xml' configuration files within JAR files * in the data store plugin directory and extracts component class names. * * <p>The method uses secure XML parsing features to prevent XXE attacks and * other XML-based vulnerabilities. Component class names are extracted from
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
import org.w3c.dom.Node; import org.xml.sax.InputSource; import jakarta.annotation.Resource; /** * The {@code HtmlTransformer} class is responsible for transforming HTML responses * during the crawling process. It extracts data, identifies child URLs, and handles * character set encoding. * <p> * This class extends {@link AbstractTransformer} and utilizes various helper classes
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0) -
cmd/net.go
host = ipAddress } // Strip off IPv6 zone information. if i := strings.Index(host, "%"); i > -1 { host = host[:i] } return net.ParseIP(host) != nil } // extractHostPort - extracts host/port from many address formats // such as, ":9000", "localhost:9000", "http://localhost:9000/" func extractHostPort(hostAddr string) (string, string, error) { var addr, scheme string if hostAddr == "" {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jun 19 14:34:00 UTC 2024 - 9.6K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformer.java
import org.w3c.dom.Document; import org.w3c.dom.Node; import org.xml.sax.InputSource; /** * {@link XpathTransformer} is a class that transforms HTML content into XML format based on XPath expressions. * It extracts data from an HTML document by applying XPath rules defined in {@link #fieldRuleMap}. * The extracted data is then formatted into an XML structure and stored in the {@link ResultData}. * <p>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
logger.debug("Failed to process callbacked request.", e); } } return null; } /** * Parses the JWT claim and extracts attributes. * * @param jwtClaim the JWT claim string * @param attributes the attributes map to populate * @throws IOException if an I/O error occurs */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
buf.append("url:").append(getUrl(keyObj)); buf.append('\t'); buf.append("time:").append(FessFunctions.formatDate(new Date(time))); return buf; } /** * Extracts the URL string from a crawler object for logging purposes. * * @param keyObj the crawler object to extract URL from * @return the URL string or a default value if not extractable */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0)