Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for contextualLabel (0.35 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/execution/DefaultTaskSelector.java

                    configureProblem(spec, matcher, context);
                    String message = matcher.formatErrorMessage("Task", searchContext);
                    spec.contextualLabel(message)
                        .withException(new TaskSelectionException(message));
                });
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProblemsProgressEventConsumer.java

        }
    
        private static @Nullable InternalContextualLabel toInternalContextualLabel(@Nullable String contextualLabel) {
            return contextualLabel == null ? null : new DefaultContextualLabel(contextualLabel);
        }
    
        private static @Nullable InternalDetails toInternalDetails(@Nullable String details) {
            return details == null ? null : new DefaultDetails(details);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

         * @since 8.9
         */
        ProblemDefinition getDefinition();
    
        /**
         * Returns the contextual label.
         *
         * @return the problem label
         * @since 8.9
         */
        ContextualLabel getContextualLabel();
    
        /**
         * Returns the details string.
         *
         * @return the problem details
         * @since 8.8
         */
        Details getDetails();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

                            .id(TextUtil.screamingSnakeToKebabCase(REDUNDANT_GETTERS), "Property has redundant getters", GradleCoreProblemGroup.validation().property()) // TODO (donat) missing test coverage
                            .contextualLabel(
                                String.format(
                                    "has redundant getters: '%s()' and '%s()'",
                                    previouslySeenBuilder.getter.getName(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

                    .forProperty(propertyName)
                    .id(TextUtil.screamingSnakeToKebabCase(UNKNOWN_IMPLEMENTATION_NESTED), "Unknown property implementation", GradleCoreProblemGroup.validation().property())
                    .contextualLabel(unknownImplSnapshot.getProblemDescription())
                    .documentedAt(userManual("validation_problems", "implementation_unknown"))
                    .details(unknownImplSnapshot.getReasonDescription())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/plugins/SoftwareTypeRegistrationPluginTarget.java

                    problem.withAnnotationType(softwareTypePluginImplClass)
                        .id("missing-software-type", "Missing software type annotation", GradleCoreProblemGroup.validation().type())
                        .contextualLabel("is registered as a software type plugin but does not expose a software type")
                        .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/DefaultTypeMetadataStore.java

                            .id(TextUtil.screamingSnakeToKebabCase(ANNOTATION_INVALID_IN_CONTEXT), "Invalid annotation in context", GradleCoreProblemGroup.validation().property())
                            .contextualLabel(String.format("is annotated with invalid property type @%s", propertyType.getSimpleName()))
                            .documentedAt(userManual("validation_problems", TextUtil.toLowerCaseLocaleSafe(ANNOTATION_INVALID_IN_CONTEXT)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                inCatalog('libs')
                missing(path)
            })
    
            and:
            verifyAll(receivedProblem) {
                fqid == 'dependency-version-catalog:catalog-file-does-not-exist'
                contextualLabel == 'Problem: In version catalog libs, import of external catalog file failed.'
                details == "File \'${file('missing.toml').absolutePath}\' doesn\'t exist"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top