Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,339 for Tresults (0.44 sec)

  1. docs_src/path_params_numeric_validations/tutorial001_py310.py

    @app.get("/items/{item_id}")
    async def read_items(
        item_id: int = Path(title="The ID of the item to get"),
        q: str | None = Query(default=None, alias="item-query"),
    ):
        results = {"item_id": item_id}
        if q:
            results.update({"q": q})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 332 bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProvider.java

     */
    
    package org.gradle.performance.results.report;
    
    import com.google.common.annotations.VisibleForTesting;
    import org.apache.commons.lang.StringUtils;
    import org.gradle.performance.results.CrossBuildPerformanceTestHistory;
    import org.gradle.performance.results.PerformanceReportScenario;
    import org.gradle.performance.results.PerformanceReportScenarioHistoryExecution;
    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
    - 4.1K bytes
    - Viewed (0)
  3. docs_src/body_multiple_params/tutorial001_an_py39.py

        q: Union[str, None] = None,
        item: Union[Item, None] = None,
    ):
        results = {"item_id": item_id}
        if q:
            results.update({"q": q})
        if item:
            results.update({"item": item})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 610 bytes
    - Viewed (0)
  4. pkg/kubelet/prober/prober_manager.go

    	statusManager status.Manager
    
    	// readinessManager manages the results of readiness probes
    	readinessManager results.Manager
    
    	// livenessManager manages the results of liveness probes
    	livenessManager results.Manager
    
    	// startupManager manages the results of startup probes
    	startupManager results.Manager
    
    	// prober executes the probe actions.
    	prober *prober
    
    	start time.Time
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/AllTestResultsTest.groovy

    class AllTestResultsTest extends Specification {
        final AllTestResults results = new AllTestResults()
    
        def addsTest() {
            when:
            def test = results.addTest(1, 'org.gradle.Test', 'test', 90)
    
            then:
            test.name == 'test'
            test.classResults.name == 'org.gradle.Test'
            test.classResults.packageResults.name == 'org.gradle'
            results.packages.contains(test.classResults.packageResults)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. docs_src/query_params_str_validations/tutorial008_py310.py

            description="Query string for the items to search in the database that have a good match",
            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: Tue Oct 24 20:26:06 UTC 2023
    - 434 bytes
    - Viewed (0)
  7. docs_src/query_params_str_validations/tutorial008_an.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
    - 540 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          TFL_TensorOf<[F32, I32, I64, QI8, QUI8]>:$rhs);
    
      let results = (outs TFL_BoolTensor:$output);
    
      let builders = [TFL_ComparisonBinaryBuilder];
    
      let hasCustomAssemblyFormat = 1;
    
      let extraClassDefinition = [{
        ParseResult $cppClass::parse(OpAsmParser &parser, OperationState &result) {
          return parseOneResultSameOperandTypeOp(parser, result);
        }
        void $cppClass::print(OpAsmPrinter &p) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. ci/official/utilities/cleanup_summary.sh

    can view more detailed results that are probably easier to read than this log.
    Try the links below:
    EOF
      # Find any "Streaming build results to" line, then print the last word in it,
      # and don't print duplicates
      awk '/Streaming build results to/ {print $NF}' "$TFCI_OUTPUT_DIR/script.log" | uniq
    }
    
    # Print out any ResultStore URLs for Bazel invocations' results.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

    void PopulateQuantizedResults(ModuleOp module_op,
                                  QuantizationResults& results) {
      module_op.walk([&results](func::CallOp call_op) {
        std::optional<QuantizationResult> result = GetQuantizationResult(call_op);
        if (result == std::nullopt) return WalkResult::skip();
    
        *results.add_results() = std::move(*result);
        return WalkResult::advance();
      });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top