Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 798 for testit (0.32 sec)

  1. 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)
  2. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerCacheIntegrationTest.groovy

     */
    
    package org.gradle.testkit.runner
    
    import org.gradle.initialization.StartParameterBuildOptions
    import org.gradle.testkit.runner.fixtures.NonCrossVersion
    import org.gradle.util.internal.TextUtil
    
    import static org.gradle.testkit.runner.TaskOutcome.FAILED
    import static org.gradle.testkit.runner.TaskOutcome.FROM_CACHE
    import static org.gradle.testkit.runner.TaskOutcome.SKIPPED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleVsMavenBuildExperimentRunner.java

        }
    
        @Override
        public void doRun(String testId, BuildExperimentSpec experiment, MeasuredOperationList results) {
            if (experiment instanceof MavenBuildExperimentSpec) {
                mavenRunner.doRun(testId, experiment, results);
            } else {
                gradleRunner.doRun(testId, experiment, results);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/log/slog/internal/benchmarks/benchmarks_test.go

    							slog.Duration("duration", testDuration),
    							slog.Time("time", testTime),
    							slog.Any("error", testError),
    							slog.String("string", testString),
    							slog.Int("status", testInt),
    							slog.Duration("duration", testDuration),
    							slog.Time("time", testTime),
    							slog.Any("error", testError),
    							slog.String("string", testString),
    							slog.Int("status", testInt),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:32:54 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/integTest/groovy/org/gradle/performance/fixture/IdProviderCrossBuildPerformanceTest.groovy

        def "if no test id is set, the test method name is used"() {
            when:
            runner.testGroup = "group"
    
            then:
            runner.testId == "if no test id is set, the test method name is used"
        }
    
        def "if test id is set, it is not replaced"() {
            when:
            runner.testGroup = "group"
            runner.testId = "Another id"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/integTest/groovy/org/gradle/performance/fixture/IdProviderCrossVersionPerformanceTest.groovy

        def "if no test id is set, the test method name is used"() {
            when:
            runner.testProject = "test"
    
            then:
            runner.testId == "if no test id is set, the test method name is used"
        }
    
        def "if test id is set, it is not replaced"() {
            when:
            runner.testProject = "test"
            runner.testId = "Another id"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/integTest/groovy/org/gradle/performance/fixture/IdProviderGradleVsMavenPerformanceTest.groovy

        def "if no test id is set, the test method name is used"() {
            when:
            runner.testGroup = "group"
    
            then:
            runner.testId == "if no test id is set, the test method name is used"
        }
    
        def "if test id is set, it is not replaced"() {
            when:
            runner.testGroup = "group"
            runner.testId = "Another id"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

            }
    
            public void onOutput(long classId, long testId, TestOutputEvent outputEvent) {
                boolean stdout = outputEvent.getDestination() == TestOutputEvent.Destination.StdOut;
                mark(classId, testId, stdout);
    
                output.writeBoolean(stdout);
                output.writeSmallLong(classId);
                output.writeSmallLong(testId);
    
                byte[] bytes;
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTestKitSetupIntegrationTest.groovy

                    def testRuntimeClasspath = project.sourceSets.test.runtimeClasspath
                    def testKit = dependencies.gradleTestKit().files
                    doLast {
                        assert testRuntimeClasspath.files.containsAll(testKit.files)
                    }
                }
            """
            expect:
            succeeds("assertHasTestKit")
            succeeds("test")
            result.assertTaskExecuted(":pluginUnderTestMetadata")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/FeatureCheckBuildResultTest.groovy

     */
    
    package org.gradle.testkit.runner.internal
    
    import org.gradle.testkit.runner.BuildTask
    import org.gradle.testkit.runner.UnsupportedFeatureException
    import org.gradle.testkit.runner.internal.feature.TestKitFeature
    import org.gradle.util.GradleVersion
    import spock.lang.Specification
    
    import static org.gradle.testkit.runner.TaskOutcome.FAILED
    import static org.gradle.testkit.runner.TaskOutcome.SUCCESS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top