Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 798 for testit (0.14 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/TestScenarioSelector.java

    /**
     * Determines whether a specific scenario within a performance test should run.
     *
     * This is used as a workaround for not being able to add a test filter for unrolled Spock tests.
     */
    public class TestScenarioSelector {
        private static final String TEST_PROJECT_PROPERTY_NAME = "org.gradle.performance.testProject";
    
        public static boolean shouldRun(String testId) {
            if (testId.contains(";")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

     */
    
    package org.gradle.api.internal.tasks.testing.processors;
    
    import org.gradle.api.internal.tasks.testing.TestCompleteEvent;
    import org.gradle.api.internal.tasks.testing.TestDescriptorInternal;
    import org.gradle.api.internal.tasks.testing.TestResultProcessor;
    import org.gradle.api.internal.tasks.testing.TestStartEvent;
    import org.gradle.api.internal.tasks.testing.redirector.StandardOutputRedirector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/BuildableTestResultsProvider.groovy

        @Override
        boolean hasOutput(long classId, long testId, TestOutputEvent.Destination destination) {
            testClasses[classId]?.outputEvents?.find { it.testId == testId && it.testOutputEvent.destination == destination }
        }
    
        static class BuildableOutputEvent {
            long testId
            TestOutputEvent testOutputEvent
    
            BuildableOutputEvent(long testId, TestOutputEvent testOutputEvent) {
                this.testId = testId
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerDefaultTestKitDirIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.enduser
    
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.testkit.runner.BaseGradleRunnerIntegrationTest
    import org.gradle.testkit.runner.fixtures.NonCrossVersion
    import org.gradle.util.UsesNativeServices
    import org.gradle.util.internal.TextUtil
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/runtime/pprof/testdata/test32

    Russ Cox <******@****.***> 1488850797 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 528 bytes
    - Viewed (0)
  6. src/runtime/pprof/testdata/test64

    Russ Cox <******@****.***> 1488850797 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 760 bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/ToolingApiGradleExecutor.java

    import java.util.concurrent.atomic.AtomicBoolean;
    
    import static org.gradle.testkit.runner.TaskOutcome.FAILED;
    import static org.gradle.testkit.runner.TaskOutcome.FROM_CACHE;
    import static org.gradle.testkit.runner.TaskOutcome.NO_SOURCE;
    import static org.gradle.testkit.runner.TaskOutcome.SKIPPED;
    import static org.gradle.testkit.runner.TaskOutcome.SUCCESS;
    import static org.gradle.testkit.runner.TaskOutcome.UP_TO_DATE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/accesslogs_test.go

    		clientCount := logCount(t, from, testID)
    		serverCount := logCount(t, to, testID)
    
    		from.CallOrFail(t, echo.CallOptions{
    			To: to,
    			Port: echo.Port{
    				Name: "http",
    			},
    			HTTP: echo.HTTP{
    				Path: "/" + testID,
    			},
    		})
    
    		return retry.UntilSuccess(func() error {
    			clientDeltaCount := logCount(t, from, testID) - clientCount
    			if clientDeltaCount > 0 != exceptClientLog {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. test/ken/shift.go

    	testi( int(1234) >>    5, 0,1,1);
    
    	testi(int(-1234) <<    0, 1,0,0);
    	testi(int(-1234) >>    0, 1,0,1);
    	testi(int(-1234) <<    5, 1,1,0);
    	testi(int(-1234) >>    5, 1,1,1);
    
    	testu(uint(5678) <<    0, 2,0,0);
    	testu(uint(5678) >>    0, 2,0,1);
    	testu(uint(5678) <<    5, 2,1,0);
    	testu(uint(5678) >>    5, 2,1,1);
    
    	/*
    	 * test variable evaluations
    	 */
    	pass = "var";	// variable part
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirector.java

            redirector.stop();
        }
    
        public void setOutputOwner(Object testId) {
            assert testId != null;
            if (System.out != null) {
                System.out.flush();
            }
            if (System.err != null) {
                System.err.flush();
            }
            outForwarder.outputOwner = testId;
            errForwarder.outputOwner = testId;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top