- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 1,786 for built (0.07 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
} /** * @deprecated use {@link #build(ReaderSupplier)} */ @Deprecated public PluginDescriptor build(Reader reader) throws PlexusConfigurationException { return build(reader, null); } /** * @deprecated use {@link #build(ReaderSupplier, String)} */ @Deprecated public PluginDescriptor build(Reader reader, String source) throws PlexusConfigurationException {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt
init { artifactRules = """ **/build/git-checkout/platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties **/build/distributions/*.zip => promote-build-distributions **/build/website-checkout/data/releases.xml **/build/git-checkout/build/reports/integTest/** => distribution-tests **/smoke-tests/build/reports/tests/** => post-smoke-tests
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Feb 07 17:05:02 UTC 2024 - 3.1K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/BuildModelSourceTransformerTest.java
.build()) .build()); Model expected = new Model(org.apache.maven.api.model.Model.newBuilder() .parent(org.apache.maven.api.model.Parent.newBuilder() .groupId("GROUPID") .artifactId("ARTIFACTID") .version("1.0-SNAPSHOT") .build()) .build());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 18.5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/RequestTest.kt
val get = Request.Builder().url("http://localhost/api").get().build() assertThat(get.method).isEqualTo("GET") assertThat(get.body).isNull() val head = Request.Builder().url("http://localhost/api").head().build() assertThat(head.method).isEqualTo("HEAD") assertThat(head.body).isNull() val delete = Request.Builder().url("http://localhost/api").delete().build() assertThat(delete.method).isEqualTo("DELETE")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 16.4K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/BuildScanInfoCollectingServices.kt
import org.gradle.api.provider.Provider import org.gradle.build.event.BuildEventsListenerRegistry // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390 import org.gradle.kotlin.dsl.* import org.gradle.kotlin.dsl.support.serviceOf /** * In build-logic and main build, register a BuildService instance separately, * which collects necessary information for build scan. */
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Apr 24 03:34:53 UTC 2024 - 3.2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt
.commonName(server.hostName) .build() val certificatePinner = CertificatePinner.Builder() .add(server.hostName, pin(rootCa.certificate)) .build() val handshakeCertificates = HandshakeCertificates.Builder() .addTrustedCertificate(rootCa.certificate) .build() val client = clientTestRule.newClientBuilder() .sslSocketFactory(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 23.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java
import org.apache.maven.project.MavenProject; /** * Summarizes the result of a failed project build in the reactor. * */ public class BuildFailure extends BuildSummary { /** * The cause of the build failure. */ private final Throwable cause; /** * Creates a new build summary for the specified project. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 09:14:38 UTC 2024 - 37.6K bytes - Viewed (0) -
.teamcity/src/test/kotlin/PromotionProjectTests.kt
@Test fun `nightly promotion build type runs three gradle invocations`() { val model = setupModelFor("release") val nightlySnapshot = model.findBuildTypeByName("Nightly Snapshot") val steps = nightlySnapshot.steps.items assertEquals(3, steps.size)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Feb 13 14:18:23 UTC 2024 - 13.4K bytes - Viewed (0)