Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 665 for Reports (0.24 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskOriginCrossVersionSpec.groovy

    import org.gradle.util.GradleVersion
    
    @TargetGradleVersion('>=5.1')
    class TaskOriginCrossVersionSpec extends ToolingApiSpecification {
    
        def events = ProgressEvents.create()
    
        def "reports task origin for script plugins"() {
            given:
            file("script.gradle") << """
                task b { dependsOn('a') }
            """
            buildFile << """
                apply from: 'script.gradle'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/internal/testenv/testenv.go

    var origEnv = os.Environ()
    
    // Builder reports the name of the builder running this test
    // (for example, "linux-amd64" or "windows-386-gce").
    // If the test is not running on the build infrastructure,
    // Builder returns the empty string.
    func Builder() string {
    	return os.Getenv("GO_BUILDER_NAME")
    }
    
    // HasGoBuild reports whether the current system can build programs with “go build”
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlockCheckTest.kt

    import org.gradle.internal.declarativedsl.plugins.PluginsTopLevelReceiver
    import org.junit.Assert.assertEquals
    import org.junit.Assert.assertTrue
    import org.junit.Test
    
    
    class SettingsBlockCheckTest {
        @Test
        fun `reports all duplicate plugins blocks`() {
            val result = pluginsSchema.runChecks(
                """
                plugins { }
                plugins { }
                rootProject.name = "foo"
                plugins { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginIntegrationTest.groovy

                        assert maxPriority2Violations == 0
                        assert maxPriority3Violations == 0
                        assert reports.enabled*.name == ["html"]
                        assert reports.html.outputLocation.asFile.get() == project.file("build/reports/codenarc/${sourceSet.name}.html")
                        assert ignoreFailures == false
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

            aggregatedTestResults.assertTestClassesExecuted('application.AdderTest', 'direct.MultiplierTest')
        }
    
        def 'test verification failure prevents creation of aggregated report'() {
            given:file("application/build.gradle") << """
                apply plugin: 'org.gradle.test-report-aggregation'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    }
    
    // IsType reports whether the corresponding expression specifies a type.
    func (tv TypeAndValue) IsType() bool {
    	return tv.mode == typexpr
    }
    
    // IsBuiltin reports whether the corresponding expression denotes
    // a (possibly parenthesized) built-in function.
    func (tv TypeAndValue) IsBuiltin() bool {
    	return tv.mode == builtin
    }
    
    // IsValue reports whether the corresponding expression is a value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

        def setup() {
            expectReindentedValidationMessage()
            executer.beforeExecute {
                withStacktraceEnabled()
            }
        }
    
        def "reports task action execution fails with error"() {
            buildFile << """
                task('do-stuff').doFirst {
                    throw new ArithmeticException('broken')
                }
            """
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskDependenciesCrossVersionSpec.groovy

    import org.gradle.tooling.model.UnsupportedMethodException
    
    @TargetGradleVersion('>=5.1')
    class TaskDependenciesCrossVersionSpec extends ToolingApiSpecification {
    
        def events = ProgressEvents.create()
    
        def "reports task dependencies when target version supports it"() {
            given:
            buildFile << """
                task a { enabled = false }
                task b { dependsOn(a) }
                task c { dependsOn(b) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

            assertSingleEditorReport()
            reports.single().let { report ->
                assertThat(report.severity, equalTo(severity))
                assertThat(report.position, nullValue())
                assertThat(report.message, equalTo(message))
            }
        }
    
        fun assertSingleLineWarningReport(message: String, line: Int) {
            assertSingleEditorReport()
            reports.single().let { report ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/internal/analysisutil/util.go

    			min = offset
    		} else {
    			max = offset
    		}
    	}
    }
    
    // Imports returns true if path is imported by pkg.
    func Imports(pkg *types.Package, path string) bool {
    	for _, imp := range pkg.Imports() {
    		if imp.Path() == path {
    			return true
    		}
    	}
    	return false
    }
    
    // IsNamedType reports whether t is the named type with the given package path
    // and one of the given names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top