- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 2,556 for build1 (0.05 sec)
-
compat/maven-model/src/test/java/org/apache/maven/model/ModelTest.java
} @Test void testBuild() { Model model = new Model(); Build build = new Build(); build.setOutputDirectory("myOutputDirectory"); model.setBuild(build); Build build2 = model.getBuild(); assertNotNull(build2); assertEquals("myOutputDirectory", build2.getOutputDirectory()); model.setBuild(null); assertNull(model.getBuild()); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 08:09:30 UTC 2025 - 2.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 17.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/event/ExecutionEventLogger.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Dec 13 15:40:45 UTC 2024 - 17.5K bytes - Viewed (0) -
README.md
> The AGPLv3 license provides no warranties nor liabilites for any such usage. ## Build Docker Image You can use the `docker build .` command to build a Docker image on your local host machine. You must first [build MinIO](#install-from-source) and ensure the `minio` binary exists in the project root.
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Dec 03 08:13:11 UTC 2025 - 9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java
.builder() .error(e.getMessage()) .build()); } catch (Exception e) { systemRegistry.trace(e); context.writer.accept(context.invokerRequest .messageBuilderFactory() .builder()Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 10.1K bytes - Viewed (0) -
impl/maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml
<configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <build> <plugins> <plugin>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.4K bytes - Viewed (0) -
docs/en/docs/tutorial/index.md
There is also an **Advanced User Guide** that you can read later after this **Tutorial - User guide**. The **Advanced User Guide** builds on this one, uses the same concepts, and teaches you some extra features. But you should first read the **Tutorial - User Guide** (what you are reading right now).
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 5.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CertificateChainCleanerTest.kt
.Builder() .serialNumber(2L) .certificateAuthority(1) .signedBy(root) .build() val certB = HeldCertificate .Builder() .serialNumber(3L) .certificateAuthority(0) .signedBy(certA) .build() val certC = HeldCertificate .Builder() .serialNumber(4L) .signedBy(certB) .build()Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 9.5K bytes - Viewed (1) -
clause/expression.go
builder.WriteQuoted(lt.Column) builder.WriteString(" < ") builder.AddVar(builder, lt.Value) } func (lt Lt) NegationBuild(builder Builder) { Gte(lt).Build(builder) } // Lte less than or equal to for where type Lte Eq func (lte Lte) Build(builder Builder) { builder.WriteQuoted(lte.Column) builder.WriteString(" <= ") builder.AddVar(builder, lte.Value) }
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Tue Nov 04 07:04:52 UTC 2025 - 8K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/SerializationTest.java
// Serialize an inner child here so that the BaseObject.childrenTracking is non null Build build = model.getBuild(); ByteArrayOutputStream baos = new ByteArrayOutputStream(); try (ObjectOutputStream oos = new ObjectOutputStream(baos)) { oos.writeObject(build); } Build build2; ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0)