Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,496 for Reports (0.12 sec)

  1. 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)
  2. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/RelativePathParserTest.groovy

            def parser = new RelativePathParser("tree-reports.html.destination/")
            boolean outsideOfRoot
    
            when:
            outsideOfRoot = parser.nextPath("tree-reports.html.destination/classes/", true, exitHandler)
            then:
            0 * exitHandler.run()
            !outsideOfRoot
    
            when:
            outsideOfRoot = parser.nextPath("tree-reports.html.destination/classes/FooTest.html", false, exitHandler)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenRemoteResolveIntegrationTest.groovy

    class IvyBrokenRemoteResolveIntegrationTest extends AbstractHttpDependencyResolutionTest {
        public final static String REPOSITORY_HINT = repositoryHint("ivy.xml")
    
        @ToBeFixedForConfigurationCache
        void "reports and recovers from missing module"() {
            given:
            def repo = ivyHttpRepo("repo1")
            def module = repo.module("group", "projectA", "1.2").publish()
    
            buildFile << """
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

            expect:
            succeeds()
        }
    
        def "reports read unknown property from configure closure"() {
            buildFile << """
    tasks.help {
        println unknown
    }
    """
    
            expect:
            fails()
            failure.assertHasCause("Could not get unknown property 'unknown' for task ':help' of type org.gradle.configuration.Help.")
        }
    
        def "reports set unknown property from configure closure"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/junit-xml-results/groovy/build.gradle

    }
    
    // tag::configure-location-task[]
    test {
        reports {
            junitXml.outputLocation = layout.buildDirectory.dir("test-junit-xml")
        }
    }
    // end::configure-location-task[]
    
    // tag::configure-location-convention[]
    java.testResultsDir = layout.buildDirectory.dir("junit-xml")
    // end::configure-location-convention[]
    
    // tag::configure-content[]
    test {
        reports {
            junitXml {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:56 UTC 2024
    - 786 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    // and advances. It reports whether the read was successful and resulted in a
    // value that can be represented in an int64.
    func (s *String) ReadASN1Int64WithTag(out *int64, tag asn1.Tag) bool {
    	var bytes String
    	return s.ReadASN1(&bytes, tag) && checkASN1Integer(bytes) && asn1Signed(out, bytes)
    }
    
    // ReadASN1Enum decodes an ASN.1 ENUMERATION into out and advances. It reports
    // whether the read was successful.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. 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)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

    /**
     * When run from a Continuous Integration environment, we only want to archive a subset of reports, mostly for
     * failing tasks only, to not use up unnecessary disk space on Team City. This also improves the performance of
     * artifact publishing by reducing the artifacts and packaging reports that consist of multiple files.
     *
     * Reducing the number of reports also makes it easier to find the important ones when analysing a failed build in
     * Team City.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 06:57:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

            reports.filter { it.isFile && it.toPath().startsWith(projectBuildDirPath) }
                .map { projectBuildDirPath.relativize(it.toPath()).toString() to it }
                .apply { zip(rootBuildDir.resolve("report$projectPathName.zip"), this) }
    
            reports.filter { it.isFile && !it.toPath().startsWith(projectBuildDirPath) }
                .forEach { report ->
                    fileSystemOperations.copy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. 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)
Back to top