Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 152 for svctest (0.18 sec)

  1. src/net/internal/socktest/switch_windows.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.
    
    package socktest
    
    import "syscall"
    
    // Sockets maps a socket descriptor to the status of socket.
    type Sockets map[syscall.Handle]Status
    
    func (sw *Switch) sockso(s syscall.Handle) *Status {
    	sw.smu.RLock()
    	defer sw.smu.RUnlock()
    	so, ok := sw.sotab[s]
    	if !ok {
    		return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 13 21:38:34 UTC 2015
    - 730 bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/internal/DefaultSwiftXCTestSuiteTest.groovy

        def testSuite = project.objects.newInstance(DefaultSwiftXCTestSuite, "test")
    
        def "has display name"() {
    
            expect:
            testSuite.displayName.displayName == "XCTest suite 'test'"
            testSuite.toString() == "XCTest suite 'test'"
        }
    
        def "has implementation dependencies"() {
            expect:
            testSuite.implementationDependencies == project.configurations.testImplementation
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/net/internal/socktest/sys_cloexec.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build dragonfly || freebsd || linux || netbsd || openbsd || solaris
    
    package socktest
    
    import "syscall"
    
    // Accept4 wraps syscall.Accept4.
    func (sw *Switch) Accept4(s, flags int) (ns int, sa syscall.Sockaddr, err error) {
    	so := sw.sockso(s)
    	if so == nil {
    		return syscall.Accept4(s, flags)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 03 14:38:32 UTC 2022
    - 1K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libexport/save_test.cc

    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    namespace libexport {
    namespace {
    
    TEST(SaveTest, TestDirectoryStructure) {
      const string base_dir = tensorflow::io::JoinPath(
          tensorflow::testing::TmpDir(), "test_directory_structure");
      TF_ASSERT_OK(Save(base_dir));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:11:53 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/xctest-variant-task-graph.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/xctest-variant-task-graph.dot > src/docs/userguide/img/xctest-variant-task-graph.png
    digraph xctestVariantTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			t.Fatalf("got ports of %dst service, got:\n%#v\nwanted:\n%#v\n", i+1, svcList[i].Ports, exp.Ports)
    		}
    		if svcList[i].MeshExternal != exp.MeshExternal {
    			t.Fatalf("i=%v, MeshExternal==%v, should be %v: externalName='%s'", i+1, exp.MeshExternal, svcList[i].MeshExternal, k8sSvcs[i].Spec.ExternalName)
    		}
    		if svcList[i].Resolution != exp.Resolution {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    // TestCreatePodSandbox_RuntimeClass tests creating sandbox with RuntimeClasses enabled.
    func TestCreatePodSandbox_RuntimeClass(t *testing.T) {
    	ctx := context.Background()
    	rcm := runtimeclass.NewManager(rctest.NewPopulatedClient())
    	defer rctest.StartManagerSync(rcm)()
    
    	fakeRuntime, _, m, err := createTestRuntimeManager()
    	require.NoError(t, err)
    	m.runtimeClassManager = rcm
    
    	tests := map[string]struct {
    		rcn             *string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. pkg/test/framework/resource/matcher_test.go

    			nomatches: []string{"TestFoo", "TestFoo/TestBaz", "TestFoo/something/TestBar"},
    		},
    		{
    			name:      "multiple",
    			input:     []string{"TestFoo/subset", "TestBar"},
    			matches:   []string{"TestBar", "TestBar/subtest", "TestFoo/subset"},
    			nomatches: []string{"TestFoo/something/subset", "TestFoo/something", "TestFoo", "TestFoo/TestBar"},
    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 12 23:30:37 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeSwiftWithXCTestProjectIntegrationTest.groovy

        }
    
        @Override
        SwiftSourceElement getSwift5Component() {
            return new Swift5WithXCTest(rootProjectName)
        }
    
        @Override
        String getComponentUnderTestDsl() {
            return "xctest"
        }
    
        abstract String getTestedComponentDsl()
    
        @Override
        protected String configureTargetMachines(String... targetMachines) {
            return """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestWithSharedLibraryLinkageIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest
    
    import org.gradle.nativeplatform.fixtures.app.SwiftLibWithXCTest
    import org.gradle.nativeplatform.fixtures.app.XCTestSourceElement
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top