Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,880 for failf (0.05 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForConfigurationCache.java

             */
            DO_NOT_SKIP,
    
            /**
             * Use this reason on unrolled tests in super classes that fail on some subclasses.
             * Spock doesn't allow to override test methods and annotate them.
             */
            UNROLLED_FAILS_IN_SUBCLASS,
    
            /**
             * Use this reason on tests that fail <code>:verifyTestFilesCleanup</code> with configuration cache.
             */
            FAILS_TO_CLEANUP,
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3RepoErrorsIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "fails when providing PasswordCredentials with decent error"() {
            setup:
            buildFile << """
    repositories {
        maven {
            url "${mavenS3Repo.uri}"
            credentials {
                username "someUserName"
                password "someSecret"
            }
        }
    }
    """
    
            when:
            fails 'retrieve'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/NameValidationIntegrationTest.groovy

            when:
            fails 'this/is/a/hierarchy'
    
            then:
            assertFailureContainsForbiddenCharacterMessage('task name',"this/is/a/hierarchy")
        }
    
        def "configuration names must not contain forbidden characters"() {
            given:
            buildFile << "configurations { 'some/really.\\\\strange name:' {} }"
    
            when:
            fails 'help'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4RerunPreviousFailedTestIntegrationTest.groovy

        }
    
        def 'subsequent execution runs failed test first'() {
            given:
            letTestFail(indexOfTestToFail)
    
            when:
            fails('test', '--info')
    
            then:
            testFailed(indexOfTestToFail)
    
            when:
            fails('test', '--info')
    
            then:
            failedTestAreRerunFirst(indexOfTestToFail)
    
            when:
            letTestFail(0)
            succeeds('test')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

        }
        assertTrue(millisElapsedSince(startTime) >= timeoutMillis);
      }
    
      /** Fails with message "should throw exception". */
      public void shouldThrow() {
        fail("Should throw exception");
      }
    
      /** Fails with message "should throw " + exceptionName. */
      public void shouldThrow(String exceptionName) {
        fail("Should throw " + exceptionName);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildActionExecuter.java

             *
             * <p>Action will be executed after projects are loaded and Gradle will configure projects as necessary for the models requested.
             *
             * <p>If the operation fails, build will fail with the appropriate exception. The handler won't be notified in case of failure.
             *
             * @param buildAction The action to run in the specified build phase.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:31:25 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. test/fixedbugs/bug246.go

    package main
    
    import "unsafe"
    
    func main() {
    	// works
    	addr := uintptr(0x234)
    	x1 := (*int)(unsafe.Pointer(addr))
    
    	// fails
    	x2 := (*int)(unsafe.Pointer(uintptr(0x234)))
    
    	if x1 != x2 {
    		println("mismatch", x1, x2)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 407 bytes
    - Viewed (0)
  8. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/ivy/IvySftpRepoErrorsIntegrationTest.groovy

                }
            """
    
            def module = ivySftpRepo.module('org.group.name', 'projectA', '1.2')
    
            when:
            module.ivy.expectMetadataRetrieve()
    
            then:
            fails 'retrieve'
            assertTaskFailureDescription(":retrieve")
            failure.assertHasCause("Could not resolve all files for configuration ':compile'.")
                .assertHasCause("""Could not find org.group.name:projectA:1.2.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-fail-first-gen-first.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 256 bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java

         *
         * The standard {@link Class#cast(Object)} method produces unsatisfactory error messages on some platforms
         * when it fails. All this method does is provide a better, consistent, error message.
         *
         * This should be used whenever there is a chance the cast could fail. If in doubt, use this.
         *
         * @param outputType The type to cast the input to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top