- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 2,020 for getA (0.05 seconds)
-
src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java
final Map<String, Object> dest = newHashMap(); BeanUtil.copyBeanToMap(src, dest); assertThat(dest.get("aaa"), is((Object) "aaa")); assertThat(dest.get("bbb"), is(nullValue())); assertThat(dest.get("ccc"), is((Object) "ccc")); assertThat(dest.get("ddd"), is(nullValue())); } /** * @throws Exception */ @Test
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Fri Jun 20 13:40:57 GMT 2025 - 34.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java
Yellow(Red<B> red) { red.super(); } Class<?> getClassB() { return new TypeToken<B>(getClass()) {}.getRawType(); } Red<A> getA() { return getSelfA(); } Red<B> getB() { return getSelfB(); } } Class<?> getClassDirect() { return new TypeToken<A>(getClass()) {}.getRawType(); } }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 19.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java
Yellow(Red<B> red) { red.super(); } Class<?> getClassB() { return new TypeToken<B>(getClass()) {}.getRawType(); } Red<A> getA() { return getSelfA(); } Red<B> getB() { return getSelfB(); } } Class<?> getClassDirect() { return new TypeToken<A>(getClass()) {}.getRawType(); } }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 19.6K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Objects.java
* single Object array, do not get any special handling; their hash codes are based on identity * and not contents. * * <p>This is useful for implementing {@link Object#hashCode()}. For example, in an object that * has three properties, {@code x}, {@code y}, and {@code z}, one could write: * * {@snippet : * public int hashCode() { * return Objects.hashCode(getX(), getY(), getZ()); * } * } *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jul 28 22:51:26 GMT 2025 - 3.1K bytes - Click Count (0) -
guava/src/com/google/common/base/Objects.java
* single Object array, do not get any special handling; their hash codes are based on identity * and not contents. * * <p>This is useful for implementing {@link Object#hashCode()}. For example, in an object that * has three properties, {@code x}, {@code y}, and {@code z}, one could write: * * {@snippet : * public int hashCode() { * return Objects.hashCode(getX(), getY(), getZ()); * } * } *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jul 28 22:51:26 GMT 2025 - 3.1K bytes - Click Count (0) -
docs/features/calls.md
# Calls The HTTP client’s job is to accept your request and produce its response. This is simple in theory but it gets tricky in practice. ## [Requests](https://square.github.io/okhttp/5.x/okhttp/okhttp3/-request/) Each HTTP request contains a URL, a method (like `GET` or `POST`), and a list of headers. Requests may also contain a body: a data stream of a specific content type. ## [Responses](https://square.github.io/okhttp/5.x/okhttp/okhttp3/-response/)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:01:42 GMT 2026 - 3.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
/** * Gets the request timeout in milliseconds. * * @return the timeout in milliseconds */ protected abstract int getTimeout(); /** * Gets the model name. * * @return the model name */ protected abstract String getModel(); /** * Gets the availability check interval in seconds. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 14.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} /** * Gets the design JSP file name for a given key. * * @param fileName The key for the JSP file. * @return The file name. */ public String getDesignJspFileName(final String fileName) { return designJspFileNameMap.get(fileName); } /** * Gets an array of design JSP file names. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
return nameId; } /** * Gets the SAML user. * @return The SAML user. */ public SamlUser getUser() { return new SamlUser(nameId, sessionIndex, nameIdFormat, nameidNameQualifier, nameidSPNameQualifier, getDefaultGroupsAsArray(), getDefaultRolesAsArray()); } /** * Gets the default groups as an array. * @return The default groups as an array.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.4K bytes - Click Count (0)