- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for getDefaultValue (0.08 seconds)
-
guava-tests/test/com/google/common/collect/ForwardingMapTest.java
if (rawType.equals(Predicate.class)) { return (Predicate<Object>) v -> (boolean) getDefaultValue(TypeToken.of(boolean.class)); } else if (rawType.equals(IntFunction.class)) { try { Method method = IntFunction.class.getMethod("apply", int.class); return (IntFunction<Object>) v -> getDefaultValue(type.method(method).getReturnType()); } catch (NoSuchMethodException e) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 12.4K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jul 14 14:44:08 GMT 2025 - 24.9K bytes - Click Count (0) -
guava-testlib/src/com/google/common/testing/NullPointerTester.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jul 14 14:44:08 GMT 2025 - 25.4K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 12K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java
.filter(p -> p.getDefaultValue() != null || p.getExpression() != null) .map(p -> XmlNode.newInstance( p.getName(), p.getExpression(), p.getDefaultValue() != null ? Collections.singletonMap("default-value", p.getDefaultValue()) : null,
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 11.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
return defaultValue != null ? defaultValue.toString() : StringUtil.EMPTY; } catch (final Exception e) { return StringUtil.EMPTY; } } private String getDefaultMaxKey() { try { final Method method = CustomSize.class.getMethod("maxKey"); final Object defaultValue = method.getDefaultValue();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/UriTypeTest.java
try { final Method method = UriType.class.getMethod("protocolType"); assertNotNull(method, "protocolType method should exist"); assertNull(method.getDefaultValue(), "protocolType should not have default value"); } catch (final NoSuchMethodException e) { fail("protocolType method should exist"); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.3K bytes - Click Count (0)