Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 467 for repeats (0.12 sec)

  1. 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)
  2. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

            def transitiveIntegTestResults = new HtmlTestExecutionResult(testDirectory.file('transitive'), 'build/reports/tests/integTest')
            transitiveIntegTestResults.assertTestClassesExecuted('transitive.ModTest')
    
            def applicationIntegTestResults = new HtmlTestExecutionResult(testDirectory.file('application'), 'build/reports/tests/integTest')
            applicationIntegTestResults.assertTestClassesExecuted('application.DivTest')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

    }}
    {{- range $dep, $replace := $deps }}
    {{- /* Complex logic to turn the string above into a null-safe traversal like ((.Values.global).certificates */}}
    {{- $res := tpl (print "{{" (repeat (split "." $dep | len) "(")  ".Values." (replace "." ")." $dep) ")}}") $}}
    {{- if not (eq $res "")}}
    WARNING: {{$dep|quote}} is deprecated; use {{$replace|quote}} instead.
    {{- end }}
    {{- end }}
    {{-
      $failDeps := dict
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiInvocationValidationIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated
    
    class IsolatedProjectsToolingApiInvocationValidationIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
        def "reports cross project access from build script when fetching custom tooling model"() {
            given:
            settingsFile << """
                include('a')
                include('b')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    }
    
    // Run generates and uploads reports
    func (u *uploader) Run() error {
    	if telemetry.DisabledOnPlatform {
    		return nil
    	}
    	todo := u.findWork()
    	ready, err := u.reports(&todo)
    	if err != nil {
    		u.logger.Printf("Error building reports: %v", err)
    		return fmt.Errorf("reports failed: %v", err)
    	}
    	u.logger.Printf("Uploading %d reports", len(ready))
    	for _, f := range ready {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

    import org.gradle.api.provider.Property
    import org.gradle.util.internal.ToBeImplemented
    import spock.lang.Issue
    
    class IsolatedProjectsAccessFromGroovyDslIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
        def "reports problem when build script uses #block block to apply plugins to another project"() {
            createDirs("a", "b")
            settingsFile << """
                include("a")
                include("b")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/predicates.go

    }
    
    // IsInterface reports whether t is an interface type.
    func IsInterface(t Type) bool {
    	_, ok := under(t).(*Interface)
    	return ok
    }
    
    // isNonTypeParamInterface reports whether t is an interface type but not a type parameter.
    func isNonTypeParamInterface(t Type) bool {
    	return !isTypeParam(t) && IsInterface(t)
    }
    
    // isTypeParam reports whether t is a type parameter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. 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)
Back to top