Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pathByteSourceFactory (0.09 sec)

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

      }
    
      public static CharSourceFactory urlCharSourceFactory() {
        return new UrlCharSourceFactory();
      }
    
      @AndroidIncompatible
      public static ByteSourceFactory pathByteSourceFactory() {
        return new PathByteSourceFactory();
      }
    
      @AndroidIncompatible
      public static ByteSinkFactory pathByteSinkFactory() {
        return new PathByteSinkFactory(null);
      }
    
      @AndroidIncompatible
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/MoreFilesTest.java

      public static TestSuite suite() {
        TestSuite suite = new TestSuite();
        suite.addTest(
            ByteSourceTester.tests(
                "MoreFiles.asByteSource[Path]", SourceSinkFactories.pathByteSourceFactory(), true));
        suite.addTest(
            ByteSinkTester.tests(
                "MoreFiles.asByteSink[Path]", SourceSinkFactories.pathByteSinkFactory()));
        suite.addTest(
            ByteSinkTester.tests(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 02:42:09 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top