Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 733 for reportCmd (0.16 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/LocationAwareScriptEvaluationIntegrationTest.kt

            val script = withBuildScript("buildscript { $boom }")
    
            assertFailingBuildOutputOf("help") {
                """
                * Where:
                Build file '${script.canonicalPath}' line: 1
                """
            }
        }
    
        @Test
        fun `location of exception thrown from plugins block is reported`() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListenerTest.groovy

            0 * spec.lineInFileLocation("SomeFile.java", 1)
            // ... but the line and column location should be
            1 * spec.lineInFileLocation("SomeFile.java", 1, 1)
            0 * spec.lineInFileLocation(_, _, _, _)
            0 * spec.offsetInFileLocation(_, _, _, _)
        }
    
        def "when only start defined, no offset or slice location is reported"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:58:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. VULNERABILITY_REPORT.md

    resolve and fix a reported vulnerability.
    
    ## Vulnerability Management Process
    
    The vulnerability management process requires that the vulnerability report
    contains the following information:
    
    - The project / component that contains the reported vulnerability.
    - A description of the vulnerability. In particular, the type of the
       reported vulnerability and how it might be exploited. Alternatively,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingChangesRule.java

            JApiCompatibilityChange.METHOD_REMOVED_IN_SUPERCLASS, // the removal of the method will be reported
            JApiCompatibilityChange.INTERFACE_REMOVED,            // the removed methods will be reported
            JApiCompatibilityChange.INTERFACE_ADDED               // the added methods will be reported
        );
    
        public BinaryBreakingChangesRule(Map<String, Object> params) {
            super(params);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportBase.java

        }
    
        /**
         * Source sets that coverage should be reported for.
         */
        @IgnoreEmptyDirectories
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        public ConfigurableFileCollection getSourceDirectories() {
            return sourceDirectories;
        }
    
        /**
         * Source sets that coverage should be reported for.
         */
        @Classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRuleTest.groovy

        }
    
        def "#member change should not be reported"() {
            expect:
            noViolation(rule)
    
            where:
            member << [Mock(JApiMethod), Mock(JApiField), Mock(JApiImplementedInterface), Mock(JApiConstructor)]
        }
    
        def "nothing should be reported if no changes"() {
            expect:
            noViolation(rule)
        }
    
        def "nothing should be reported if new interface is neither internal nor incubating"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/error_test.go

    //
    // If the line comment form is used, the reported error's line must
    // match the line of the error comment.
    //
    // If the regular comment form is used, the reported error's position
    // must match the position of the token immediately following the
    // error comment. Thus, /* ERROR ... */ comments should appear
    // immediately before the position where the error is reported.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/PluginsDemo.kt

    }
    
    
    class Tests {
        @Test
        fun `unit assigned to val is reported as an error`() {
            val result = schema.resolve("val x = plugins { }")
            assertTrue { result.errors.single().errorReason == ErrorReason.UnitAssignment }
        }
    
        @Test
        fun `unit assigned to property is reported as an error`() {
            val result = schema.resolve("plugins = plugins { }")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            when: "the file system entry used in configuration does not exist"
            assert !accessedFile.exists()
            configurationCacheRunLenient()
    
            then: "the file system entry is reported as an input"
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result) {
                withInput("$location: file system entry '$testFileName'")
                ignoringUnexpectedInputs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParserFactoryTest.groovy

            then:
            capability.group == 'foo'
            capability.name == 'bar'
            capability.version == null
        }
    
        def "invalid string notation #notation is reported for strict parser"() {
            when:
            strictParser.parseNotation(notation)
    
            then:
            InvalidUserDataException ex = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top