Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pathCharSourceFactory (0.23 sec)

  1. guava-tests/test/com/google/common/io/SourceSinkFactories.java

        return new PathByteSinkFactory(initialString.getBytes(Charsets.UTF_8));
      }
    
      @AndroidIncompatible
      public static CharSourceFactory pathCharSourceFactory() {
        return new PathCharSourceFactory();
      }
    
      @AndroidIncompatible
      public static CharSinkFactory pathCharSinkFactory() {
        return new PathCharSinkFactory(null);
      }
    
      @AndroidIncompatible
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Sep 09 17:57:59 GMT 2021
    - 17.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/MoreFilesTest.java

                SourceSinkFactories.appendingPathByteSinkFactory()));
        suite.addTest(
            CharSourceTester.tests(
                "MoreFiles.asCharSource[Path, Charset]",
                SourceSinkFactories.pathCharSourceFactory(),
                false));
        suite.addTest(
            CharSinkTester.tests(
                "MoreFiles.asCharSink[Path, Charset]", SourceSinkFactories.pathCharSinkFactory()));
        suite.addTest(
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Jan 29 22:57:05 GMT 2024
    - 27.2K bytes
    - Viewed (0)
Back to top