- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 41 for toString (0.14 seconds)
-
src/main/java/org/codelibs/fess/ldap/LdapManager.java
setAttributeValue(result, fessConfig.getLdapAttrGivenName(), o -> user.setGivenName(o.toString())); setAttributeValue(result, fessConfig.getLdapAttrMail(), o -> user.setMail(o.toString())); setAttributeValue(result, fessConfig.getLdapAttrEmployeeNumber(), o -> user.setEmployeeNumber(o.toString()));
Created: 2025-12-20 09:19 - Last Modified: 2025-11-28 16:29 - 86.3K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt
.host("[::1]") .build() .toString(), ).isEqualTo("http://[::1]/") assertThat( base .newBuilder() .host("[::0001]") .build() .toString(), ).isEqualTo("http://[::1]/") assertThat( base .newBuilder() .host("::1") .build() .toString(), ).isEqualTo("http://[::1]/") assertThat(
Created: 2025-12-26 11:42 - Last Modified: 2025-08-04 07:38 - 69.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
final String execTime = data.getExecTime(); final String queryTime = Long.toString(data.getQueryTime()); final String pageSize = Integer.toString(data.getPageSize()); final String currentPageNumber = Integer.toString(data.getCurrentPageNumber()); final String allRecordCount = Long.toString(data.getAllRecordCount()); final String allRecordCountRelation = data.getAllRecordCountRelation();
Created: 2025-12-20 09:19 - Last Modified: 2025-11-28 16:29 - 55.4K bytes - Click Count (1) -
android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
Created: 2025-12-26 12:43 - Last Modified: 2025-09-11 13:51 - 96.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/MapsTest.java
hashmap.put(null, "baz"); assertEquals(hashmap.toString(), Maps.toStringImpl(hashmap)); } public void testToStringImplWithNullValues() throws Exception { Map<String, @Nullable String> hashmap = new HashMap<>(); hashmap.put("foo", "bar"); hashmap.put("baz", null); assertEquals(hashmap.toString(), Maps.toStringImpl(hashmap)); } @J2ktIncompatible
Created: 2025-12-26 12:43 - Last Modified: 2025-12-11 22:56 - 62.7K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
assertTrue(pom.getValue("build/filters[4]").toString().endsWith("child-d.properties")); assertTrue(pom.getValue("build/filters[5]").toString().endsWith("parent-c.properties")); assertTrue(pom.getValue("build/filters[6]").toString().endsWith("parent-b.properties")); assertTrue(pom.getValue("build/filters[7]").toString().endsWith("parent-d.properties"));
Created: 2025-12-28 03:35 - Last Modified: 2025-09-17 10:01 - 94.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
segBuf.setLength(0); m.appendTail(segBuf); String segment = segBuf.toString(); for (int i = 0; i < queries.length; i++) { segment = Pattern.compile(regexQueries[i], Pattern.CASE_INSENSITIVE).matcher(segment).replaceAll(hlQueries[i]); } buf.append(segment); return buf.toString(); } /** * Gets the site path for display purposes.
Created: 2025-12-20 09:19 - Last Modified: 2025-11-28 16:29 - 52.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
Created: 2025-12-20 09:19 - Last Modified: 2025-12-13 02:21 - 88.2K bytes - Click Count (0) -
okhttp/api/jvm/okhttp.api
public final fun proxySelector ()Ljava/net/ProxySelector; public final fun socketFactory ()Ljavax/net/SocketFactory; public final fun sslSocketFactory ()Ljavax/net/ssl/SSLSocketFactory; public fun toString ()Ljava/lang/String; public final fun url ()Lokhttp3/HttpUrl; } public abstract interface class okhttp3/Authenticator { public static final field Companion Lokhttp3/Authenticator$Companion;
Created: 2025-12-26 11:42 - Last Modified: 2025-11-05 18:28 - 70.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/MapsTest.java
hashmap.put(null, "baz"); assertEquals(hashmap.toString(), Maps.toStringImpl(hashmap)); } public void testToStringImplWithNullValues() throws Exception { Map<String, @Nullable String> hashmap = new HashMap<>(); hashmap.put("foo", "bar"); hashmap.put("baz", null); assertEquals(hashmap.toString(), Maps.toStringImpl(hashmap)); } @J2ktIncompatible
Created: 2025-12-26 12:43 - Last Modified: 2025-12-11 22:56 - 65K bytes - Click Count (0)