Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,496 for Reports (0.1 sec)

  1. src/internal/syscall/windows/sysdll/sysdll.go

    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    // Package sysdll is an internal leaf package that records and reports
    // which Windows DLL names are used by Go itself. These DLLs are then
    // only loaded from the System32 directory. See Issue 14959.
    package sysdll
    
    // IsSystemDLL reports whether the named dll key (a base name, like
    // "foo.dll") is a system DLL which should only be loaded from the
    // Windows SYSTEM32 directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 22:38:00 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/commons/src/main/groovy/com.example.jacoco.gradle

    plugins {
        id('java')
        id('jacoco')
    }
    
    // Do not generate reports for individual projects
    tasks.jacocoTestReport.configure {
        enabled = false
    }
    
    // Share sources folder with other projects for aggregated JaCoCo reports
    configurations.create('transitiveSourcesElements') {
        visible = false
        canBeResolved = false
        extendsFrom(configurations.implementation)
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            then:
            def ex = thrown IOException
            ex.message == "Unable to delete file '$target'"
            ex.suppressed.collect { it.message } == ["ROOT CAUSE"]
        }
    
        def "reports failed to delete child files and reports a reasonable number of retries after failure to delete directory"() {
    
            given:
            def targetDir = tmpDir.createDir("target")
            def deletable = targetDir.createFile("delete.yes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.api.reporting.GenerateBuildDashboard.xml

                </thead>
                <tr>
                    <td>reports</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>reports</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/gover/mod.go

    		}
    		return fi < fj
    	})
    }
    
    // ModIsValid reports whether vers is a valid version syntax for the module with the given path.
    func ModIsValid(path, vers string) bool {
    	if IsToolchain(path) {
    		if path == "toolchain" {
    			return IsValid(FromToolchain(vers))
    		}
    		return IsValid(vers)
    	}
    	return semver.IsValid(vers)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskEventsErrorIntegrationTest.groovy

    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    
    
    @UnsupportedWithConfigurationCache(because = "uses task event listener")
    class TaskEventsErrorIntegrationTest extends AbstractIntegrationSpec {
        def "reports task as failed when beforeTask closure fails"() {
            when:
            buildFile << """
        gradle.taskGraph.beforeTask {
            throw new RuntimeException("beforeTask failure")
        }
        task test
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 03 03:20:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

            assertHasNoProblems()
        }
    
        /**
         * Asserts that the cache entry was written with no problems.
         *
         * Also asserts that the appropriate console logging, reports and build operations are generated.
         */
        void assertStateStored(@DelegatesTo(StateStoreDetails) Closure closure = {}) {
            def details = new StateStoreDetails()
            closure.delegate = details
            closure()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    		}
    	}
    
    	return false
    }
    
    // hasBasicType reports whether x's type is a types.Basic with the given kind.
    func hasBasicType(info *types.Info, x ast.Expr, kind types.BasicKind) bool {
    	t := info.Types[x].Type
    	if t != nil {
    		t = t.Underlying()
    	}
    	b, ok := t.(*types.Basic)
    	return ok && b.Kind() == kind
    }
    
    // isReflectHeader reports whether t is reflect.SliceHeader or reflect.StringHeader.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TransformProgressEventCrossVersionSpec.groovy

            }
        }
    
        def "does not report transform progress events when TRANSFORM operations are not requested"() {
            given:
            withFileSizerTransform()
    
            when:
            runBuild("resolve", EnumSet.complementOf(EnumSet.of(OperationType.TRANSFORM)))
    
            then:
            events.operations.findAll { it.transform }.empty
        }
    
        def "reports dependencies of transform operations"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

            buildFile << """
                task verifyTestResultConventions {
                    def junitXmlOutputLocation = provider { ${testTaskName}.reports.junitXml.outputLocation }
                    def htmlOutputLocation = provider { ${testTaskName}.reports.html.outputLocation }
                    def binaryResultsDirectory = provider { ${testTaskName}.binaryResultsDirectory }
                    def buildDir = layout.buildDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top