Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 247 for testNet (0.1 sec)

  1. src/runtime/testdata/testprogcgo/eintr.go

    		// before it completes.
    		sendSomeSignals()
    		if _, err := io.ReadFull(r, b); err != nil {
    			log.Fatal(err)
    		}
    	}()
    }
    
    // testNet tests network operations.
    func testNet(wg *sync.WaitGroup) {
    	ln, err := net.Listen("tcp4", "127.0.0.1:0")
    	if err != nil {
    		if errors.Is(err, syscall.EAFNOSUPPORT) || errors.Is(err, syscall.EPROTONOSUPPORT) {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/testing/tester.go

    	t.tester = t.tester.ClusterScope()
    	return t
    }
    
    func (t *Tester) Namer(namer func(int) string) *Tester {
    	t.tester = t.tester.Namer(namer)
    	return t
    }
    
    func (t *Tester) AllowCreateOnUpdate() *Tester {
    	t.tester = t.tester.AllowCreateOnUpdate()
    	return t
    }
    
    func (t *Tester) GeneratesName() *Tester {
    	t.tester = t.tester.GeneratesName()
    	return t
    }
    
    func (t *Tester) ReturnDeletedObject() *Tester {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  3. src/net/http/internal/testcert/testcert.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 testcert contains a test-only localhost certificate.
    package testcert
    
    import "strings"
    
    // LocalhostCert is a PEM-encoded TLS cert with SAN IPs
    // "127.0.0.1" and "[::1]", expiring at Jan 29 16:00:00 2084 GMT.
    // generated from src/crypto/tls:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jan 08 00:24:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/testdata/testbranch/branch_test.go

    		{"BGEU", -1, 0, testBGEU, testGoBGEU, true},
    		{"BGEU", 1, 0, testBGEU, testGoBGEU, true},
    		{"BGT", 0, 1, testBGT, testGoBGT, false},
    		{"BGT", 0, 0, testBGT, testGoBGT, false},
    		{"BGT", 0, -1, testBGT, testGoBGT, true},
    		{"BGT", -1, 0, testBGT, testGoBGT, false},
    		{"BGT", 1, 0, testBGT, testGoBGT, true},
    		{"BGTU", 0, 1, testBGTU, testGoBGTU, false},
    		{"BGTU", 0, 0, testBGTU, testGoBGTU, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 21:56:43 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/cache/testdata/testjwt

    Quanjie Lin <******@****.***> 1546988264 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 08 22:57:44 UTC 2019
    - 1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/pubkeypin/pubkeypin_test.go

    KGaeSSH218mGNQaWRQw2Sm3W6cFdANoCJUph4w18s7gjtFpfV63s80hXRps+vEyv
    jEQMEQpG8Ss7HGJLGLBw/xAmG0e//XS/o2dDonbGbvzToFByz8OGxjMhk6yV6hdd
    +iyvsLAw/MYMSA==
    -----END CERTIFICATE-----
    `
    
    // testCert is a small helper to get a test x509.Certificate from the PEM constants
    func testCert(t *testing.T, pemString string) *x509.Certificate {
    	// Decode the example certificate from a PEM file into a PEM block
    	pemBlock, _ := pem.Decode([]byte(pemString))
    	if pemBlock == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/CountTest.java

    import junit.framework.TestCase;
    
    /**
     * Tests for {@code Count}.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class CountTest extends TestCase {
      public void testGet() {
        assertEquals(20, new Count(20).get());
      }
    
      public void testGetAndAdd() {
        Count holder = new Count(20);
        assertEquals(20, holder.get());
        holder.add(1);
        assertEquals(21, holder.get());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/publish/AbstractPublishArtifactTest.groovy

    public abstract class AbstractPublishArtifactTest extends Specification {
        private static final File TEST_FILE = new File("artifactFile");
        private static final String TEST_NAME = "myfile-1";
        private static final String TEST_EXT = "ext";
        private static final String TEST_TYPE = "type";
        private static final String TEST_CLASSIFIER = "classifier";
        private static final Date TEST_DATE = new Date();
    
        protected File getTestFile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 11:02:13 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_vet.txt

    Zvonimir Pavlinovic <******@****.***> 1632437422 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 27 20:14:44 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/webservice/src/main/java/org/gradle/webservice/TestTest.java

    package org.gradle.webservice;
    
    public class TestTest {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 59 bytes
    - Viewed (0)
Back to top