Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testOperation (0.2 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/AbstractLongRunningOperationTest.groovy

            op.consumerOperationParameters.jvmArguments == ['-Xmx']
        }
    
        class TestOperation extends AbstractLongRunningOperation<TestOperation> {
            protected TestOperation(ConnectionParameters parameters) {
                super(parameters)
                operationParamsBuilder.entryPoint = "test"
            }
    
            @Override
            protected TestOperation getThis() {
                return this
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/operations/BuildOperationExecutorIntegrationTest.groovy

                            queue.add(new TestOperation(startedLatch))
                            queue.add(new TestOperation(startedLatch))
                            startedLatch.await()
                            throw new Exception("queue failure")
                        }
                    }
                }
    
                class TestOperation implements RunnableBuildOperation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 12:12:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi_test.go

    	scenarios := []struct {
    		s                     string
    		capitalizeFirstLetter bool
    		expectedResult        string
    	}{
    		{
    			s:                     "test_operation",
    			capitalizeFirstLetter: true,
    			expectedResult:        "Test_operation",
    		},
    		{
    			s:                     "test operation& test",
    			capitalizeFirstLetter: true,
    			expectedResult:        "TestOperationTest",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 29 06:38:01 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top