Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 7,227 for failme (0.13 sec)

  1. cmd/import-boss/testdata/simple-fwd/neither/n1/file.go

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 25 bytes
    - Viewed (0)
  2. cmd/import-boss/testdata/simple-fwd/neither/n2/file.go

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 25 bytes
    - Viewed (0)
  3. cmd/import-boss/testdata/transitive/forbidden/file.go

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 39 bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src/one/ignore/bad.file

    Peter Niederwieser <******@****.***> 1329340464 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 25 bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

            expect:
            reporter.buildFinished(result(exception))
            output.value == """
    {failure}FAILURE: {normal}{failure}Build failed with an exception.{normal}
    
    * Where:
    $LOCATION line: 42
    
    * What went wrong:
    $MESSAGE
    {info}> {normal}$FAILURE
    
    * Try:
    $INFO_OR_DEBUG
    $SCAN
    $GET_HELP
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableTypedResolveResultTest.groovy

            !result.successful
            result.failure == failure
        }
    
        def "rethrows resolution failure when result is queried"() {
            given:
            def failure = new RuntimeException()
            result.failed(failure)
    
            when:
            result.result
    
            then:
            def e = thrown(RuntimeException)
            e == failure
        }
    
        def "can mark as failed after resolved"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildContinueOnMultipleFailuresIntegrationTest.groovy

            assertTaskExecuted(':buildD', ':test')
            failure.assertHasFailures(5)
            failure.assertHasDescription("Execution failed for task ':buildB:test'.")
            failure.assertHasDescription("Execution failed for task ':buildC:sub1:test'.")
            failure.assertHasDescription("Execution failed for task ':buildC:sub2:test'.")
            failure.assertHasDescription("Execution failed for task ':buildC:sub3:test'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:27 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        if (failed(input_i8_to_f32_convert_op)) return failure();
    
        if (!IsI8ToF32Cast(*input_i8_to_f32_convert_op)) {
          LLVM_DEBUG(llvm::dbgs() << "Failed to match input_i8_to_f32_convert_op. "
                                     "It should be a i8->f32 cast.\n");
          return failure();
        }
    
        if (failed(MatchFilter(op.getOperand(1)))) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskEventsErrorIntegrationTest.groovy

            }
        }
    """
            then:
            fails('test')
            failure.assertHasDescription("Execution failed for task ':test'.")
                    .assertHasCause("afterTask failure")
                    .assertHasCause("task action failure")
                    .assertHasFileName("Build file '${buildFile}'")
                    .assertHasLineNumber(7)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 03 03:20:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/build/ExecutionResultTest.groovy

            result.failures.empty
            result.rethrow()
        }
    
        def "can query failed result"() {
            def failure = new RuntimeException()
            def result = ExecutionResult.failed(failure)
    
            expect:
            result.failures == [failure]
            result.failure == failure
            result.failureOrNull == failure
    
            when:
            result.valueOrRethrow
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:42 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top