Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for standard (0.17 sec)

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

       * ...
       * ImmutableMap<String, Color> colorForName =
       *     allColors.stream().collect(toImmutableMap(c -> c.toString(), c -> c));
       * }</pre>
       *
       * <p>Streams provide a more standard and flexible API and the lambdas make it clear what the keys
       * and values in the map are.
       *
       * @param values the values to use when constructing the {@code Map}
    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

            } else if( getUncPath0().length() > 1 && type != TYPE_NAMED_PIPE ) {
                Info info = queryPath( getUncPath0(),
                        Trans2QueryPathInformationResponse.SMB_QUERY_FILE_STANDARD_INFO );
                size = info.getSize();
            } else {
                size = 0L;
            }
            sizeExpiration = System.currentTimeMillis() + attrExpirationPeriod;
            return size;
        }
    
    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