Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for testType (0.59 sec)

  1. pkg/kubelet/network/dns/dns_test.go

    			pod.Spec.HostNetwork = tc.hostNetwork
    
    			resType, err := getPodDNSType(pod)
    			if tc.expectedError {
    				if err == nil {
    					t.Errorf("%s: GetPodDNSType(%v) got no error, want error", tc.desc, pod)
    				}
    				return
    			}
    			if resType != tc.expectedDNSType {
    				t.Errorf("%s: GetPodDNSType(%v)=%v, want %v", tc.desc, pod, resType, tc.expectedDNSType)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/2552")
        def "snapshotting named pipe fails"() {
            def rootDir = tmpDir.createDir("root")
            def pipe = rootDir.file("testPipe").createNamedPipe()
    
            when:
            directorySnapshotter.snapshot(rootDir.absolutePath, null, [:], unfilteredSubSnapshotsCollector)
    
            then:
            def ex = thrown(UncheckedIOException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top