Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Murray (0.16 sec)

  1. guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

          for (int i = 0; i < length; i++) {
            int cp = sampler.nextCodePoint();
            builder.appendCodePoint(cp);
          }
          return builder.toString();
        }
        // Use a shuffled index array to ensure constant percentage of matching
        // characters
        List<Integer> list = Lists.newArrayList();
        for (int i = 0; i < length; i++) {
          list.add(i);
        }
        Collections.shuffle(list, rand);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 194.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * @throws SmbException
     # @return An array of filenames
     */
        public String[] list( SmbFilenameFilter filter ) throws SmbException {
            return list( "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, filter, null );
        }
    
    /**
     * List the contents of this SMB resource as an array of
     * <code>SmbFile</code> objects. This method is much more efficient than
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  3. android/guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
        public <T extends @Nullable Object> T[] toArray(T[] array) {
          return standardToArray(array);
        }
      }
    
      /** The implementation of {@link Maps#unmodifiableEntrySet(Set)}. */
      static class UnmodifiableEntrySet<K extends @Nullable Object, V extends @Nullable Object>
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

          for (int i = 0; i < length; i++) {
            int cp = sampler.nextCodePoint();
            builder.appendCodePoint(cp);
          }
          return builder.toString();
        }
        // Use a shuffled index array to ensure constant percentage of matching
        // characters
        List<Integer> list = Lists.newArrayList();
        for (int i = 0; i < length; i++) {
          list.add(i);
        }
        Collections.shuffle(list, rand);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 194.8K bytes
    - Viewed (0)
Back to top