Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for appendingFileCharSinkFactory (0.52 sec)

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

        return new FileCharSourceFactory();
      }
    
      public static CharSinkFactory fileCharSinkFactory() {
        return new FileCharSinkFactory(null);
      }
    
      public static CharSinkFactory appendingFileCharSinkFactory() {
        String initialString = IoTestCase.ASCII + IoTestCase.I18N;
        return new FileCharSinkFactory(initialString);
      }
    
      public static ByteSourceFactory urlByteSourceFactory() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/FilesTest.java

        suite.addTest(
            CharSinkTester.tests(
                "Files.asCharSink[File, Charset, APPEND]",
                SourceSinkFactories.appendingFileCharSinkFactory()));
        suite.addTestSuite(FilesTest.class);
        return suite;
      }
    
      public void testRoundTripSources() throws Exception {
        File asciiFile = getTestFile("ascii.txt");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/FilesTest.java

        suite.addTest(
            CharSinkTester.tests(
                "Files.asCharSink[File, Charset, APPEND]",
                SourceSinkFactories.appendingFileCharSinkFactory()));
        suite.addTestSuite(FilesTest.class);
        return suite;
      }
    
      public void testRoundTripSources() throws Exception {
        File asciiFile = getTestFile("ascii.txt");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
Back to top