- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 812 for getB (0.3 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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) -
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/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/entity/ChatMessage.java
String titleValue = toStringOrNull(doc.get("title")); if (titleValue == null || titleValue.isEmpty()) { titleValue = toStringOrNull(doc.get("content_title")); } this.title = titleValue; this.url = toStringOrNull(doc.get("url")); this.docId = toStringOrNull(doc.get("doc_id")); this.snippet = toStringOrNull(doc.get("content_description"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt
assertThat(response.body.string()).isEqualTo("response body") val get1 = server.takeRequest() assertThat(get1.requestLine).isEqualTo("GET http://android.com/foo HTTP/1.1") assertThat(get1.headers["Proxy-Authorization"]).isNull() val get2 = server.takeRequest() assertThat(get2.requestLine).isEqualTo("GET http://android.com/foo HTTP/1.1") assertThat(get2.headers["Proxy-Authorization"]).isEqualTo("password") }
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:02:18 GMT 2026 - 146.5K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java
* - A setter `setX` of an upgraded property is removed * - A boolean `isX` of an upgraded property is removed * - A new getter `getX` is added, where the old getter is a boolean getter `isX` of an upgraded property * - A return type is changed for a getter `getX` of an upgraded property * * We don't automatically accept changes when the @since annotation is missing, because we want to keep this information on the API.Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 24 14:15:15 GMT 2025 - 9.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper(); return crawlingConfigHelper.get(responseData.getSessionId()); } /** * Gets the XPath expression for extracting language information. * * @param fessConfig the Fess configuration * @param xpathConfigMap the XPath configuration map
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 55.3K bytes - Click Count (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
} } /** * Gets the content of the response using the provided parser function. * * @param <T> the type of the parsed content. * @param parser the function to parse the content. * @return the parsed content. */ public <T> T getContent(final Function<CurlResponse, T> parser) { return parser.apply(this); } /** * Gets the content of the response as a string.Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 09:11:12 GMT 2026 - 6.8K bytes - Click Count (0)