Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for makeAddrs (0.1 sec)

  1. src/net/dial_test.go

    		network: "tcp",
    		address: "?",
    	}
    
    	makeAddr := func(ip string) addrList {
    		addr, err := ResolveTCPAddr("tcp", JoinHostPort(ip, dss.port))
    		if err != nil {
    			t.Fatal(err)
    		}
    		return addrList{addr}
    	}
    
    	// dialParallel returns one connection (and closes the other.)
    	c, err := sd.dialParallel(context.Background(), makeAddr("127.0.0.1"), makeAddr("::1"))
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. ci/official/utilities/extract_resultstore_links.py

    def create_xml_file(result_store_dict: ResultDictType,
                        output_path: str,
                        verbose: bool = False):
      """Creates a JUnit-based XML file, with each invocation as a testcase."""
      os.makedirs(os.path.dirname(output_path), exist_ok=True)
      failure_count = 0
      error_count = 0
    
      date_time = datetime.datetime
      attrib = {'name': 'Bazel Invocations', 'time': '0.0',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top