- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 730 for charsA (0.05 sec)
-
src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java
assertEquals("abc", permissionHelper.encode("abc")); assertEquals("abc", permissionHelper.decode("abc")); assertEquals("special@chars", permissionHelper.encode("special@chars")); assertEquals("special@chars", permissionHelper.decode("special@chars")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.7K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java
Ordering<Integer> ord, Charset charset, TimeUnit unit, Class<?> cls, Joiner joiner, Pattern pattern, UnsignedInteger ui, UnsignedLong ul, StringBuilder sb, Predicate<?> pred, Function<?, ?> func, Object obj) { delegate.foo( s, r, n, it, b, eq, e, in, c, ord, charset, unit, cls, joiner, pattern, ui, ul, sb, pred,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtlmChallengeTest.java
assertTrue(result.startsWith("NtlmChallenge[challenge=0x")); assertTrue(result.endsWith(",dc=SERVER123]")); // Hexdump.toHexString with size = length * 2 produces 8 uppercase hex chars // The hex should be "010203FF" assertTrue(result.contains("010203FF")); } @Test @DisplayName("toString with empty challenge array")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralRequestBufferTest.java
} @Test @DisplayName("Should calculate size for Unicode characters") void testSizeWithUnicodeCharacters() { // Unicode characters still count as single chars in Java String path = "\\\\server\\共享\\路径"; buffer = new DfsReferralRequestBuffer(path, 3); int expectedSize = 4 + 2 * path.length();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Credentials.kt
*/ package okhttp3 import java.nio.charset.Charset import kotlin.text.Charsets.ISO_8859_1 import okio.ByteString.Companion.encode /** Factory for HTTP authorization credentials. */ object Credentials { /** Returns an auth credential for the Basic scheme. */ @JvmStatic @JvmOverloads fun basic( username: String, password: String, charset: Charset = ISO_8859_1, ): String {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 1.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java
assertNotNull(result); // Hexdump uses uppercase letters // Note: completionFilter is displayed with 4 hex chars, not 8 assertTrue(result.contains("fid=0xFFFF")); assertTrue(result.contains("filter=0xFFFF")); // Only 4 hex chars are shown assertTrue(result.contains("watchTree=true")); } @Test @DisplayName("Test toString method with zero values")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Transport.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.api.services; import java.io.Closeable; import java.net.URI; import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; import java.nio.file.Path; import java.util.Optional; import org.apache.maven.api.RemoteRepository; import org.apache.maven.api.annotations.Consumer;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/util/Strings.java
* * @author mbechler */ public final class Strings { private static final Logger log = LoggerFactory.getLogger(Strings.class); private static final Charset UNI_ENCODING = Charset.forName("UTF-16LE"); private static final Charset ASCII_ENCODING = Charset.forName("US-ASCII"); private static final boolean MASK_SECRET_VALUE = System.getProperty("jcifs.maskSecretValue", "true") == "true";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableListMultimap.java
* Stream.of("banana", "apple", "carrot", "asparagus", "cherry") * .collect( * flatteningToImmutableListMultimap( * str -> str.charAt(0), * str -> str.substring(1).chars().mapToObj(c -> (char) c)); * * // is equivalent to * * static final ImmutableListMultimap<Character, Character> FIRST_LETTER_MULTIMAP =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.8K bytes - Viewed (0) -
android/guava/src/com/google/common/io/ByteSource.java
} /** * A char source that reads bytes from this source and decodes them as characters using a charset. */ class AsCharSource extends CharSource { final Charset charset; AsCharSource(Charset charset) { this.charset = checkNotNull(charset); } @Override public ByteSource asByteSource(Charset charset) { if (charset.equals(this.charset)) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 20 20:55:20 UTC 2025 - 25.7K bytes - Viewed (0)