Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for SRV (0.04 sec)

  1. cluster/addons/dns/kube-dns/kube-dns.yaml.base

              failureThreshold: 5
            args:
            - --v=2
            - --logtostderr
            - --probe=kubedns,127.0.0.1:10053,kubernetes.default.svc.__DNS__DOMAIN__,5,SRV
            - --probe=dnsmasq,127.0.0.1:53,kubernetes.default.svc.__DNS__DOMAIN__,5,SRV
            ports:
            - containerPort: 10054
              name: metrics
              protocol: TCP
            resources:
              requests:
                memory: 20Mi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/internal/modfetch/codehost/git_test.go

    func testMain(m *testing.M) (err error) {
    	cfg.BuildX = testing.Verbose()
    
    	srv, err := vcstest.NewServer()
    	if err != nil {
    		return err
    	}
    	defer func() {
    		if closeErr := srv.Close(); err == nil {
    			err = closeErr
    		}
    	}()
    
    	gitrepo1 = srv.HTTP.URL + "/git/gitrepo1"
    	hgrepo1 = srv.HTTP.URL + "/hg/hgrepo1"
    	vgotest1 = srv.HTTP.URL + "/git/vgotest1"
    
    	dir, err := os.MkdirTemp("", "gitrepo-test-")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. src/crypto/tls/example_test.go

    	cert, err := tls.X509KeyPair(certPem, keyPem)
    	if err != nil {
    		log.Fatal(err)
    	}
    	cfg := &tls.Config{Certificates: []tls.Certificate{cert}}
    	srv := &http.Server{
    		TLSConfig:    cfg,
    		ReadTimeout:  time.Minute,
    		WriteTimeout: time.Minute,
    	}
    	log.Fatal(srv.ListenAndServeTLS("", ""))
    }
    
    func ExampleConfig_verifyConnection() {
    	// VerifyConnection can be used to replace and customize connection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/main/java/jcifs/netbios/UniAddress.java

                        dots++;
                        i++;
                    }
                }
            }
    
            return false;
        }
    
        /**
         * Perform DNS SRV lookup on successively shorter suffixes of name
         * and return successful suffix or throw an UnknownHostException.
         * import javax.naming.*;
         * import javax.naming.directory.*;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  8. 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)
  9. pkg/volume/validation/pv_validation_test.go

    				},
    				AccessModes: []api.PersistentVolumeAccessMode{api.ReadWriteOnce},
    				PersistentVolumeSource: api.PersistentVolumeSource{
    					NFS: &api.NFSVolumeSource{Server: "localhost", Path: "/srv", ReadOnly: false},
    				},
    			}),
    		},
    		"volume with mount option for host path": {
    			isExpectedFailure: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. src/net/resolverdialfunc_test.go

    		}
    	})
    
    	t.Run("LookupSRV", func(t *testing.T) {
    		_, got, err := r.LookupSRV(ctx, "some-service", "tcp", fakeDomain)
    		if err != nil {
    			t.Fatal(err)
    		}
    		want := []*SRV{
    			{
    				Target:   "foo.bar.",
    				Port:     80,
    				Priority: 1,
    				Weight:   2,
    			},
    			{
    				Target:   "bar.baz.",
    				Port:     81,
    				Priority: 2,
    				Weight:   3,
    			},
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top