- Sort Score
- Num 10 results
- Language All
Results 201 - 210 of 402 for shastring (0.07 seconds)
-
android/guava/src/com/google/common/escape/ArrayBasedEscaperMap.java
* proportional to the highest valued character that has a replacement. For example a replacement * map containing the single character '{@literal \}u1000' will require approximately 16K of memory. * As such sharing this data structure between escaper instances is the primary goal of this class. * * @author David Beaumont * @since 15.0 */ @GwtCompatible public final class ArrayBasedEscaperMap { /**
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 28 01:26:26 GMT 2024 - 3.2K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Apr 03 11:23:19 GMT 2025 - 5.7K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/transfer/ConsoleMavenTransferListenerTest.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 5.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 6.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/TextTransformer.java
return null; } name = name.replaceAll("/+$", ""); final int idx = name.lastIndexOf('/'); if (idx >= 0) { name = name.substring(idx + 1); } try { return URLDecoder.decode(name, enc); } catch (final UnsupportedEncodingException e) { if (logger.isDebugEnabled()) {Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 6.5K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt
fun processClassFile(zipEntry: ZipEntry, builder: Trie.Builder) { val endIndex = zipEntry.name.lastIndexOf("/") if (endIndex > 0) { val packageName = zipEntry.name.substring(0, endIndex) if (shouldInclude(packageName, excludes, includes)) { builder.addWord(packageName) } } } private
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Apr 11 15:53:18 GMT 2025 - 7.1K bytes - Click Count (0) -
src/test/java/jcifs/http/NtlmSspTest.java
assertNotNull(headerValue, "WWW-Authenticate header should be set"); assertEquals("NTLM ", headerValue.substring(0, 5), "Header should start with 'NTLM '"); // Decode the returned Type 2 message and check its signature and type byte[] type2Bytes = Base64.getDecoder().decode(headerValue.substring(5)); assertEquals('N', (char) type2Bytes[0]); assertEquals('T', (char) type2Bytes[1]);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 21 04:51:33 GMT 2025 - 11.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java
reading = transliterator.transliterate(reading); final int pos = text.indexOf(term, offset); if (pos > 0) { final String tmp = text.substring(offset, pos); readingBuf.append(transliterator.transliterate(tmp)); offset = pos; } else if (pos == -1) { continue;
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 17 14:28:21 GMT 2025 - 6.7K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt
while (!source.exhausted()) { var rule: ByteString = source.readUtf8LineStrict().toRule() ?: continue if (rule.startsWith(EXCEPTION_RULE_MARKER)) { rule = rule.substring(1) // We use '\n' for end of value. totalExceptionRuleBytes += rule.size + 1 sortedExceptionRules.add(rule) } else {
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Aug 06 05:33:11 GMT 2025 - 6.1K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
@Override public void startProcessChildren(Artifact artifact) { indent += " "; } @Override public void endProcessChildren(Artifact artifact) { indent = indent.substring(2); } @Override public void includeArtifact(Artifact artifact) { logger.debug(indent + artifact + " (selected for " + artifact.getScope() + ")"); } @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.8K bytes - Click Count (0)