Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ReceivedFileLocation (0.21 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

                stacktrace
            }
    
            @Override
            String getMessage() {
                message
            }
        }
    
        static class ReceivedFileLocation implements FileLocation {
            private final String path
    
            ReceivedFileLocation(Map<String, Object> location) {
                path = location['path'] as String
            }
    
            @Override
            String getPath() {
                path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

                fqid == 'compilation:java:java-compilation-warning'
                details == 'redundant cast to java.lang.String'
                solutions.empty
                verifyAll(getSingleLocation(ReceivedProblem.ReceivedFileLocation)) {
                    it.path == fooFileLocation.absolutePath
                }
                additionalData.asMap ["formatted"] == """\
    $fooFileLocation:5: warning: [cast] redundant cast to $expectedType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top