Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for square (0.14 sec)

  1. src/main/java/jcifs/smb/SmbTreeImpl.java

            }
            return SmbConstants.TYPE_SHARE;
        }
    
    
        /**
         * @return the service
         */
        public String getService () {
            return this.service;
        }
    
    
        /**
         * @return the share
         */
        public String getShare () {
            return this.share;
        }
    
    
        /**
         * @return whether this is a DFS share
         */
        public boolean isDfs () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/ConcurrencyTest.java

                  SmbResource exclFile = new SmbFile(sr, fname) ) {
    
                try ( OutputStream s = exclFile.openOutputStream(false, SmbConstants.FILE_NO_SHARE);
                      InputStream is = exclFile.openInputStream(SmbConstants.FILE_NO_SHARE) ) {
                    fail("No sharing violation");
                }
                catch ( SmbException e ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:40:50 GMT 2021
    - 17.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResource.java

         * the share permissions on the share exporting this file or directory.
         * If no DACL is present, null is returned. If the DACL is empty, an array with 0 elements is returned.
         * <p>
         * Note that this is different from calling <tt>getSecurity</tt> on a
         * share. There are actually two different ACLs for shares - the ACL on
         * the share and the ACL on the folder being shared.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

                }
                if (share_name != null) {
                    _dst = _dst.deferred;
                    _dst.enc_ndr_string(share_name);
    
                }
            }
            public void decode(NdrBuffer _src) throws NdrException {
                _src.align(4);
                state = (int)_src.dec_ndr_long();
                int _server_namep = _src.dec_ndr_long();
                int _share_namep = _src.dec_ndr_long();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 15K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/http/NetworkExplorer.java

            }
            while( p < len && pathInfo.charAt( p ) == '/' ) {
                p++;
            }
            if( p < len ) {                 /* then there must be a share */
                out[i++] = '/';
                do {                            /* collect the share name */
                    out[i++] = (ch = pathInfo.charAt( p++ ));
                } while( p < len && ch != '/' );
            }
            return new String( out, 0, i );
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 22 03:57:31 GMT 2020
    - 19.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NetworkExplorer.java

                p++;
            }
            while ( p < len && pathInfo.charAt(p) == '/' ) {
                p++;
            }
            if ( p < len ) { /* then there must be a share */
                out[ i++ ] = '/';
                do { /* collect the share name */
                    out[ i++ ] = ( ch = pathInfo.charAt(p++) );
                }
                while ( p < len && ch != '/' );
            }
            return new String(out, 0, i);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 21.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                }
                if (path == null) {
                    path = System.getenv("path");
                }
                final List<String> pathList = new ArrayList<>();
                pathList.add("/usr/share/fess/bin");
                if (path != null) {
                    stream(path.split(File.pathSeparator)).of(stream -> stream.map(String::trim).forEach(s -> pathList.add(s)));
                }
                if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                    dr.server = resp.referrals[di].path.substring(1).toLowerCase();
                } else {
                    dfsPathSplit(resp.referrals[di].node, arr);
                    dr.server = arr[1];
                    dr.share = arr[2];
                    dr.path = arr[3];
                }
                dr.pathConsumed = resp.pathConsumed;
    
                di++;
                if (di == rn)
                    break;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/Configuration.java

         * 
         * @return local NETBIOS/short name to announce
         */
        String getNetbiosHostname ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.logonShare</tt>
         * 
         * @return share to connect to during authentication, if unset connect to IPC$
         */
        String getLogonShare ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.domain</tt>
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top