Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for util_test (0.28 sec)

  1. cmd/signature-v4-utils_test.go

    Harshavardhana <******@****.***> 1712352401 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. cmd/object-api-utils_test.go

    Aditya Manthramurthy <******@****.***> 1716591923 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubeletconfig/util/files/files_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package files
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"testing"
    
    	utiltest "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/util/test"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    const (
    	prefix = "test-util-files"
    )
    
    type file struct {
    	name string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

                }
    
                reporting {
                    reports {
                        testCodeCoverageReport(JacocoCoverageReport) {
                            testType = TestSuiteType.UNIT_TEST
                        }
                    }
                }
            """
    
            when:
            succeeds(":testCodeCoverageReport")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

                this.buildConfigurationList.buildConfigurations.each { ProjectFile.PBXTarget.assertNotUnitTestBuildSettings(it.buildSettings) }
            }
    
            void assertIsUnitTest() {
                assertIs(ProductType.UNIT_TEST)
                this.buildConfigurationList.buildConfigurations.each {
                    if (it.name.startsWith("__GradleTestRunner_")) {
                        ProjectFile.PBXTarget.assertUnitTestBuildSettings(it.buildSettings)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

            htmlReport.testClass("org.gradle.sample.UtilTest").assertTestCount(1, 0, 0).assertTestPassed("ok").assertStdout(equalTo("hello from UtilTest.\n"))
        }
    
        def "merges report with duplicated classes and methods"() {
            given:
            buildFile << """
                $junitSetup
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  7. pkg/kubelet/server/stats/summary_test.go

    	ctx := context.Background()
    	assert := assert.New(t)
    
    	podStats := []statsapi.PodStats{
    		{
    			PodRef:      statsapi.PodReference{Name: "test-pod", Namespace: "test-namespace", UID: "UID_test-pod"},
    			StartTime:   metav1.NewTime(time.Now()),
    			Containers:  []statsapi.ContainerStats{*getContainerStats()},
    			Network:     getNetworkStats(),
    			VolumeStats: []statsapi.VolumeStats{*getVolumeStats()},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                }
    
                reporting {
                    reports {
                        testAggregateTestReport(AggregateTestReport) {
                            testType = TestSuiteType.UNIT_TEST
                        }
                    }
                }
            '''
    
            when:
            succeeds(':testAggregateTestReport')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            when:
            def result = succeeds("test", "testReport")
    
            then: "the test task is executed"
            result.assertTaskExecuted(":core:test")
            result.assertTaskExecuted(":util:test")
    
            and: "an aggregate report is created"
            dslDir.file("build/reports/allTests/index.html").assertExists()
    
            and: "no test reports in the subprojects are created"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. tensorflow/cc/training/queue_runner_test.cc

    constexpr char kEnqueueOp0[] = "enqueue0";
    constexpr char kEnqueueOp1[] = "enqueue1";
    constexpr char kIllegalOpName1[] = "would fail";
    constexpr char kIllegalOpName2[] = "fail again";
    constexpr char kQueueName[] = "unit_test";
    constexpr char kQueueName0[] = "q0";
    constexpr char kQueueName1[] = "q1";
    constexpr char kSquareOpName[] = "square";
    constexpr char kVarOpName[] = "var";
    
    GraphDef BuildSimpleGraph() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 21 06:27:51 UTC 2019
    - 14.7K bytes
    - Viewed (0)
Back to top