- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for multilineCr (0.06 sec)
-
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
} } companion object { private val PEM_REGEX = Regex("""-----BEGIN ([!-,.-~ ]*)-----([^-]*)-----END \1-----""") /** * Decodes a multiline string that contains both a [certificate][certificatePem] and a * [private key][privateKeyPkcs8Pem], both [PEM-encoded][rfc_7468]. A typical input string looks * like this: * * ```
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 21.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractor.java
*/ protected Pattern metaCharsetPattern = Pattern.compile("<meta.*content\\s*=\\s*['\"].*;\\s*charset=([\\w\\d\\-_]*)['\"]\\s*/?>", Pattern.MULTILINE | Pattern.CASE_INSENSITIVE); /** * Map of features for the DOM parser. */ protected Map<String, String> featureMap = new HashMap<>(); /** Map of properties for the DOM parser. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformer.java
super(); } private static final Logger logger = LogManager.getLogger(XpathTransformer.class); private static final Pattern SPACE_PATTERN = Pattern.compile("\\s+", Pattern.MULTILINE); /** * A map of field rules, where the key is the field name and the value is the XPath expression. */ protected Map<String, String> fieldRuleMap = new LinkedHashMap<>();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 13.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
public class XmlTransformer extends AbstractTransformer { private static final Logger logger = LogManager.getLogger(XmlTransformer.class); private static final Pattern SPACE_PATTERN = Pattern.compile("\\s+", Pattern.MULTILINE); /** * If true, the parser will be namespace aware. */ protected boolean namespaceAware; /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0)