Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for Reports (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileInputsIntegrationTest.groovy

    class UndeclaredFileInputsIntegrationTest extends AbstractConfigurationCacheIntegrationTest implements GroovyPluginImplementation {
        @ToBeImplemented("reporting multiple consumers per input is not implemented yet")
        def "reports multiple consumers of a single file in #accessKind access"() {
            def configurationCache = newConfigurationCacheFixture()
    
            UndeclaredFileAccess access = inputRead(testDirectory)
            applyBuildLogic(access)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

    class ConfigurationCacheIncompatibleTasksIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        ConfigurationCacheFixture fixture = new ConfigurationCacheFixture(this)
    
        def "reports incompatible task serialization error and discards cache entry when task is scheduled"() {
            given:
            withBrokenSerializableType()
            addTasksWithProblems('new BrokenSerializable()')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildProblemReportingIntegrationTest.groovy

    package org.gradle.internal.cc.impl
    
    import org.gradle.api.Plugin
    import org.gradle.api.Project
    
    class ConfigurationCacheCompositeBuildProblemReportingIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def "reports task problems in tasks from included build that run in main build"() {
            given:
            settingsFile << """
                includeBuild 'inc'
            """
            file("inc/settings.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

        }
    
        // This documents current behaviour, rather than desired behaviour. The contents of the artifact does not affect the contents of the task graph and so should not be treated as an input
        def "reports changes to artifact in file repository"() {
            repo.setup(this)
            taskTypeLogsInputFileCollectionContent()
            buildFile << """
                configurations {
                    resolve1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskExecutionIntegrationTest.groovy

            }
        }
    
        @Issue('https://github.com/gradle/gradle/issues/22522')
        def "reports problem for extra property accessed at execution time"() {
            given:
            buildKotlinFile '''
                tasks.register("report") {
                    extra["outputFile"] = file("$buildDir/output.txt")
                    outputs.files(extra["outputFile"])
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        }
    
        /**
         * @return <code>true</code> if the Mojo needs reports to run, <code>false</code> otherwise.
         */
        public boolean isRequiresReports() {
            return requiresReports;
        }
    
        /**
         * @param requiresReports <code>true</code> if the Mojo needs reports to run, <code>false</code> otherwise.
         */
        public void setRequiresReports(boolean requiresReports) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. pom.xml

                  </groups>
                </configuration>
                <reportSets>
                  <reportSet>
                    <id>aggregate</id>
                    <reports>
                      <report>aggregate</report>
                    </reports>
                    <inherited>false</inherited>
                  </reportSet>
                </reportSets>
              </plugin>
              <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

                problemsWithStackTraceCount = 0
            }
        }
    
        def "reports problems in buildSrc tasks that run in main build"() {
            file("buildSrc/build.gradle") << """
                // These should not be reported, as these are run during configuration
                gradle.buildFinished { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            module.rootMetaData.verifyChecksums()
            module.rootMetaData.versions == ["2"]
    
            where:
            authScheme << [AuthScheme.BASIC, AuthScheme.DIGEST, AuthScheme.NTLM]
        }
    
        def "reports failure publishing with wrong credentials using #authScheme"() {
            given:
            PasswordCredentials credentials = new DefaultPasswordCredentials('wrong', 'wrong')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. internal/kms/config.go

    		} else {
    			s = env.Get(EnvKMSSecretKey, "")
    		}
    		return ParseSecretKey(s)
    	}
    }
    
    // IsPresent reports whether a KMS configuration is present.
    // It returns an error if multiple KMS configurations are
    // present or if one configuration is incomplete.
    func IsPresent() (bool, error) {
    	// isPresent reports whether at least one of the
    	// given env. variables is present.
    	isPresent := func(vars ...string) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top