- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 167 for ValueOf (0.04 seconds)
-
guava-tests/test/com/google/common/collect/ListsTest.java
private static class SomeFunction implements Function<Number, String>, Serializable { @Override public String apply(Number n) { return String.valueOf(n); } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } @J2ktIncompatible @GwtIncompatible // suite @AndroidIncompatible // test-suite builders
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 35.4K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/DefaultMavenTest.java
Class<?> wsrClass = wsrClassCatcher.wsrClassRef.get(); assertNotNull(wsrClass, "wsr cannot be null"); assertTrue(MavenWorkspaceReader.class.isAssignableFrom(wsrClass), String.valueOf(wsrClass)); } @Test void testThatErrorDuringProjectDependencyGraphCreationAreStored() throws Exception { MavenExecutionRequest request =Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 4.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
.flatMap(properties -> properties.entrySet().stream()) .filter(e -> e.getValue() != null) .collect(Collectors.toMap( e -> String.valueOf(e.getKey()), e -> String.valueOf(e.getValue()), (k1, k2) -> k2)); } private String getUserAgent() { String version = runtimeInformation.getMavenVersion(); version = version.isEmpty() ? version : "/" + version;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jul 17 05:56:35 GMT 2025 - 25.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DebugConfigurationListener.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.8K bytes - Click Count (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
} public void setActive(boolean active) { setActiveString(String.valueOf(active)); } public int getPort() { return (getPortString() != null) ? Integer.parseInt(getPortString()) : 8080; } public void setPort(int port) { setPortString(String.valueOf(port)); } </code> </codeSegment> <codeSegment>Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun May 18 09:15:56 GMT 2025 - 33.8K bytes - Click Count (0) -
guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.java
static String lenientFormat(@Nullable String template, @Nullable Object @Nullable ... args) { return Strings.lenientFormat(template, args); } static String stringValueOf(@Nullable Object o) { return String.valueOf(o); } private Platform() {}
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Feb 03 21:52:39 GMT 2025 - 2.2K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Ascii.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 21.7K bytes - Click Count (0) -
cmd/http-tracer.go
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Sep 24 17:13:00 GMT 2024 - 6K bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/base/AsciiBenchmark.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 4.8K bytes - Click Count (0) -
guava/src/com/google/common/math/BigDecimalMath.java
* infinite {@code double} values are considered infinitely far away. For example, 2^2000 is not * representable as a double, but {@code roundToDouble(BigDecimal.valueOf(2).pow(2000), HALF_UP)} * will return {@code Double.MAX_VALUE}, not {@code Double.POSITIVE_INFINITY}. * * <p>For the case of {@link RoundingMode#HALF_EVEN}, this implementation uses the IEEE 754Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Jul 17 15:26:41 GMT 2025 - 3K bytes - Click Count (0)