Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 152 for svctest (0.29 sec)

  1. pkg/kubelet/runtimeclass/runtimeclass_manager_test.go

    	"k8s.io/kubernetes/pkg/kubelet/runtimeclass"
    	rctest "k8s.io/kubernetes/pkg/kubelet/runtimeclass/testing"
    	"k8s.io/utils/pointer"
    )
    
    func TestLookupRuntimeHandler(t *testing.T) {
    	tests := []struct {
    		rcn         *string
    		expected    string
    		expectError bool
    	}{
    		{rcn: pointer.String(""), expected: ""},
    		{rcn: pointer.String(rctest.EmptyRuntimeClass), expected: ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:44:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassDetector.java

            return false;
        }
    
        @Override
        public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
            if ("Lorg/testng/annotations/Test;".equals(desc)) {
                setTest(true);
            }
            return null;
        }
    
        @Override
        public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
            if (!isAbstract() && !isTest()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.test.xctest.tasks.XCTest.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. src/testing/match.go

    	skip      filterMatch
    	matchFunc func(pat, str string) (bool, error)
    
    	mu sync.Mutex
    
    	// subNames is used to deduplicate subtest names.
    	// Each key is the subtest name joined to the deduplicated name of the parent test.
    	// Each value is the count of the number of occurrences of the given subtest name
    	// already seen.
    	subNames map[string]int32
    }
    
    type filterMatch interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. src/testing/sub_test.go

    			})
    			t.Errorf("oh, and this too")
    		},
    	}, {
    		desc: "subtest calls fatal on parent",
    		ok:   false,
    		output: `
    --- FAIL: subtest calls fatal on parent (N.NNs)
        sub_test.go:NNN: first this
        sub_test.go:NNN: and now this!
        --- FAIL: subtest calls fatal on parent/#00 (N.NNs)
            testing.go:NNN: test executed panic(nil) or runtime.Goexit: subtest may have called FailNow on a parent test`,
    		maxPar: 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  6. src/net/main_posix_test.go

    //go:build !plan9
    
    package net
    
    import (
    	"net/internal/socktest"
    	"strings"
    	"syscall"
    )
    
    func enableSocketConnect() {
    	sw.Set(socktest.FilterConnect, nil)
    }
    
    func disableSocketConnect(network string) {
    	net, _, _ := strings.Cut(network, ":")
    	sw.Set(socktest.FilterConnect, func(so *socktest.Status) (socktest.AfterFilter, error) {
    		switch net {
    		case "tcp4":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/testData/sessionBuilder/resolveAgainstCommonKLibFromOtherModule/jvmMain/jvmSrc.kt

    package jvmTest
    
    import common.greetEachOther
    import some.example.Person
    
    private class MyPerson(
        name: String
    ) : Person(name) {
        override fun greet() = "Hi"
    }
    
    fun test() {
        greetEachOther(
            listOf(
                Person("Alice"),
                MyPerson("Bob"),
            )
        )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 07 12:14:19 UTC 2024
    - 293 bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/main/resources/META-INF/gradle-plugins/org.gradle.xctest.properties

    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 691 bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPluginTest.groovy

    import org.gradle.nativeplatform.tasks.LinkMachOBundle
    import org.gradle.nativeplatform.test.xctest.SwiftXCTestBundle
    import org.gradle.nativeplatform.test.xctest.SwiftXCTestExecutable
    import org.gradle.nativeplatform.test.xctest.SwiftXCTestSuite
    import org.gradle.nativeplatform.test.xctest.tasks.InstallXCTestBundle
    import org.gradle.nativeplatform.test.xctest.tasks.XCTest
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassDetector.java

            return true;
        }
    
        @Override
        public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
            if ("Lorg/junit/runner/RunWith;".equals(desc)) {
                setTest(true);
            }
    
            return null;
        }
    
        @Override
        public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
            if (!isTest()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top