Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 152 for svctest (0.16 sec)

  1. src/test/java/jcifs/tests/AllTests.java

    import jcifs.context.BaseContext;
    
    
    /**
     * @author mbechler
     *
     */
    @RunWith ( Suite.class )
    @SuiteClasses ( {
        ContextConfigTest.class, PACTest.class, NtlmTest.class, FileLocationTest.class, SessionTest.class, KerberosTest.class, TimeoutTest.class,
        SidTest.class, NamingTest.class, DfsTest.class, FileAttributesTest.class, EnumTest.class, PipeTest.class, FileOperationsTest.class,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
  2. src/net/internal/socktest/switch_stub.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build plan9
    
    package socktest
    
    // Sockets maps a socket descriptor to the status of socket.
    type Sockets map[int]Status
    
    func familyString(family int) string { return "<nil>" }
    
    func typeString(sotype int) string { return "<nil>" }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 455 bytes
    - Viewed (0)
  3. src/net/net_test.go

    	switch runtime.GOOS {
    	case "plan9":
    		t.Skipf("%s does not have full support of socktest", runtime.GOOS)
    	}
    
    	syserr := make(chan error)
    	go func() {
    		defer close(syserr)
    		for _, err := range abortedConnRequestErrors {
    			syserr <- err
    		}
    	}()
    	sw.Set(socktest.FilterAccept, func(so *socktest.Status) (socktest.AfterFilter, error) {
    		if err, ok := <-syserr; ok {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/net/error_test.go

    		return nil, &DNSError{Err: "dial error test", Name: "name", Server: "server", IsTimeout: true}
    	}
    	sw.Set(socktest.FilterConnect, func(so *socktest.Status) (socktest.AfterFilter, error) {
    		return nil, errOpNotSupported
    	})
    	defer sw.Set(socktest.FilterConnect, nil)
    
    	d := Dialer{Timeout: someTimeout}
    	for i, tt := range dialErrorTests {
    		i, tt := i, tt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

            htmlReport.testClass("org.gradle.testing.SubTest").assertTestCount(4, 1, 0).assertTestPassed("passing") // onlySub is passing once and failing once
                .assertStdout(allOf(containsString('org.gradle.testing.SubTest#passing sub\n'),
                    containsString('org.gradle.testing.SubTest#passing super\n'),
                    containsString('org.gradle.testing.SubTest#onlySub sub\n'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/xctest-task-graph.png

    xctest-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/xctest-task-graph.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/xctest-task-graph.dot > src/docs/userguide/img/xctest-task-graph.png
    digraph xctestTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/testing/testing_test.go

    			}
    		}) {
    			t.Fatal("Sub test failure in a benchmark")
    		}
    	})
    }
    
    func TestTempDir(t *testing.T) {
    	testTempDir(t)
    	t.Run("InSubtest", testTempDir)
    	t.Run("test/subtest", testTempDir)
    	t.Run("test\\subtest", testTempDir)
    	t.Run("test:subtest", testTempDir)
    	t.Run("test/..", testTempDir)
    	t.Run("../test", testTempDir)
    	t.Run("test[]", testTempDir)
    	t.Run("test*", testTempDir)
    	t.Run("äöüéè", testTempDir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/net/internal/socktest/switch_posix.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !plan9
    
    package socktest
    
    import (
    	"fmt"
    	"syscall"
    )
    
    func familyString(family int) string {
    	switch family {
    	case syscall.AF_INET:
    		return "inet4"
    	case syscall.AF_INET6:
    		return "inet6"
    	case syscall.AF_UNIX:
    		return "local"
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithSingleXCTestSuite.groovy

                    final delegate = new SwiftAppTest(main, main.greeter, main.sum, main.multiply)
    
                    @Override
                    List<XCTestCaseElement> getTestCases() {
                        return delegate.sumTest.testCases + delegate.greeterTest.testCases + delegate.multiplyTest.testCases
                    }
                }.withTestableImport(main.moduleName)]
            }
        }
    
        String expectedOutput = main.expectedOutput
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top