Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for test$call (0.13 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunction.ir.txt

                    $receiver: GET_VAR 'b: kotlin.String declared in <root>.test.call' type=kotlin.String origin=null
                    n: GET_VAR 'a: kotlin.Int declared in <root>.test.call' type=kotlin.Int origin=null
            VAR name:x type:kotlin.Int [val]
              CONST Int type=kotlin.Int value=2
            VAR name:y type:kotlin.String [val]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionContainingClassClosure.txt

        public final static method run(p0: Foo): void
    }
    
    public final class ContextKt
    
    public final class Foo {
        // source: 'context.kt'
        public method <init>(): void
        private final static method test$call(p0: Foo): void
        public final method test(): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 361 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.txt

        public final inner class kotlin/jvm/internal/Ref$IntRef
    }
    
    public final class ContextKt
    
    public final class Foo {
        // source: 'context.kt'
        public method <init>(): void
        private final static method test$call(p0: Foo, p1: java.lang.String, p2: kotlin.jvm.internal.Ref$IntRef, p3: int): void
        public final method test(p0: java.lang.String): void
        public final inner class kotlin/jvm/internal/Ref$IntRef
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 626 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.ir.txt

                BLOCK_BODY
                  CALL 'public final fun consume (obj: kotlin.Any): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
                    obj: GET_VAR 'a: kotlin.Int declared in <root>.Foo.test.call' type=kotlin.Int origin=null
                  CALL 'public final fun consume (obj: kotlin.Any): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. pkg/test/framework/features/README.md

    ## Labeling a Test
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. tests/integration/pilot/ingress_test.go

    				path         string
    				call         echo.CallOptions
    			}{
    				// Ensure we get a 200 initially
    				{
    					name:         "initial state",
    					ingressClass: "istio-test",
    					path:         "/update-test",
    					call: echo.CallOptions{
    						Port: echo.Port{
    							Protocol: protocol.HTTP,
    						},
    						HTTP: echo.HTTP{
    							Path:    "/update-test",
    							Headers: headers.New().WithHost("server").Build(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomTest.kt

            val tree = parseAsTopLevelBlock(
                """
                myFun {
                    a = "x"
                    a = b
                    b = f(a = "x")
                    b = f(a = "x") { test() }
                    call(x = { }) // TODO: right now, it is reported as an unsupported language feature FunctionDeclaration, report it in a more precise way?
                    multiLambda({ }, { })
                    1
                    a.b()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller_test.go

    		})
    		if err != nil {
    			t.Errorf("Test %q controller sync failed: %v", test.name, err)
    		}
    		logger.V(4).Info("controller synced, starting test")
    
    		// Call the tested function
    		err = test.test(ctrl, reactor.VolumeReactor, test)
    		if err != nil {
    			t.Errorf("Test %q initial test call failed: %v", test.name, err)
    		}
    		// Simulate a periodic resync, just in case some events arrived in a
    		// wrong order.
    		ctrl.resync(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. tests/tests_all.sh

    Cheese <******@****.***> 1675844949 +0800
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/swig/testdata/callback/main.go

    	default:
    		fatal("unknown test %q", os.Args[1])
    	case "Call":
    		testCall()
    	case "Callback":
    		testCallback()
    	}
    	println("OK")
    }
    
    func fatal(f string, args ...any) {
    	fmt.Fprintln(os.Stderr, fmt.Sprintf(f, args...))
    	os.Exit(1)
    }
    
    type GoCallback struct{}
    
    func (p *GoCallback) Run() string {
    	return "GoCallback.Run"
    }
    
    func testCall() {
    	c := NewCaller()
    	cb := NewCallback()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:07 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top