- Sort Score
- Num 10 results
- Language All
Results 1191 - 1200 of 5,583 for sering (0.04 seconds)
-
compat/maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java
} @Override public Artifact createArtifact(String groupId, String artifactId, String version, String packaging) { return createArtifact(groupId, artifactId, version, null, packaging); } @Override public Artifact createArtifact(String groupId, String artifactId, String version, String scope, String type) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 12K bytes - Click Count (0) -
src/test/java/org/codelibs/core/collection/ArrayUtilTest.java
assertArrayEquals(new String[] { "a", "b" }, ArrayUtil.asArray("a", "b")); assertArrayEquals(new Integer[] { 1, 2 }, ArrayUtil.asArray(1, 2)); } /** * @throws Exception */ @Test public void testAddAll() throws Exception { final String[] array = new String[] { "111" }; final String[] newArray = ArrayUtil.add(array, "222");
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Fri Jun 20 13:40:57 GMT 2025 - 10.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
*/ public String getInput() { return input; } /** * Gets the input value or empty string if null. * @return the input value or empty string */ public String getInputValue() { if (input == null) { return StringUtil.EMPTY; } return input; } /** * Checks if this item has been updated.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 3.4K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/TestArtifactHandler.java
@Deprecated class TestArtifactHandler implements ArtifactHandler { private String type; private String extension; TestArtifactHandler(String type) { this(type, type); } TestArtifactHandler(String type, String extension) { this.type = type; this.extension = extension; } @Override public String getClassifier() { return null; } @OverrideCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 1.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfigImpl.java
public String get(final String propertyKey) { final String plainValue = getFromCache(propertyKey); final String filteredValue = propertyFilter.filter(propertyKey, plainValue); verifyPropertyValue(propertyKey, filteredValue); // null checked return filterPropertyAsDefault(filteredValue); // not null here } private String getFromCache(final String propertyKey) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 09:31:58 GMT 2026 - 2.7K bytes - Click Count (0) -
src/main/java/org/codelibs/core/text/DecimalFormatUtil.java
} /** * Normalizes the string representation of a number. * * @param s * A string representing a number * @return The normalized string * @see #normalize(String, Locale) */ public static String normalize(final String s) { return normalize(s, LocaleUtil.getDefault()); } /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 2.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java
@Override public Map<Range<Integer>, String> create(Object... elements) { RangeMap<Integer, String> rangeMap = TreeRangeMap.create(); for (Object o : elements) { @SuppressWarnings("unchecked") Entry<Range<Integer>, String> entry = (Entry<Range<Integer>, String>) o; rangeMap.put(entry.getKey(), entry.getValue());Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Oct 28 16:03:47 GMT 2025 - 30.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java
public void test_encode_withLongValues() { String longUser = "user" + "x".repeat(1000); String longGroup = "group" + "y".repeat(1000); String longRole = "role" + "z".repeat(1000); String encodedUser = permissionHelper.encode("{user}" + longUser); String encodedGroup = permissionHelper.encode("{group}" + longGroup); String encodedRole = permissionHelper.encode("{role}" + longRole);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringSearchModelInterpolator.java
final RecursionInterceptor recursionInterceptor = createRecursionInterceptor(); return new InnerInterpolator() { @Override public String interpolate(String value) { if (value != null && value.contains("${")) { String c = cache.get(value); if (c == null) { try {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 15.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/hash/MessageDigestHashFunctionTest.java
// - The algorithm name is not case-sensitive. @SuppressWarnings("deprecation") // We still need to test our deprecated APIs. private static final ImmutableMap<String, HashFunction> ALGORITHMS = new ImmutableMap.Builder<String, HashFunction>() .put("MD5", md5()) .put("SHA", sha1()) // Not the official name, but still works .put("SHA1", sha1()) // Not the official name, but still worksCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 4.9K bytes - Click Count (0)