- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 5,086 for Strings (0.16 sec)
-
src/main/java/jcifs/util/Strings.java
return getBytes(str, UNI_ENCODING); } /** * Encodes a string into ASCII bytes. * * @param str the string to encode * @return the string as bytes (ASCII) */ public static byte[] getASCIIBytes(final String str) { return getBytes(str, ASCII_ENCODING); } /** * Encodes a string into bytes using the OEM encoding from the configuration. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Strings.java
public static String nullToEmpty(@Nullable String string) { return Platform.nullToEmpty(string); } /** * Returns the given string if it is nonempty; {@code null} otherwise. * * @param string the string to test and possibly return * @return {@code string} itself if it is nonempty; {@code null} if it is empty or null */ public static @Nullable String emptyToNull(@Nullable String string) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 12.2K bytes - Viewed (0) -
android-test/src/main/res/values/strings.xml
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 16 22:15:20 UTC 2019 - 73 bytes - Viewed (0) -
android-test-app/src/main/res/values/strings.xml
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Dec 23 14:46:51 UTC 2023 - 73 bytes - Viewed (0) -
regression-test/src/main/res/values/strings.xml
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Nov 13 07:09:56 UTC 2020 - 76 bytes - Viewed (0) -
src/test/resources/org/codelibs/core/message/strings.properties
Shinsuke Sugaya <******@****.***> 1419757266 +0900
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Dec 28 09:01:06 UTC 2014 - 10 bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/StringsTest.java
assertSame("xx", Strings.padStart("xx", 0, '-')); assertSame("xx", Strings.padStart("xx", 2, '-')); } public void testPadStart_somePadding() { assertEquals("-", Strings.padStart("", 1, '-')); assertEquals("--", Strings.padStart("", 2, '-')); assertEquals("-x", Strings.padStart("x", 2, '-')); assertEquals("--x", Strings.padStart("x", 3, '-'));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/util/StringsTest.java
import jcifs.RuntimeCIFSException; /** * Comprehensive test suite for Strings utility class. * Tests all string encoding/decoding operations and utility methods. */ @DisplayName("Strings Utility Tests") class StringsTest { private static final String TEST_STRING = "Hello World"; private static final String UNICODE_STRING = "Hello δΈη π"; private static final String ASCII_STRING = "ASCII Test"; @Nested
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
schema/utils.go
package schema import ( "context" "fmt" "reflect" "regexp" "strings" "gorm.io/gorm/clause" "gorm.io/gorm/utils" ) var embeddedCacheKey = "embedded_cache_store" func ParseTagSetting(str string, sep string) map[string]string { settings := map[string]string{} names := strings.Split(str, sep) for i := 0; i < len(names); i++ { j := i if len(names[j]) > 0 { for {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Feb 13 06:16:26 UTC 2025 - 5.5K bytes - Viewed (0) -
cmd/http-tracer.go
// getOpName sanitizes the operation name for mc func getOpName(name string) (op string) { op = strings.TrimPrefix(name, "github.com/minio/minio/cmd.") op = strings.TrimSuffix(op, "Handler-fm") op = strings.Replace(op, "objectAPIHandlers", "s3", 1) op = strings.Replace(op, "adminAPIHandlers", "admin", 1) op = strings.Replace(op, "(*storageRESTServer)", "storageR", 1) op = strings.Replace(op, "(*peerRESTServer)", "peer", 1)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 24 17:13:00 UTC 2024 - 6K bytes - Viewed (0)