- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for interrogate (0.06 sec)
-
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BasicDerAdapter.kt
/** * Returns a copy of this adapter that sets the encoded or decoded value as the type hint for the * other adapters on this SEQUENCE to interrogate. */ fun asTypeHint(): BasicDerAdapter<T> = copy(typeHint = true) // Avoid Long.hashCode(long) which isn't available on Android 5. override fun hashCode(): Int { var result = 0
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.4K bytes - Viewed (0) -
docs/features/interceptors.md
The network requests also contain more data, such as the `Accept-Encoding: gzip` header added by OkHttp to advertise support for response compression. The network interceptor's `Chain` has a non-null `Connection` that can be used to interrogate the IP address and TLS configuration that were used to connect to the webserver. ### Choosing between application and network interceptors Each interceptor chain has relative merits.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 8.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/ModelInterpolator.java
/** * @deprecated Use {@link ModelInterpolator#interpolate(Model, File, ProjectBuilderConfiguration, boolean)} instead. */ @Deprecated Model interpolate(Model project, Map<String, ?> context) throws ModelInterpolationException; /** * @deprecated Use {@link ModelInterpolator#interpolate(Model, File, ProjectBuilderConfiguration, boolean)} instead. */ @Deprecated
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/FileProfileActivator.java
fileString = interpolator.interpolate(fileString, "").replace("\\", "/"); File file = new File(fileString); return !file.exists(); } } catch (InterpolationException e) { if (logger.isDebugEnabled()) { logger.debug("Failed to interpolate missing file location for profile activator: " + fileString, e);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Interpolator.java
* @param callback The function to resolve variable values not found in the map. */ default void interpolate(@Nonnull Map<String, String> properties, @Nullable UnaryOperator<String> callback) { interpolate(properties, callback, null, true); } /** * Interpolates the values in the given map using the provided callback function. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jan 13 16:14:35 UTC 2025 - 6.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderRequest.java
boolean isStrict(); @Nullable String getModelId(); @Nullable String getLocation(); boolean isAddDefaultEntities(); interface Transformer { /** * Interpolate the value read from the xml document * * @param source The source value * @param fieldName A description of the field being interpolated. The implementation may use this to
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Aug 29 12:46:27 UTC 2025 - 6.8K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java
* * @param callback the callback to use for interpolation * @return a new {@link Options} instance with interpolated values */ @Nonnull Options interpolate(@Nonnull UnaryOperator<String> callback); /** * Emits warning messages if deprecated options are used. * * @param printWriter the string consumer to use for output */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jan 13 16:14:35 UTC 2025 - 6.5K bytes - Viewed (0)