Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for urlCharSourceFactory (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

      }
    
      public static ByteSourceFactory urlByteSourceFactory() {
        return new UrlByteSourceFactory();
      }
    
      public static CharSourceFactory urlCharSourceFactory() {
        return new UrlCharSourceFactory();
      }
    
      @AndroidIncompatible
      public static ByteSourceFactory pathByteSourceFactory() {
        return new PathByteSourceFactory();
      }
    
      @AndroidIncompatible
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Jul 16 17:42:14 GMT 2025
    - 17.9K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/io/ResourcesTest.java

        suite.addTest(
            CharSourceTester.tests(
                "Resources.asCharSource[URL, Charset]",
                SourceSinkFactories.urlCharSourceFactory(),
                false));
        suite.addTestSuite(ResourcesTest.class);
        return suite;
      }
    
      public void testToString() throws IOException {
        URL resource = getClass().getResource("testdata/i18n.txt");
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 16:03:47 GMT 2025
    - 6.9K bytes
    - Click Count (0)
Back to Top