Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,820 for causing (0.12 sec)

  1. 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)
  2. src/cmd/cgo/internal/testsanitizers/testdata/msan6.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // A C function returning a value on the Go stack could leave the Go
    // stack marked as uninitialized, potentially causing a later error
    // when the stack is used for something else. Issue 26209.
    
    /*
    #cgo LDFLAGS: -fsanitize=memory
    #cgo CPPFLAGS: -fsanitize=memory
    
    #include <stdint.h>
    #include <stdlib.h>
    #include <string.h>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K 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. src/internal/types/testdata/check/issues1.go

    // If we have a receiver of pointer to type parameter type (below: *T)
    // we don't have any methods, like for interfaces.
    type C[T any] interface {
        m()
    }
    
    // using type bound C
    func _[T C[T]](x *T) {
    	x.m /* ERROR "x.m undefined" */ ()
    }
    
    // using an interface literal as bound
    func _[T interface{ m() }](x *T) {
    	x.m /* ERROR "x.m undefined" */ ()
    }
    
    func f2[_ interface{ m1(); m2() }]() {}
    
    type T struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:56:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

                val source: Program.Plugins? = null
            ) : StageTransition, Instruction()
    
            /**
             * An instruction that marks the transition from stage 1 to stage 2 by causing the
             * target scope to be closed thus making the resolved classpath available to stage 2.
             *
             * A valid [Static] program must contain one and only one [StageTransition] instruction.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top