Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for qualified (0.16 sec)

  1. android/guava/src/com/google/common/reflect/ClassPath.java

         * @since 20.0
         */
        public final CharSource asCharSource(Charset charset) {
          return Resources.asCharSource(url(), charset);
        }
    
        /** Returns the fully qualified name of the resource. Such as "com/mycomp/foo/bar.txt". */
        public final String getResourceName() {
          return resourceName;
        }
    
        /** Returns the file that includes this resource. */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jan 05 17:43:40 GMT 2022
    - 24.9K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/io/Files.java

       * similar to the {@code basename} unix command. The result does not include the '{@code .}'.
       *
       * @param file The name of the file to trim the extension from. This can be either a fully
       *     qualified file name (including a path) or just a file name.
       * @return The file name without its path or extension.
       * @since 14.0
       */
      public static String getNameWithoutExtension(String file) {
        checkNotNull(file);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 33.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *               },
       *               executor)
       *           .closing(executor);
       * }</pre>
       */
      // TODO(cpovirk): Use simple name instead of fully qualified after we stop building with JDK 8.
      @com.google.errorprone.annotations.DoNotMock(
          "Use ClosingFuture.whenAllSucceed() or .whenAllComplete() instead.")
      public static class Combiner {
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
Back to top