Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,722 for Tresults (1.41 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/AbstractCrossBuildPerformanceTest.groovy

    import org.gradle.performance.fixture.PerformanceTestIdProvider
    import org.gradle.performance.results.CrossBuildPerformanceResults
    import org.gradle.performance.results.CrossBuildResultsStore
    import org.gradle.performance.results.WritableResultsStore
    import org.junit.Assume
    import org.junit.Rule
    
    import static org.gradle.performance.results.ResultsStoreHelper.createResultsStoreWhenDatabaseAvailable
    
    @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. docs_src/query_params_str_validations/tutorial008_an_py310.py

                description="Query string for the items to search in the database that have a good match",
                min_length=3,
            ),
        ] = None,
    ):
        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: Tue Oct 24 20:26:06 UTC 2023
    - 498 bytes
    - Viewed (0)
  3. docs_src/query_params_str_validations/tutorial004_an_py310_regex.py

    @app.get("/items/")
    async def read_items(
        q: Annotated[
            str | None, Query(min_length=3, max_length=50, regex="^fixedquery$")
        ] = None,
    ):
        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: Tue Oct 24 20:26:06 UTC 2023
    - 366 bytes
    - Viewed (0)
  4. docs_src/query_params_str_validations/tutorial003_an_py39.py

    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(
        q: Annotated[Union[str, None], Query(min_length=3, max_length=50)] = None,
    ):
        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: Tue Mar 26 16:56:53 UTC 2024
    - 343 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

                             llvm::ArrayRef<IslandResult> results) {
      // Collect types from results.
      llvm::SmallVector<Type, 8> result_types;
      result_types.reserve(results.size());
      for (const auto& result : results)
        result_types.push_back(result.inner_op_result.getType());
    
      // IslandOps always have a control result.
      result_types.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. docs_src/query_params_str_validations/tutorial007_an_py39.py

    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(
        q: Annotated[Union[str, None], Query(title="Query string", min_length=3)] = None,
    ):
        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: Tue Mar 26 16:56:53 UTC 2024
    - 350 bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractBuildExperimentRunner.java

    import org.gradle.performance.measure.Duration;
    import org.gradle.performance.measure.MeasuredOperation;
    import org.gradle.performance.results.GradleProfilerReporter;
    import org.gradle.performance.results.MeasuredOperationList;
    import org.gradle.performance.results.OutputDirSelector;
    import org.gradle.performance.results.OutputDirSelectorUtil;
    import org.gradle.profiler.BenchmarkResultCollector;
    import org.gradle.profiler.BuildMutator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionOutputsInternal.java

    /**
     * Internal counterpart of {@link ResolutionOutputs} that exposes the results as
     * their internal types, as well as the raw results before conversion to user-facing types.
     */
    public interface ResolutionOutputsInternal extends ResolutionOutputs {
    
        /**
         * Get the raw results of the resolution. The returned results are lazy. Calling
         * this method will not perform resolution.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. docs_src/query_params_str_validations/tutorial010_an_py310.py

                min_length=3,
                max_length=50,
                pattern="^fixedquery$",
                deprecated=True,
            ),
        ] = None,
    ):
        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: Tue Oct 24 20:26:06 UTC 2023
    - 622 bytes
    - Viewed (0)
  10. testing/internal-performance-testing/README.md

    Gradle version under test and using several other baseline Gradle versions. The test compares the results to report on performance regressions relative to these baseline versions. 
    - `AbstractCrossBuildPerformanceTest`: A performance test that runs several different scenarios using the Gradle version under test and compares the results.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top