Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 302 for endlines (4.1 sec)

  1. platforms/ide/ide-native/src/main/resources/org/gradle/ide/visualstudio/tasks/internal/default.vcxproj.filters

          <Filter Include="Source Files">
            <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
          </Filter>
          <Filter Include="Header Files">
            <!-- if you would like to add more endings to this pattern, make sure to also edit DefaultCppLibrary.java and DefaultCppComponent.java-->
            <Extensions>h;hpp;h++;hxx;hm;inl;inc;xsd</Extensions>
          </Filter>
          <Filter Include="Resource Files">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 808 bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/FilesTest.java

                return collector;
              }
            };
        assertThat(Files.readLines(temp, Charsets.UTF_8, collect)).isEmpty();
    
        PrintWriter w = new PrintWriter(Files.newWriter(temp, Charsets.UTF_8));
        w.println("hello");
        w.println("");
        w.println(" world  ");
        w.println("");
        w.close();
        Files.readLines(temp, Charsets.UTF_8, collect);
    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. android/guava/src/com/google/common/io/CharSource.java

      @ParametricNullness
      public <T extends @Nullable Object> T readLines(LineProcessor<T> processor) throws IOException {
        checkNotNull(processor);
    
        Closer closer = Closer.create();
        try {
          Reader reader = closer.register(openStream());
          return CharStreams.readLines(reader, processor);
        } catch (Throwable e) {
          throw closer.rethrow(e);
        } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/BuildSessionServiceReuseContinuousIntegrationTest.groovy

            then:
            succeeds("captureService")
    
            when:
            triggerFile << "change"
    
            then:
            buildTriggeredAndSucceeded()
    
            and:
            def ids = idFile.readLines()
            ids.size() == 2
            ids[0] == ids[1]
    
            where:
            service                          | _
            "WorkerProcessFactory"           | _
            "UnscopedCacheBuilderFactory"    | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/model/ModelReportParser.groovy

        static ParsedModelReport parse(String text) {
            validate(text)
            def reportLines = text.readLines()
            int firstLine = reportLines.findIndexOf { it.matches("-+") }
            if (firstLine < 0) {
                throw new AssertionError("No header found in report output")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 21 18:45:57 UTC 2018
    - 5.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/LoggingIntegrationTest.groovy

            }
        }
    
        void assertIsAtEndOfLine() {
            int endLine = index + expected.length()
            if (endLine == actual.length()) {
                return
            }
            if (!actual.substring(endLine).startsWith('\n')) {
                throw new AssertionError("Expected content '$expected' is not at the end of a line in output $actual.")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/CharStreams.java

       * Files#readLines} and {@link Resources#readLines} methods.
       *
       * @param r the object to read from
       * @return a mutable {@link List} containing all the lines
       * @throws IOException if an I/O error occurs
       */
      public static List<String> readLines(Readable r) throws IOException {
        List<String> result = new ArrayList<>();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCompilerContinuousIntegrationTest.groovy

            when:
            inputFile.text = changedSourceContent
    
            then:
            buildTriggeredAndSucceeded()
    
            and:
            def compilerDaemonSets = compilerDaemonIdentityFile.readLines()
            compilerDaemonSets.size() == 2
            compilerDaemonSets[0].split(" ").size() > 0
            compilerDaemonSets[0] == compilerDaemonSets[1]
    
            when:
            sendEOT()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 04 07:31:58 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. src/log/slog/example_custom_levels_test.go

    	logger.Error("failed to start engines", "err", "missing fuel")
    	logger.Warn("falling back to default value")
    	logger.Log(ctx, LevelNotice, "all systems are running")
    	logger.Info("initiating launch")
    	logger.Debug("starting background job")
    	logger.Log(ctx, LevelTrace, "button clicked")
    
    	// Output:
    	// sev=EMERGENCY msg="missing pilots"
    	// sev=ERROR msg="failed to start engines" err="missing fuel"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ArtifactResolutionOmittingOutputNormalizer.groovy

    @CompileStatic
    class ArtifactResolutionOmittingOutputNormalizer implements OutputNormalizer {
        @Override
        String normalize(String commandOutput, @Nullable ExecutionMetadata executionMetadata) {
            List<String> lines = commandOutput.readLines()
            if (lines.empty) {
                return ""
            }
            boolean seenWarning = false
            List<String> result = new ArrayList<String>()
            for (String line : lines) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top