Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for workType (0.11 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidateAction.java

                                .documentedAt(userManual("validation_problems", "disable_caching_by_default"))
                                .severity(WARNING)
                                .details("The " + workType + " author should make clear why a " + workType + " is not cacheable")
                                .solution("Add " + disableCachingAnnotation + "(because = ...)")
                                .solution("Add " + cacheableAnnotation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            String workType
            String cacheableAnnotation
            List<String> otherAnnotations = []
    
            NotCacheableWithoutReason(ValidationMessageChecker checker) {
                super(checker)
            }
    
            NotCacheableWithoutReason noReasonOnTask() {
                workType = "task"
                cacheableAnnotation = "@CacheableTask"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

            def externalExecution = executions.find { it.details.identity == externalTransformIdentification.identity }
            [projectExecution, externalExecution].each {
                with(it) {
                    details.workType == 'TRANSFORM'
                }
            }
    
            with(projectExecution.result) {
                skipMessage == null
                originBuildInvocationId == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top