Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,182 for Reports (0.13 sec)

  1. src/cmd/compile/internal/types/alg.go

    func AlgType(t *Type) AlgKind {
    	CalcSize(t)
    	return t.alg
    }
    
    // TypeHasNoAlg reports whether t does not have any associated hash/eq
    // algorithms because t, or some component of t, is marked Noalg.
    func TypeHasNoAlg(t *Type) bool {
    	return AlgType(t) == ANOALG
    }
    
    // IsComparable reports whether t is a comparable type.
    func IsComparable(t *Type) bool {
    	a := AlgType(t)
    	return a != ANOEQ && a != ANOALG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':resolvableConfigurations'
            reportsCompleteAbsenceOfResolvableConfigurations()
        }
    
        def "if only consumable configurations present, task reports complete absence"() {
            given:
            buildFile << """
                configurations.create("custom") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/DeclarativeDslProjectSettingsIntegrationSpec.groovy

            when:
            run(":help")
    
            then:
            def schemaFile = file(".gradle/declarative-schema/settings.dcl.schema")
            schemaFile.isFile() && schemaFile.text != ""
        }
    
        def 'reports #kind errors in settings'() {
            given:
            file("settings.gradle.dcl") << """
                rootProject.name = "test"
                $code
            """
    
            when:
            def failure = fails(":help")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:21:50 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

            styledTextOutputFactory.create(_) >> outputProbe
    
            task = project.tasks.create("test", TestShowToolchainsTask.class, javaInstallationRegistry, styledTextOutputFactory, toolchainConfiguration)
        }
    
        def "reports toolchains in right order"() {
            given:
            defineJdks(
                jdk("14", "+2", "14"),
                jdk("15-ea", "+2", "15"),
                jdk("9", "+2", "15"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    ==== Disable reports
    
    Gradle automatically creates test reports regardless of whether you want to look at them.
    That report generation slows down the overall build. You may not need reports if:
    
    * you only care if the tests succeeded (rather than why)
    * you use build scans, which provide more information than a local report
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

                }
            }
        }
    
        def "does not report project configuration progress events when PROJECT_CONFIGURATION operations are not requested"() {
            when:
            runBuild("tasks", EnumSet.complementOf(EnumSet.of(OperationType.PROJECT_CONFIGURATION)))
    
            then:
            !events.operations.any { it.projectConfiguration }
        }
    
        def "reports plugin configuration results for binary plugins"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java

            when(project.getGroupId()).thenReturn("org.apache.maven.plugins.overflow");
            when(project.getArtifactId()).thenReturn("maven-project-info-reports-plugin");
            when(project.getPackaging()).thenReturn("maven-plugin");
            when(project.getName()).thenReturn("Apache Maven Project Info Reports Plugin");
            when(project.getVersion()).thenReturn("3.0.0-SNAPSHOT");
            when(event.getProject()).thenReturn(project);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SpotBugsPluginSmokeTest.groovy

                    id 'com.github.spotbugs' version '${TestedVersions.spotbugs}'
                }
    
                ${mavenCentralRepository()}
    
                tasks.withType(SpotBugsTask) {
                    reports.create("html")
                }
    
                """.stripIndent()
    
            file('src/main/java/example/Application.java') << """
                package example;
    
                public class Application {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCleanupProgressMonitorTest.groovy

    class DefaultCleanupProgressMonitorTest extends Specification {
    
        def context = Mock(BuildOperationContext) {
        }
    
        @Subject def progressMonitor = new DefaultCleanupProgressMonitor(context)
    
        def "reports deleted and skipped"() {
            when:
            progressMonitor.incrementDeleted()
    
            then:
            1 * context.progress("1 entry deleted")
    
            when:
            progressMonitor.incrementSkipped()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. src/net/ipsock.go

    	ipv6Enabled           bool
    	ipv4MappedIPv6Enabled bool
    }
    
    var ipStackCaps ipStackCapabilities
    
    // supportsIPv4 reports whether the platform supports IPv4 networking
    // functionality.
    func supportsIPv4() bool {
    	ipStackCaps.Once.Do(ipStackCaps.probe)
    	return ipStackCaps.ipv4Enabled
    }
    
    // supportsIPv6 reports whether the platform supports IPv6 networking
    // functionality.
    func supportsIPv6() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top