Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for reopened (0.18 sec)

  1. android/guava/src/com/google/common/base/Converter.java

          return checkNotNull(otherConverter, "otherConverter");
        }
    
        /*
         * We *could* override convertAll() to return its input, but it's a rather pointless
         * optimization and opened up a weird type-safety problem.
         */
    
        @Override
        public String toString() {
          return "Converter.identity()";
        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 23K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Files.java

          return "Files.asByteSource(" + file + ")";
        }
      }
    
      /**
       * Returns a new {@link ByteSink} for writing bytes to the given file. The given {@code modes}
       * control how the file is opened for writing. When no mode is provided, the file will be
       * truncated before writing. When the {@link FileWriteMode#APPEND APPEND} mode is provided, writes
       * will append to the end of the file without truncating it.
       *
    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. guava/src/com/google/common/base/Converter.java

          return checkNotNull(otherConverter, "otherConverter");
        }
    
        /*
         * We *could* override convertAll() to return its input, but it's a rather pointless
         * optimization and opened up a weird type-safety problem.
         */
    
        @Override
        public String toString() {
          return "Converter.identity()";
        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 23K bytes
    - Viewed (1)
Back to top