Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for errorsFor (0.1 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            failureDescriptionStartsWith("Execution failed for task ':compileJava'.")
            failureHasCause("Toolchain from `${errorFor}` property on `ForkOptions` does not match toolchain from `javaCompiler` property")
    
            where:
            when                                  | tool    | javaHome  | executable | errorFor
            "java home disagrees with executable" | null    | "other"   | "current"  | "executable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	}
    
    	a = nil
    	v = ValueOf(a)
    	if v.Cap() != cap(a) {
    		t.Errorf("Cap = %d want %d", v.Cap(), cap(a))
    	}
    
    	getError := func(f func()) (errorStr string) {
    		defer func() {
    			e := recover()
    			if str, ok := e.(string); ok {
    				errorStr = str
    			}
    		}()
    		f()
    		return
    	}
    	e := getError(func() {
    		var ptr *int
    		ValueOf(ptr).Cap()
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top