Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for performance (0.14 sec)

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

          SortedMap<K, V> unfiltered, final Predicate<? super K> keyPredicate) {
        // TODO(lowasser): Return a subclass of Maps.FilteredKeyMap for slightly better
        // performance.
        return filterEntries(unfiltered, Maps.<K>keyPredicateOnEntries(keyPredicate));
      }
    
      /**
       * Returns a navigable map containing the mappings in {@code unfiltered} whose keys satisfy a
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

            return listFiles( "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null );
        }
    
    /**
     * The CIFS protocol provides for DOS "wildcards" to be used as
     * a performance enhancement. The client does not have to filter
     * the names and the server does not have to return all directory
     * entries.
     * <p>
     * The wildcard expression may consist of two special meta
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top