Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for svctest (0.15 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    		before: svctest.MakeService("foo",
    			svctest.SetTypeLoadBalancer,
    			svctest.SetExternalTrafficPolicy(api.ServiceExternalTrafficPolicyLocal),
    			svctest.SetClusterIPs("10.0.0.93", "2000::76"),
    			svctest.SetUniqueNodePorts,
    			svctest.SetHealthCheckNodePort(31234)),
    		update: svctest.MakeService("foo",
    			svctest.SetTypeLoadBalancer,
    			svctest.SetExternalTrafficPolicy(api.ServiceExternalTrafficPolicyLocal),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. maven-model/src/test/java/org/apache/maven/model/ScmTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@code Scm}.
     *
     */
    class ScmTest {
    
        @Test
        void testHashCodeNullSafe() {
            new Scm().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new Scm().equals(null));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/swift/testReport/groovy/buildSrc/src/main/groovy/myproject.xctest-conventions.gradle

    // tag::test-report[]
    plugins {
        id 'xctest'
    }
    
    xctest {
        binaries.configureEach {
            runTask.get().configure {
                // Disable the test report for the individual test task
                reports.html.required = false
            }
        }
    }
    
    // Share the test report data to be aggregated for the whole project
    configurations {
        binaryTestResultsElements {
            canBeResolved = false
            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 772 bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/PACTest.java

    import jcifs.pac.PACDecodingException;
    import jcifs.pac.PacMac;
    import jcifs.util.Hexdump;
    
    
    /**
     * @author mbechler
     *
     */
    @SuppressWarnings ( {
        "nls", "javadoc", "restriction"
    } )
    public class PACTest {
    
        @Test
        public void testNFold () {
            // rfc3961 test vectors
            verifyNfold(64, "012345", "be072631276b1955");
            verifyNfold(56, "password", "78a07b6caf85fa");
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.gradle.util.Matchers
    import org.gradle.util.SetSystemProperties
    import org.junit.Rule
    import spock.lang.Specification
    
    class JvmTest extends Specification {
        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        @Rule
        SetSystemProperties sysProp = new SetSystemProperties()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/buildSrc/src/main/kotlin/myproject.xctest-conventions.gradle.kts

    // tag::test-report[]
    plugins {
        id("xctest")
    }
    
    extensions.configure<SwiftXCTestSuite>() {
        binaries.configureEach {
            // Disable the test report for the individual test task
            runTask.get().reports.html.required = false
        }
    }
    
    configurations.create("binaryTestResultsElements") {
        isCanBeResolved = false
        isCanBeConsumed = true
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 660 bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/XCTest.java

    import org.gradle.api.tasks.SkipWhenEmpty;
    import org.gradle.api.tasks.testing.AbstractTestTask;
    import org.gradle.nativeplatform.test.xctest.internal.execution.XCTestExecuter;
    import org.gradle.nativeplatform.test.xctest.internal.execution.XCTestSelection;
    import org.gradle.nativeplatform.test.xctest.internal.execution.XCTestTestExecutionSpec;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/testing/panic_test.go

        panic_test.go:NNN: TestPanicHelper
    `,
    	}, {
    		desc:  "subtest panics",
    		flags: []string{"-test_panic_test=TestPanicHelper/1"},
    		want: `
    --- FAIL: TestPanicHelper (N.NNs)
        panic_test.go:NNN: TestPanicHelper
        --- FAIL: TestPanicHelper/1 (N.NNs)
            panic_test.go:NNN: TestPanicHelper/1
    `,
    	}, {
    		desc:  "subtest panics with cleanup",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:49:24 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. src/net/internal/socktest/main_test.go

    				socketFunc(family, syscall.SOCK_STREAM, syscall.IPPROTO_TCP)
    			}
    		}()
    	}
    	wg.Wait()
    }
    
    func TestSocket(t *testing.T) {
    	for _, f := range []socktest.Filter{
    		func(st *socktest.Status) (socktest.AfterFilter, error) { return nil, nil },
    		nil,
    	} {
    		sw.Set(socktest.FilterSocket, f)
    		for _, family := range []int{syscall.AF_INET, syscall.AF_INET6} {
    			socketFunc(family, syscall.SOCK_STREAM, syscall.IPPROTO_TCP)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:36:30 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/xctest-configurations.png

    xctest-configurations.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top