Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for setConnection (0.55 sec)

  1. 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;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  2. 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));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  3. 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);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  4. 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()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:36 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  5. 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;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
Back to top