Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Column (0.18 sec)

  1. android/guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return map(delegate().row(rowKey), mutex);
          }
        }
    
        @Override
        public Map<R, V> column(@ParametricNullness C columnKey) {
          synchronized (mutex) {
            return map(delegate().column(columnKey), mutex);
          }
        }
    
        @Override
        public Set<Cell<R, C, V>> cellSet() {
          synchronized (mutex) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 53.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        /**
         * If the path of this <code>SmbFile</code> falls within a DFS volume,
         * this method will return the referral path to which it maps. Otherwise
         * <code>null</code> is returned.
         * 
         * @return URL to the DFS volume
         * @throws SmbException
         */
        public String getDfsPath () throws SmbException {
            try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top