Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for appendFrames (0.27 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/FailurePrinter.java

                builder.append(prefix)
                    .append(caption)
                    .append(failure.getHeader())
                    .append(lineSeparator);
    
                listener.beforeFrames();
                appendFrames(prefix, parent, failure);
                listener.afterFrames();
    
                appendSuppressed(prefix, failure);
                appendCauses(prefix, failure);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/test/groovy/org/gradle/api/file/RelativePathTest.java

            childPath = new RelativePath(false, "one", "two").plus(new RelativePath(true, "three"));
            assertPathContains(childPath, true, "one", "two", "three");
        }
    
        @Test
        public void appendNames() {
            RelativePath childPath = new RelativePath(false, "one", "two").append(true, "three", "four");
            assertPathContains(childPath, true, "one", "two", "three", "four");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 29 15:31:00 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top