Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,339 for Tresults (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report_test.cc

      }
      */
      QuantizationResults results{};
      ASSERT_TRUE(TextFormat::ParseFromString(*file_data, &results));
      ASSERT_THAT(results.results(), SizeIs(1));
      EXPECT_THAT(results.results(0).quantizable_unit().name(),
                  StrEq("composite_dot_general_fn"));
      EXPECT_TRUE(results.results(0).method().has_static_range_ptq());
    }
    
    TEST_F(SaveQuantizationReportInstrumentationTest,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/api/plugins/JvmTestSuitePluginIntegrationTest.groovy

            def resultsPath = new TestFile(getTestDirectory(), 'build/test-results/test/binary').getRelativePathFromBase()
            outputContains("""
    --------------------------------------------------
    Variant testResultsElementsForTest (i)
    --------------------------------------------------
    Directory containing binary results of running tests for the test Test Suite's test target.
    
    Capabilities
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. docs_src/query_params_str_validations/tutorial006c_py310.py

    from fastapi import FastAPI, Query
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(q: str | None = Query(default=..., 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: Fri May 13 23:38:22 UTC 2022
    - 274 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

        }
    
        for (int i = 0; i < op->getNumResults(); ++i) {
          Value result = op->getResult(i);
          // If the result has been quantized, it should only be used by a
          // `quantfork::QuantizeCastOp`. For this case, we uses the quantized
          // result to create the state and mark it immutable.
          if (result.hasOneUse()) {
            Operation* user = result.use_begin().getUser();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  5. docs_src/query_params_str_validations/tutorial006b_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
    - 300 bytes
    - Viewed (0)
  6. docs_src/body_multiple_params/tutorial004_an_py310.py

        *,
        item_id: int,
        item: Item,
        user: User,
        importance: Annotated[int, Body(gt=0)],
        q: str | None = None,
    ):
        results = {"item_id": item_id, "item": item, "user": user, "importance": importance}
        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
    - 643 bytes
    - Viewed (0)
  7. docs_src/query_params_str_validations/tutorial005_an_py39.py

    from fastapi import FastAPI, Query
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(q: Annotated[str, Query(min_length=3)] = "fixedquery"):
        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
    - 309 bytes
    - Viewed (0)
  8. docs_src/query_params_str_validations/tutorial007_py310.py

    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(
        q: str | None = Query(default=None, title="Query string", 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 Mar 26 16:56:53 UTC 2024
    - 304 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolverResults.java

        public boolean isEmpty() {
            return results.isEmpty();
        }
    
        private static class Registration {
            private final ResolvableSelectorState selector;
            private ComponentIdResolveResult result;
    
            private Registration(ResolvableSelectorState selector, ComponentIdResolveResult result) {
                this.selector = selector;
                this.result = result;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingException.java

            this.projectId = projectId;
            this.pomFile = pomFile;
        }
    
        public ProjectBuildingException(List<ProjectBuildingResult> results) {
            super("Some problems were encountered while processing the POMs");
            this.projectId = "";
            this.results = results;
        }
    
        public File getPomFile() {
            return pomFile;
        }
    
        /**
         * @deprecated use {@link #getPomFile()}
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top