Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,339 for Tresults (0.14 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

      };
    
      // The c'tor sets this object as the test part result reporter used
      // by Google Test.  The 'result' parameter specifies where to report the
      // results. This reporter will only catch failures generated in the current
      // thread. DEPRECATED
      explicit ScopedFakeTestPartResultReporter(TestPartResultArray* result);
    
      // Same as above, but you can choose the interception scope of this object.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ResourceResolverTest.groovy

            objectListing.getCommonPrefixes() >> ['root/SNAPSHOT']
    
            S3ResourceResolver resolver = new S3ResourceResolver()
    
            when:
            def results = resolver.resolveResourceNames(objectListing)
    
            then:
            results == ['some.jar', 'someOther.jar', 'SNAPSHOT']
        }
    
        def "should clean common prefixes"() {
            setup:
            ObjectListing objectListing = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. docs_src/body_multiple_params/tutorial004_an.py

        *,
        item_id: int,
        item: Item,
        user: User,
        importance: Annotated[int, Body(gt=0)],
        q: Union[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
    - 703 bytes
    - Viewed (0)
  4. docs_src/body_multiple_params/tutorial004_an_py39.py

        *,
        item_id: int,
        item: Item,
        user: User,
        importance: Annotated[int, Body(gt=0)],
        q: Union[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
    - 674 bytes
    - Viewed (0)
  5. docs_src/query_params_str_validations/tutorial003_an.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
    - 372 bytes
    - Viewed (0)
  6. docs_src/body_multiple_params/tutorial001_py310.py

        *,
        item_id: int = Path(title="The ID of the item to get", ge=0, le=1000),
        q: str | None = None,
        item: 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: Fri May 13 23:38:22 UTC 2022
    - 546 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/integrator.go

    	igr.Lock()
    	defer igr.Unlock()
    	results := igr.getResultsLocked()
    	igr.moments = Moments{}
    	igr.min = igr.x
    	igr.max = igr.x
    	return results
    }
    
    func (igr *integrator) getResultsLocked() (results IntegratorResults) {
    	igr.updateLocked()
    	results.Min, results.Max = igr.min, igr.max
    	results.Duration = igr.moments.ElapsedSeconds
    	results.Average, results.Deviation = igr.moments.AvgAndStdDev()
    	return
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 17:37:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskOutputs.java

         *
         * @param spec specifies if the results of the task should be cached.
         *
         * @since 3.0
         */
        void cacheIf(Spec<? super Task> spec);
    
        /**
         * <p>Cache the results of the task only if the given spec is satisfied. If the spec is not satisfied,
         * the results of the task will not be cached.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 11:37:21 UTC 2019
    - 7.5K bytes
    - Viewed (0)
  9. docs_src/query_params_str_validations/tutorial006.py

    from fastapi import FastAPI, Query
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(q: 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: Fri May 13 23:38:22 UTC 2022
    - 254 bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                            id = "ARTIFACT_DEPENDENCY_${performanceTest.id!!}"
                            cleanDestination = true
                            val perfResultArtifactRule = """results/performance/build/test-results-*.zip!performance-tests/perf-results*.json => $performanceResultsDir/${performanceTest.bucketIndex}/"""
                            artifactRules = if (index == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:42 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top