- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for getConnection (0.08 seconds)
-
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java
Model out = interpolator.interpolateModel(model, new File("."), createModelBuildingRequest(context), collector); assertProblemFree(collector); assertEquals("${test}/somepath", out.getScm().getConnection()); } @Test public void testShouldThrowExceptionOnRecursiveScmConnectionReference() throws Exception { var model = new Model(org.apache.maven.api.model.Model.newBuilder()
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 18.2K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java
artifactId = id; } } public static class Scm { private String connection; public void setConnection(String connection) { this.connection = connection; } public String getConnection() { return connection; } } public static class ValueHolder { private final Object value;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 16.9K bytes - Click Count (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
bufferManager.cleanup(); super.disconnect(); } } public RdmaProvider getProvider() { return provider; } public RdmaConnection getConnection() { return rdmaConnection; } } ``` ### 4.4 RDMA Buffer Manager ```java package jcifs.internal.smb2.rdma; import java.util.concurrent.ConcurrentLinkedQueue;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 35.9K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java
String src = source.getConnection(); if (src != null) { if (sourceDominant) { target.setConnection(src); target.setLocation("connection", source.getLocation("connection")); } else if (target.getConnection() == null) { target.setConnection(extrapolateChildUrl(src, source.isChildScmConnectionInheritAppendPath(), context));Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 21.7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
private void visit(Scm scm) { if (scm != null) { String org, val; // Connection org = scm.getConnection(); val = interpolate(org); if (org != val) { scm.setConnection(val); } // DeveloperConnection org = scm.getDeveloperConnection(); val = interpolate(org);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 43.1K bytes - Click Count (0)