Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 703 for Tresults (0.98 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/DefaultTestReport.java

    import org.gradle.api.Action;
    import org.gradle.api.GradleException;
    import org.gradle.api.internal.tasks.testing.junit.result.TestClassResult;
    import org.gradle.api.internal.tasks.testing.junit.result.TestFailure;
    import org.gradle.api.internal.tasks.testing.junit.result.TestMethodResult;
    import org.gradle.api.internal.tasks.testing.junit.result.TestResultsProvider;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:58:15 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/TestReport.java

                Test test = (Test) result;
                dirs.from(test.getBinaryResultsDirectory());
            } else if (result instanceof Iterable<?>) {
                Iterable<?> iterable = (Iterable<?>) result;
                for (Object nested : iterable) {
                    addTo(nested, dirs);
                }
            } else {
                dirs.from(result);
            }
        }
    
        /**
         * Adds some results to include in the report.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. utils/utils.go

    }
    
    func ToStringKey(values ...interface{}) string {
    	results := make([]string, len(values))
    
    	for idx, value := range values {
    		if valuer, ok := value.(driver.Valuer); ok {
    			value, _ = valuer.Value()
    		}
    
    		switch v := value.(type) {
    		case string:
    			results[idx] = v
    		case []byte:
    			results[idx] = string(v)
    		case uint:
    			results[idx] = strconv.FormatUint(uint64(v), 10)
    		default:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 22 06:43:02 UTC 2024
    - 3.8K 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