- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 1,940 for buildA (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomArtifactTransformer.java
- this.builder = builder;
- }
- @SuppressWarnings("deprecation")
- public void injectTransformedArtifacts(RepositorySystemSession session, MavenProject project) throws IOException {
- if (project.getFile() == null) {
- // If there is no build POM there is no reason to inject artifacts for the consumer POM.
- return;
- }
- if (Features.consumerPom(session.getUserProperties())) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/LoggingInterceptors.java
- private final OkHttpClient client = new OkHttpClient.Builder()
- .addInterceptor(new LoggingInterceptor())
- .build();
- public void run() throws Exception {
- Request request = new Request.Builder()
- .url("https://publicobject.com/helloworld.txt")
- .build();
- Response response = client.newCall(request).execute();
- response.body().close();
- }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Jan 01 15:55:32 UTC 2016 - 2K bytes - Viewed (0) -
compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml
- <expression>
- <syntax>project.pluginArtifacts</syntax>
- <configuration>
- <![CDATA[
- <build>
- <plugins>
- ...
- </plugins>
- </build>
- ]]></configuration>
- <description>
- <![CDATA[
- This is the list of Artifact instances for plugins used in the current build
- for this project.
- NOTE: This list may contain plugin Artifacts which are implied by the current POM's
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidSocketAdapter.kt
- factory("com.google.android.gms.org.conscrypt")
- /**
- * Builds a SocketAdapter from an observed implementation class, by grabbing the Class
- * reference to perform reflection on at runtime.
- *
- * @param actualSSLSocketClass the runtime class of Conscrypt class socket.
- */
- private fun build(actualSSLSocketClass: Class<in SSLSocket>): AndroidSocketAdapter {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.6K bytes - Viewed (0) -
container-tests/src/test/java/okhttp3/containers/BasicProxyTest.kt
- testRequest {
- it.withProxyConfiguration(ProxyConfiguration.proxyConfiguration(ProxyConfiguration.Type.HTTP, it.remoteAddress()))
- val client =
- OkHttpClient.Builder()
- .proxy(Proxy(Proxy.Type.HTTP, it.remoteAddress()))
- .build()
- val response =
- client.newCall(
- Request((mockServer.endpoint + "/person?name=peter").toHttpUrl()),
- ).execute()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Apr 05 03:30:42 UTC 2024 - 5.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/CacheResponse.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2K bytes - Viewed (0) -
samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/ClientAndServer.java
- server.start();
- OkHttpClient client = new OkHttpClient.Builder()
- .socketFactory(new UnixDomainSocketFactory(socketFile))
- .protocols(Collections.singletonList(Protocol.H2_PRIOR_KNOWLEDGE))
- .build();
- Request request = new Request.Builder()
- .url("http://publicobject.com/helloworld.txt")
- .build();
- try (Response response = client.newCall(request).execute()) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Dec 24 03:46:30 UTC 2018 - 2.1K bytes - Viewed (0) -
docs/features/interceptors.md
- Register an _application_ interceptor by calling `addInterceptor()` on `OkHttpClient.Builder`:
- ```java
- OkHttpClient client = new OkHttpClient.Builder()
- .addInterceptor(new LoggingInterceptor())
- .build();
- Request request = new Request.Builder()
- .url("http://www.publicobject.com/helloworld.txt")
- .header("User-Agent", "OkHttp Example")
- .build();
- Response response = client.newCall(request).execute();
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 8.1K bytes - Viewed (0) -
.teamcity/README.md
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Mar 06 23:02:25 UTC 2024 - 4K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/Progress.java
- }
- };
- OkHttpClient client = new OkHttpClient.Builder()
- .addNetworkInterceptor(chain -> {
- Response originalResponse = chain.proceed(chain.request());
- return originalResponse.newBuilder()
- .body(new ProgressResponseBody(originalResponse.body(), progressListener))
- .build();
- })
- .build();
- try (Response response = client.newCall(request).execute()) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 12 03:31:36 UTC 2019 - 3.9K bytes - Viewed (0)