Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 916 for Tresults (0.89 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestResultSerializerTest.groovy

            readClass2.startTime == 5678
            readClass2.results.empty
        }
    
        List<TestClassResult> serialize(Collection<TestClassResult> results) {
            def serializer = new TestResultSerializer(tmp.createDir("results"))
            serializer.write(results)
            def result = []
            serializer.read({ result << it } as Action)
            return result
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. cmd/speedtest.go

    				creds:           opts.creds,
    			}
    
    			results := globalNotificationSys.SpeedTest(ctx, sopts)
    			sort.Slice(results, func(i, j int) bool {
    				return results[i].Endpoint < results[j].Endpoint
    			})
    
    			totalPut := uint64(0)
    			totalGet := uint64(0)
    			for _, result := range results {
    				totalPut += result.Uploads
    				totalGet += result.Downloads
    			}
    
    			if totalGet < throughputHighestGet {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. .github/workflows/scorecards-analysis.yml

            uses: ossf/scorecard-action@15c10fcf1cf912bd22260bfec67569a359ab87da # v2.1.1
            with:
              results_file: results.sarif
              results_format: sarif
              # Publish the results to enable scorecard badges. For more details, see
              # https://github.com/ossf/scorecard-action#publishing-results.
              # For private repositories, `publish_results` will automatically be set to `false`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 21 23:56:23 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

        final String version
        final MeasuredOperationList results = new MeasuredOperationList()
    
        BaselineVersion(String version) {
            this.version = version
            results.name = "Gradle $version"
        }
    
        String getSpeedStatsAgainst(String displayName, MeasuredOperationList current) {
            def sb = new StringBuilder()
            def thisVersionMean = results.totalTime.median
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessDetectionPerformanceExecutionDataProvider.java

     * limitations under the License.
     */
    
    package org.gradle.performance.results.report;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.performance.results.CrossBuildPerformanceTestHistory;
    import org.gradle.performance.results.PerformanceReportScenario;
    import org.gradle.performance.results.PerformanceTestExecutionResult;
    import org.gradle.performance.results.PerformanceTestExecution;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_ops.td

          executed.
        operands: The arguments to the first iteration.
        results: The results of the last iteration. The number and types of results
          excluding the last one are the same as the number and types of operands. The
          last element of results is an I1 value that is false.
        body_fn: The body function that takes the arguments and returns the results
          that includes an I1 value to indicate whether next iteration should be executed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

      std::vector<tfrt::RCReference<tfrt::AsyncValue>> results;
      results.resize(func->result_types().size());
      std::vector<tfrt::RCReference<tfrt::AsyncValue>> result_tensors;
      result_tensors.resize(func->result_types().size() - 1);
    
      func->Execute(exec_ctx, arguments.values(), results);
      host->Await(results);
    
      for (auto& result : results) {
        EXPECT_FALSE(result->IsError());
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceResults.groovy

        }
    
        @CompileStatic
        private static class CurrentVersionResults implements VersionResults {
            final MeasuredOperationList results
    
            CurrentVersionResults(MeasuredOperationList results) {
                this.results = results
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleVsMavenBuildExperimentRunner.java

     * limitations under the License.
     */
    
    package org.gradle.performance.fixture;
    
    import groovy.transform.CompileStatic;
    import org.gradle.performance.results.GradleProfilerReporter;
    import org.gradle.performance.results.MeasuredOperationList;
    import org.gradle.performance.results.OutputDirSelector;
    
    @CompileStatic
    public class GradleVsMavenBuildExperimentRunner extends AbstractBuildExperimentRunner {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. tests/callbacks_test.go

    	}
    
    	datas := []struct {
    		callbacks []callback
    		err       string
    		results   []string
    	}{
    		{
    			callbacks: []callback{{h: c1}, {h: c2}, {h: c3}, {h: c4}, {h: c5}},
    			results:   []string{"c1", "c2", "c3", "c4", "c5"},
    		},
    		{
    			callbacks: []callback{{h: c1}, {h: c2}, {h: c3}, {h: c4}, {h: c5, before: "c4"}},
    			results:   []string{"c1", "c2", "c3", "c5", "c4"},
    		},
    		{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top