Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,382 for causing (0.17 sec)

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

            and: "multiple sub-projects"
            settingsFile << """
                include 'foo:foo'
                include 'bar:bar'
            """
    
            // Make the classpath of :foo differ from :bar's
            // thus causing :foo:foo and :bar:bar to have separate ClassLoaders.
            File someLib = file('lib/someLib.jar')
            jarWithClasses(someLib, SomeClass: 'class SomeClass {}')
    
            file("foo/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/extensibility/unit-test-fixtures/src/integTest/groovy/org/gradle/testfixtures/ProjectBuilderIntegrationTest.groovy

            file("settings.gradle") << """
                rootProject.name = 'test'
            """
        }
    
        def cleanup() {
            // unstopped instances of ProjectBuilderImpl projects leak build operations
            // causing other integration tests to sporadically fail.
            if (project != null) {
                ProjectBuilderImpl.stop(project)
            }
        }
    
        def "can resolve remote dependencies"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryDisabler.java

         */
        Optional<Throwable> getDisabledReason(String repositoryId);
    
        /**
         * Attempts to disable the repository with the given id, recording the exception causing it to be disabled, if
         * that exception is deemed critical.
         *
         * @param repositoryId the id of the repository to disable
         * @param throwable the reason why the repository is being disabled
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:29:11 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsReader.java

     *
     */
    public interface SettingsReader {
    
        /**
         * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code
         * true}. If {@code false}, unknown elements will be ignored instead of causing a failure.
         */
        String IS_STRICT = "org.apache.maven.settings.io.isStrict";
    
        /**
         * Reads the settings from the specified file.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/JUnitXmlReport.java

         * and where distinguishing such passed-on-retry outcomes is important.
         * This is the case for the Jenkins CI server and its Flaky Test Handler plugin.
         *
         * This value defaults to {@code false}, causing each test execution to be a discrete {@code <testcase>}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/runtime/crash_test.go

    	}
    }
    
    func TestCrashHandler(t *testing.T) {
    	testCrashHandler(t, false)
    }
    
    func testDeadlock(t *testing.T, name string) {
    	// External linking brings in cgo, causing deadlock detection not working.
    	testenv.MustInternalLink(t, false)
    
    	output := runTestProg(t, "testprog", name)
    	want := "fatal error: all goroutines are asleep - deadlock!\n"
    	if !strings.HasPrefix(output, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/AbstractJVMVersionTooNewFailureDescriber.java

    public abstract class AbstractJVMVersionTooNewFailureDescriber extends AbstractResolutionFailureDescriber<IncompatibleGraphVariantFailure> {
        /**
         * Returns the JVM version used in the comparison against the library that is causing the failure.
         *
         * @param failure the failure
         * @return the JVM version that is incompatible
         */
        protected abstract JavaVersion getJVMVersion(IncompatibleGraphVariantFailure failure);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/get_issue53955.txt

    # Regression test for https://go.dev/issue/53955.
    # New remote tags were erroneously added to the local clone of a repo
    # only *after* extracting version information for a locally-cached commit,
    # causing the version information to have incomplete Tags and Version fields.
    
    [short] skip 'constructs a local git repo'
    [!git] skip
    [!net:github.com] skip 'does not actually use github.com because of insteadOf, but silence network check just in case'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ScriptClassloadingIntegrationTest.groovy

        enum SharedScriptFileType {
            SHARED_BUILDFILE,
            SHARED_SCRIPTPLUGIN
        }
    
        @Issue(['GRADLE-3526', 'GRADLE-3553'])
        @LeaksFileHandles
        def 'apply the same script file causing different buildscript classpaths in different projects #sharedScriptFileType'(SharedScriptFileType sharedScriptFileType) {
            given:
            def subprojectNames = ['project1', 'project2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataReader.java

     *
     */
    public interface MetadataReader {
    
        /**
         * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code
         * true}. If {@code false}, unknown elements will be ignored instead of causing a failure.
         */
        String IS_STRICT = "org.apache.maven.artifact.repository.metadata.io.isStrict";
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top