- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 5,446 for String (0.04 sec)
-
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: 2025-05-30 12:43 - Last Modified: 2025-02-19 21:24 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/util/Strings.java
} /** * * @param str * @return the string as bytes (UTF16-LE) */ public static byte[] getUNIBytes ( String str ) { return getBytes(str, UNI_ENCODING); } /** * * @param str * @return the string as bytes (ASCII) */ public static byte[] getASCIIBytes ( String str ) { return getBytes(str, ASCII_ENCODING); }
Registered: 2025-05-25 00:10 - Last Modified: 2023-03-13 12:00 - 4.9K bytes - Viewed (0) -
android-test/src/main/res/values/strings.xml
Registered: 2025-05-30 11:42 - Last Modified: 2019-07-16 22:15 - 73 bytes - Viewed (0) -
android-test-app/src/main/res/values/strings.xml
Registered: 2025-05-30 11:42 - Last Modified: 2023-12-23 14:46 - 73 bytes - Viewed (0) -
regression-test/src/main/res/values/strings.xml
Registered: 2025-05-30 11:42 - Last Modified: 2020-11-13 07:09 - 76 bytes - Viewed (0) -
src/test/java/jcifs/tests/Strings.java
*/ package jcifs.tests; /** * @author mbechler * */ public class Strings { /** * from http://www.cl.cam.ac.uk/~mgk25/ucs/examples/quickbrown.txt */ static final String[] UNICODE_STRINGS = new String[] { "da - jordbær fløde på", // x "de - Zwölf Boxkämpfer", // x "el - Γαζέες καὶ μυρτιὲς", // x
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 2K bytes - Viewed (0) -
internal/logger/logger.go
var defaultgoPathList []string var defaultgoRootList []string pathSeparator := ":" // Add all possible GOPATH paths into trimStrings // Split GOPATH depending on the OS type if runtime.GOOS == "windows" { pathSeparator = ";" } goPathList = strings.Split(goPath, pathSeparator) goRootList = strings.Split(goRoot, pathSeparator) defaultgoPathList = strings.Split(build.Default.GOPATH, pathSeparator)
Registered: 2025-05-25 19:28 - Last Modified: 2025-05-16 14:28 - 12.5K bytes - Viewed (0) -
internal/s3select/sql/utils.go
package sql import ( "fmt" "strings" ) // String functions // String - returns the JSONPath representation func (e *JSONPath) String() string { if len(e.pathString) == 0 { parts := make([]string, len(e.PathExpr)+1) parts[0] = e.BaseKey.String() for i, pe := range e.PathExpr { parts[i+1] = pe.String() } e.pathString = strings.Join(parts, "") } return e.pathString }
Registered: 2025-05-25 19:28 - Last Modified: 2021-11-10 16:12 - 3.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java
String[] strings = NUMBER_NAMES.toArray(new String[0]); ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); sort(strings); for (int i = 0; i < strings.length; i++) { assertThat(set.tailSet(strings[i], true)) .containsExactlyElementsIn(sortedNumberNames(i, strings.length)) .inOrder(); } } public void testTailSetExclusive() {
Registered: 2025-05-30 12:43 - Last Modified: 2025-01-25 16:19 - 46.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Interpolator.java
*/ void interpolate( @Nonnull Map<String, String> map, @Nullable UnaryOperator<String> callback, @Nullable BinaryOperator<String> postprocessor, boolean defaultsToEmpty); /** * Interpolates a single string value using the provided callback function.
Registered: 2025-05-24 08:56 - Last Modified: 2025-01-13 16:14 - 6.9K bytes - Viewed (0)