Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 115 for SRV (0.02 sec)

  1. src/os/path_windows_test.go

    		// UNC Absolute
    		{`\\srv\share\long`, `\\?\UNC\srv\share\long`},
    		{`//srv/share/long`, `\\?\UNC\srv\share\long`},
    		{`/\srv/share/long`, `\\?\UNC\srv\share\long`},
    		{`\\srv\share\long\`, `\\?\UNC\srv\share\long\`},
    		{`\\srv\share\bar\.\long`, `\\?\UNC\srv\share\bar\long`},
    		{`\\srv\share\bar\..\long`, `\\?\UNC\srv\share\long`},
    		{`\\srv\share\bar\..\..\long`, `\\?\UNC\srv\share\long`}, // share name is not removed by ".."
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pkg/test/echo/proto/echo_grpc.pb.go

    type UnsafeEchoTestServiceServer interface {
    	mustEmbedUnimplementedEchoTestServiceServer()
    }
    
    func RegisterEchoTestServiceServer(s grpc.ServiceRegistrar, srv EchoTestServiceServer) {
    	s.RegisterService(&EchoTestService_ServiceDesc, srv)
    }
    
    func _EchoTestService_Echo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
    	in := new(EchoRequest)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 26 01:14:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. src/net/dnsclient.go

    		s += "."
    	}
    	return s
    }
    
    // An SRV represents a single DNS SRV record.
    type SRV struct {
    	Target   string
    	Port     uint16
    	Priority uint16
    	Weight   uint16
    }
    
    // byPriorityWeight sorts SRV records by ascending priority and weight.
    type byPriorityWeight []*SRV
    
    // shuffleByWeight shuffles SRV records by weight using the algorithm
    // described in RFC 2782.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. internal/config/dns/types.go

    	// Holds info about when the entry was created first.
    	CreationDate time.Time `json:"creationDate"`
    
    	// When a SRV record with a "Host: IP-address" is added, we synthesize
    	// a srv.Target domain name.  Normally we convert the full Key where
    	// the record lives to a DNS name and use this as the srv.Target. When
    	// TargetStrip > 0 we strip the left most TargetStrip labels from the
    	// DNS name.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. cluster/gce/manifests/kube-addon-manager.yaml

          readOnly: false
        - mountPath: /etc/srv/kubernetes/addon-manager/
          name: srvkube
          readOnly: true
        env:
        - name: KUBECTL_PRUNE_WHITELIST_OVERRIDE
          value: {{kubectl_prune_whitelist_override}}
        - name: KUBECTL_EXTRA_PRUNE_WHITELIST
          value: {{kubectl_extra_prune_whitelist}}
        - name: KUBECTL_OPTS
          value: '--kubeconfig=/etc/srv/kubernetes/addon-manager/kubeconfig'
      volumes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 03:09:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/net/http/server.go

    // Close returns any error returned from closing the [Server]'s
    // underlying Listener(s).
    func (srv *Server) Close() error {
    	srv.inShutdown.Store(true)
    	srv.mu.Lock()
    	defer srv.mu.Unlock()
    	err := srv.closeListenersLocked()
    
    	// Unlock srv.mu while waiting for listenerGroup.
    	// The group Add and Done calls are made with srv.mu held,
    	// to avoid adding a new listener in the window between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. src/crypto/tls/tls_test.go

    		t.Fatal(err)
    	}
    	defer conn.Close()
    
    	srv := <-srvCh
    	if srv == nil {
    		return serr
    	}
    
    	buf := make([]byte, 6)
    
    	srv.Write([]byte("foobar"))
    	n, err := conn.Read(buf)
    	if n != 6 || err != nil || string(buf) != "foobar" {
    		return fmt.Errorf("Read = %d, %v, data %q; want 6, nil, foobar", n, err, buf)
    	}
    
    	srv.Write([]byte("abcdef"))
    	srv.Close()
    	time.Sleep(delay)
    	n, err = conn.Read(buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcweb/vcstest/vcstest_test.go

    		// coverage.
    		resp, err := http.Get(srv.URL)
    		if err == nil {
    			var body []byte
    			body, err = io.ReadAll(resp.Body)
    			if err == nil && testing.Verbose() {
    				t.Logf("GET %s:\n%s", srv.URL, body)
    			}
    			resp.Body.Close()
    		}
    		if err != nil {
    			t.Error(err)
    		}
    
    		srv.Close()
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 16:04:21 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. cluster/gce/manifests/kube-apiserver.manifest

            {{csc_config_mount}}
            {{audit_policy_config_mount}}
            {{audit_webhook_config_mount}}
            {{konnectivity_socket_mount}}
            { "name": "srvkube",
            "mountPath": "/etc/srv/kubernetes",
            "readOnly": true},
            { "name": "logfile",
            "mountPath": "/var/log/kube-apiserver.log",
            "readOnly": false},
            { "name": "auditlogfile",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  10. cluster/gce/manifests/cluster-autoscaler.manifest

                        },
                        {
                            "name": "srvkube",
                            "readOnly": true,
                            "mountPath": "/etc/srv/kubernetes/cluster-autoscaler"
                        },
                        {
                            "name": "logfile",
                            "mountPath": "/var/log/cluster-autoscaler.log",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:04:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top