Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 263 for testTimes (0.14 sec)

  1. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    				Node: statsapi.NodeStats{
    					CPU: &statsapi.CPUStats{
    						Time:                 testTime,
    						UsageCoreNanoSeconds: uint64Ptr(10000000000),
    					},
    					Memory: &statsapi.MemoryStats{
    						Time:            testTime,
    						WorkingSetBytes: uint64Ptr(1000),
    					},
    					Swap: &statsapi.SwapStats{
    						Time:           testTime,
    						SwapUsageBytes: uint64Ptr(500),
    					},
    				},
    			},
    			summaryErr: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryFileTreeTest.groovy

            def treeWithNoIncludesOrExcludes = new DirectoryFileTree(temporaryFolder.getTestDirectory(), new PatternSet(), TestFiles.fileSystem(), false)
            def includesOnly = new PatternSet()
            includesOnly.include("a/b", "c")
            def treeWithIncludes = new DirectoryFileTree(temporaryFolder.getTestDirectory(), includesOnly, TestFiles.fileSystem(), false)
            def excludesOnly = new PatternSet()
            excludesOnly.exclude("a/b", "c")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/internal/tasks/DefaultSourceSetContainerTest.groovy

    import org.gradle.api.internal.file.TestFiles
    import org.gradle.api.tasks.SourceSet
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class DefaultSourceSetContainerTest extends Specification {
    
        def "can create a source set"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/log/slog/internal/benchmarks/benchmarks_test.go

    							slog.Any("error", testError),
    							slog.String("string", testString),
    							slog.Int("status", testInt),
    							slog.Duration("duration", testDuration),
    							slog.Time("time", testTime),
    							slog.Any("error", testError),
    							slog.String("string", testString),
    							slog.Int("status", testInt),
    							slog.Duration("duration", testDuration),
    							slog.Time("time", testTime),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:32:54 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/DaemonForkOptionsTest.groovy

     */
    
    package org.gradle.workers.internal
    
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.internal.classloader.ClassLoaderSpec
    import org.gradle.process.JavaForkOptions
    import spock.lang.Specification
    
    import static org.gradle.api.internal.file.TestFiles.execFactory
    import static org.gradle.api.internal.file.TestFiles.systemSpecificAbsolutePath
    
    class DaemonForkOptionsTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/SnapshotterFixture.groovy

                        : temporaryFolder.file(it)
                }
                def snapshot = snapshotter.snapshot(TestFiles.fixed(files)).snapshot
                builder.put(propertyName, snapshot)
            }
            return builder.build()
        }
    
        FileSystemLocationSnapshot snapshot(File file) {
            snapshotter.snapshot(TestFiles.fixed(file)).snapshot as FileSystemLocationSnapshot
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultFileOperationsTest.groovy

                resourceHandlerFactory,
                fileCollectionFactory,
                TestUtil.objectFactory(),
                TestFiles.fileSystem(),
                TestFiles.patternSetFactory,
                TestFiles.deleter(),
                TestFiles.documentationRegistry(),
                TestFiles.taskDependencyFactory(),
                TestUtil.providerFactory(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryWalkerTest.groovy

        @Override
        protected List<DirectoryWalker> getWalkers() {
            return [
                new DefaultDirectoryWalker(TestFiles.fileSystem()),
                new ReproducibleDirectoryWalker(TestFiles.fileSystem())
            ]
        }
    
        def "both DirectoryWalker implementations return same set of files and attributes"() {
            given:
            def rootDir = tmpDir.createDir("root")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/DefaultTestExecutionResult.groovy

        }
    
        static String[] removeAllParentheses(String... testNames) {
            testNames.collect { removeParentheses(it) } as String[]
        }
    
        static String[][] removeAllParentheses(String[]... testNames) {
            testNames.collect { [removeParentheses(it[0]), it[1]] } as String[][]
        }
    
        static TestCase testCase(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/TestClassExecutionResult.java

         */
        default TestClassExecutionResult assertTestOutcomes(TestOutcome status, String... testNames) {
            if (status == TestOutcome.SKIPPED) {
                return assertTestsSkipped(testNames);
            }
            for (String testName : testNames) {
                switch (status) {
                    case PASSED:
                        assertTestPassed(testName);
                        break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top