Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 916 for Tresults (0.13 sec)

  1. istioctl/pkg/cli/mock_client.go

    	return c.Results, nil
    }
    
    func (c MockClient) EnvoyDo(ctx context.Context, podName, podNamespace, method, path string) ([]byte, error) {
    	results, ok := c.Results[podName]
    	if !ok {
    		return nil, fmt.Errorf("unable to retrieve Pod: pods %q not found", podName)
    	}
    	return results, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollector.java

        public TestReportDataCollector(Map<String, TestClassResult> results, TestOutputStore.Writer outputWriter) {
            this.results = results;
            this.outputWriter = outputWriter;
        }
    
        @Override
        public void beforeSuite(TestDescriptor suite) {
        }
    
        @Override
        public void afterSuite(TestDescriptor suite, TestResult result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessIndexPageGenerator.java

     * limitations under the License.
     */
    
    package org.gradle.performance.results.report;
    
    import com.google.common.collect.Sets;
    import org.gradle.performance.results.PerformanceFlakinessDataProvider;
    import org.gradle.performance.results.PerformanceReportScenario;
    import org.gradle.performance.results.ResultsStore;
    
    import java.io.IOException;
    import java.io.Writer;
    import java.util.ArrayList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProviderTest.groovy

     */
    
    package org.gradle.performance.results.report
    
    import org.gradle.performance.ResultSpecification
    import org.gradle.performance.results.MeasuredOperationList
    import org.gradle.performance.results.PerformanceReportScenario
    import org.gradle.performance.results.PerformanceReportScenarioHistoryExecution
    import org.gradle.performance.results.ResultsStore
    import org.gradle.performance.results.PerformanceTestExecutionResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    WARNING: The Test Report Aggregation plugin does not currently work with the ``com.android.application`` plugin.
    
    ====
    include::sample[dir="kotlin",files="test-results/build.gradle.kts[tag=**]"]
    include::sample[dir="groovy",files="test-results/build.gradle[tag=**]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CompositeDataReporter.java

        @Override
        public void report(CrossVersionPerformanceResults results) {
            if (!testIds.add(results.getTestId())) {
                throw new IllegalArgumentException(String.format("Multiple performance test executions with id '%s' found.", results.getTestId()));
            }
            for (DataReporter<CrossVersionPerformanceResults> reporter : reporters) {
                reporter.report(results);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/AbstractBuildScanPluginPerformanceTest.groovy

            def baselineResults = new BaselineVersion(name)
            baselineResults.results.name = name
            baselineResults.results.addAll(results.buildResult(name))
            return baselineResults
        }
    
        protected static BaselineVersion buildShiftedResults(CrossBuildPerformanceResults results, String name, int maxPercentageShift) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. docs_src/query_params_str_validations/tutorial006_an_py39.py

    from fastapi import FastAPI, Query
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(q: Annotated[str, Query(min_length=3)]):
        results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]}
        if q:
            results.update({"q": q})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 294 bytes
    - Viewed (0)
  9. testing/performance/docs/performance-bisect.md

    be copied to `~/.gradle-bisect-results`. In order to have an overview of the current state
    of the bisect, you can easily use grep on that directory.
    
    ```bash
    mymachine:~$ grep -A 1 "^Speed" ~/.gradle-bisect-results/*.xml
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. pkg/lazy/lazy_test.go

    			} else {
    				assert.Error(t, err)
    			}
    			resCh <- res
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    	close(resCh)
    	for r := range resCh {
    		results = append(results, r)
    	}
    	slices.Sort(results)
    	assert.Equal(t, results, []int32{1, 1, 1, 1, 1, 1, 1, 1, 1, 1})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top