Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for SRV (0.03 sec)

  1. src/crypto/tls/quic_test.go

    			}
    		}
    		srvCS := srv.conn.ConnectionState()
    		if _, ok := srv.readSecret[QUICEncryptionLevelHandshake]; ok {
    			if want, got := srvCS.NegotiatedProtocol, "h3"; want != got {
    				t.Errorf("srv.ConnectionState().NegotiatedProtocol = %q, want %q", want, got)
    			}
    		}
    		return false
    	}
    	if err := runTestQUICConnection(context.Background(), cli, srv, onEvent); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-kubeapiserver.sh

        csc_config_volume="{\"name\": \"cscconfigmount\",\"hostPath\": {\"path\": \"/etc/srv/kubernetes/egress_selector_configuration.yaml\", \"type\": \"FileOrCreate\"}},"
    
        # UDS socket for communication between apiserver and konnectivity-server
        local default_konnectivity_socket_path="/etc/srv/kubernetes/konnectivity-server"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. docs/sts/ldap.md

    #### DNS SRV Records
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/go/script_test.go

    func TestScript(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	testenv.SkipIfShortAndSlow(t)
    
    	srv, err := vcstest.NewServer()
    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Cleanup(func() {
    		if err := srv.Close(); err != nil {
    			t.Fatal(err)
    		}
    	})
    	certFile, err := srv.WriteCertificateFile()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	StartProxy()
    
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/net/lookup.go

    		if cname.Length == 0 && h.Name.Length != 0 {
    			cname = h.Name
    		}
    		srv, err := p.SRVResource()
    		if err != nil {
    			return "", nil, &DNSError{
    				Err:    "cannot unmarshal DNS message",
    				Name:   name,
    				Server: server,
    			}
    		}
    		srvs = append(srvs, &SRV{Target: srv.Target.String(), Port: srv.Port, Priority: srv.Priority, Weight: srv.Weight})
    	}
    	byPriorityWeight(srvs).sort()
    	return cname.String(), srvs, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcs/vcs.go

    		match := map[string]string{
    			"prefix": srv.pathPrefix + "/",
    			"import": importPath,
    		}
    		for i, name := range srv.regexp.SubexpNames() {
    			if name != "" && match[name] == "" {
    				match[name] = m[i]
    			}
    		}
    		if srv.vcs != "" {
    			match["vcs"] = expand(match, srv.vcs)
    		}
    		if srv.repo != "" {
    			match["repo"] = expand(match, srv.repo)
    		}
    		if srv.check != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    		sep = " "
    	}
    	fmt.Fprintf(&buf, "]")
    	return buf.String()
    }
    
    func srvString(srvs []*SRV) string {
    	var buf strings.Builder
    	sep := ""
    	fmt.Fprintf(&buf, "[")
    	for _, srv := range srvs {
    		fmt.Fprintf(&buf, "%s%s:%d:%d:%d", sep, srv.Target, srv.Port, srv.Priority, srv.Weight)
    		sep = " "
    	}
    	fmt.Fprintf(&buf, "]")
    	return buf.String()
    }
    
    func TestLookupPort(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. src/net/lookup_plan9.go

    	if systemConf().mustUseGoResolver(r) {
    		return r.goLookupSRV(ctx, service, proto, name)
    	}
    	var target string
    	if service == "" && proto == "" {
    		target = name
    	} else {
    		target = "_" + service + "._" + proto + "." + name
    	}
    	lines, err := queryDNS(ctx, target, "srv")
    	if err != nil {
    		return "", nil, handlePlan9DNSError(err, name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. pkg/volume/util/util_test.go

    				},
    			}),
    			expectedMountList: []string{},
    			systemOptions:     nil,
    		},
    		"vol-with-sys-opts": {
    			volume: createVolumeSpecWithMountOption("good-mount-opts", "ro,nfsvers=3", v1.PersistentVolumeSpec{
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    					NFS: &v1.NFSVolumeSource{Server: "localhost", Path: "/srv", ReadOnly: false},
    				},
    			}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. src/net/lookup_windows.go

    		return "", nil, newDNSError(winError("dnsquery", e), name, "")
    	}
    	defer syscall.DnsRecordListFree(rec, 1)
    
    	srvs := make([]*SRV, 0, 10)
    	for _, p := range validRecs(rec, syscall.DNS_TYPE_SRV, target) {
    		v := (*syscall.DNSSRVData)(unsafe.Pointer(&p.Data[0]))
    		srvs = append(srvs, &SRV{absDomainName(syscall.UTF16ToString((*[256]uint16)(unsafe.Pointer(v.Target))[:])), v.Port, v.Priority, v.Weight})
    	}
    	byPriorityWeight(srvs).sort()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top