Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for contextualLabel (0.21 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

            """
    
            when:
            fails "someTest"
    
            then:
            verifyAll(receivedProblem) {
                fqid == 'task-selection:no-matches'
                contextualLabel == "Task 'someTest' not found in root project 'test' and its subprojects. Some candidates are: 'someTask', 'someTaskA', 'someTaskB'."
                additionalData.asMap == ['requestedPath' : 'someTest']
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemBuilder.java

        @Override
        InternalProblemBuilder taskPathLocation(String buildTreePath);
    
        @Override
        InternalProblemBuilder documentedAt(DocLink doc);
    
        @Override
        InternalProblemBuilder contextualLabel(String contextualLabel);
    
        @Override
        InternalProblemBuilder documentedAt(String url);
    
        @Override
        InternalProblemBuilder fileLocation(String path);
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

            this.operationId = operationId
            this.definition = new ReceivedProblemDefinition(problemDetails['definition'] as Map<String, Object>)
            this.contextualLabel = problemDetails['contextualLabel'] as String
            this.details =  problemDetails['details'] as String
            this.solutions = problemDetails['solutions'] as List<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

        /**
         * Declares a short, but context-dependent message for this problem.
         *
         * @param contextualLabel the short message
         * @return this
         * @since 8.8
         */
        ProblemSpec contextualLabel(String contextualLabel);
    
        /**
         * Declares where this problem is documented.
         *
         * @return this
         * @since 8.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                    ).includeLink()
            })
    
            and:
            verifyAll(receivedProblem) {
                fqid == 'validation:property-validation:unsupported-notation'
                contextualLabel == 'Property \'input\' has unsupported value \'task \':dependencyTask\'\''
                details == "Type 'DefaultTask' cannot be converted to a $targetType"
                solutions == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemSpec.java

        InternalProblemSpec id(String name, String displayName);
    
        @Override
        InternalProblemSpec id(String name, String displayName, ProblemGroup parent);
    
        @Override
        InternalProblemSpec contextualLabel(String contextualLabel);
    
        @Override
        InternalProblemSpec documentedAt(String url);
    
        @Override
        InternalProblemSpec fileLocation(String path);
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DetachedConfigurationsIntegrationTest.groovy

            when:
            run "checkDependencies"
    
            then:
            verifyAll(receivedProblem(0)) {
                fqid == 'deprecation:configurations-acting-as-both-root-and-variant'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningOperationIntegrationSpec.groovy

            and:
            verifyAll(receivedProblem) {
                fqid == 'compilation:groovy-dsl:compilation-failed'
                contextualLabel == "Could not compile build file '${buildFile.absolutePath}'."
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                    if (p1.fqid != p2.fqid) {
                        return p1.fqid <=> p2.fqid
                    }
                    if (p1.contextualLabel != p2.contextualLabel) {
                        return p1.contextualLabel <=> p2.contextualLabel
                    }
                    if (p1.details != p2.details) {
                        return p1.details <=> p2.details
                    }
                    return 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

            and:
            verifyAll(receivedProblem) {
                fqid == 'task-selection:no-matches'
                contextualLabel == 'Cannot locate tasks that match \':a:javadocJar\' as task \'javadocJar\' not found in project \':a\'. Some candidates are: \'javadoc\'.'
                additionalData.asMap == [ 'requestedPath' : ':a:javadocJar']
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top