Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for processFile (0.22 sec)

  1. guava/src/com/google/common/io/CharStreams.java

        checkNotNull(readable);
        checkNotNull(processor);
    
        LineReader lineReader = new LineReader(readable);
        String line;
        while ((line = lineReader.readLine()) != null) {
          if (!processor.processLine(line)) {
            break;
          }
        }
        return processor.getResult();
      }
    
      /**
       * Reads and discards data from the given {@code Readable} until the end of the stream is reached.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/CharStreams.java

        checkNotNull(readable);
        checkNotNull(processor);
    
        LineReader lineReader = new LineReader(readable);
        String line;
        while ((line = lineReader.readLine()) != null) {
          if (!processor.processLine(line)) {
            break;
          }
        }
        return processor.getResult();
      }
    
      /**
       * Reads and discards data from the given {@code Readable} until the end of the stream is reached.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                Files.asCharSource(logFile, Charsets.UTF_8).readLines(new LineProcessor<Void>() {
                    @Override
                    public boolean processLine(@SuppressWarnings("NullableProblems") String line) {
                        Map<String, ?> map = uncheckedNonnullCast(slurper.parseText(line));
                        if (map.containsKey("startTime")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/CharSource.java

        public <T extends @Nullable Object> T readLines(LineProcessor<T> processor) throws IOException {
          Iterator<String> lines = linesIterator();
          while (lines.hasNext()) {
            if (!processor.processLine(lines.next())) {
              break;
            }
          }
          return processor.getResult();
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/CharSource.java

        public <T extends @Nullable Object> T readLines(LineProcessor<T> processor) throws IOException {
          Iterator<String> lines = linesIterator();
          while (lines.hasNext()) {
            if (!processor.processLine(lines.next())) {
              break;
            }
          }
          return processor.getResult();
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/Files.java

            .readLines(
                new LineProcessor<List<String>>() {
                  final List<String> result = Lists.newArrayList();
    
                  @Override
                  public boolean processLine(String line) {
                    result.add(line);
                    return true;
                  }
    
                  @Override
                  public List<String> getResult() {
                    return result;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    java.util.Comparator getSorter(org.junit.FixMethodOrder); static void <clinit>(); } org/junit/internal/Throwables$State$3.class package org.junit.internal; final synchronized enum Throwables$State$3 { void Throwables$State$3(String, int); public Throwables$State processLine(String); } org/junit/internal/TextListener.class package org.junit.internal; public synchronized class TextListener extends org.junit.runner.notification.RunListener { private final java.io.PrintStream writer; public void TextListener(JUnitSystem);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/Files.java

            .readLines(
                new LineProcessor<List<String>>() {
                  final List<String> result = Lists.newArrayList();
    
                  @Override
                  public boolean processLine(String line) {
                    result.add(line);
                    return true;
                  }
    
                  @Override
                  public List<String> getResult() {
                    return result;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top