Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for setParent (0.06 sec)

  1. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            assertEquals("shared", file.getShare(), "Share should be extracted correctly");
            assertNotNull(file.getParent(), "Parent should not be null");
            assertTrue(file.getParent().endsWith("/shared/path/"), "Parent path should be correct");
        }
    
        @Test
        void testUNCPath() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         *         <code>smb://</code> if the resource refers to the root of the URL
         *         hierarchy which incidentally is also <code>smb://</code>.
         */
        public String getParent() {
            return this.fileLocator.getParent();
        }
    
        /**
         * Returns the full uncanonicalized URL of this SMB resource. An
         * <code>SmbFile</code> constructed with the result of this method will
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

         *           <code>smb1://</code> if the resource refers to the root of the URL
         *           hierarchy which incedentally is also <code>smb1://</code>.
         */
    
        public String getParent() {
            String str = url.getAuthority();
    
            if (str.length() > 0) {
                final StringBuilder sb = new StringBuilder("smb1://");
    
                sb.append(str);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

         *         project (e.g. describes the metadata of some artifact from the repository).
         */
        public Path getProjectDirectory() {
            return (pomFile != null) ? pomFile.getParent() : null;
        }
    
        /**
         * @return the model id as {@code groupId:artifactId:packaging:version}
         */
        public String getId()
        {
            StringBuilder id = new StringBuilder( 64 );
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
Back to top