Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for SRV (0.23 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/manifests/konnectivity-server.yaml

        - name: pki
          mountPath: /etc/srv/kubernetes/pki
          readOnly: true
        - name: konnectivity-uds
          mountPath: /etc/srv/kubernetes/konnectivity-server
          readOnly: false
      volumes:
      - name: varlogkonnectivityserver
        hostPath:
          path: /var/log/konnectivity-server.log
          type: FileOrCreate
      - name: pki
        hostPath:
          path: /etc/srv/kubernetes/pki
      - name: konnectivity-uds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. cluster/gce/manifests/cloud-controller-manager.manifest

          "requests": {
            "cpu": "10m"
          }
        },
        "command": [
          "/cloud-pv-admission-labeler",
          "--addr=localhost:9001",
          "--tls-cert-path=/etc/srv/kubernetes/pki/cloud-pvl-admission/server.crt",
          "--tls-key-path=/etc/srv/kubernetes/pki/cloud-pvl-admission/server.key",
          "--cloud-provider=gce",
          "--cloud-config=/etc/gce.conf"
        ],
        "volumeMounts": [
            {{cloud_config_mount}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 08:50:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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. cmd/signals.go

    			}
    		}
    
    		if objAPI := newObjectLayerFn(); objAPI != nil {
    			shutdownLogIf(context.Background(), objAPI.Shutdown(context.Background()))
    		}
    
    		if srv := newConsoleServerFn(); srv != nil {
    			shutdownLogIf(context.Background(), srv.Shutdown())
    		}
    
    		if globalEventNotifier != nil {
    			globalEventNotifier.RemoveAllBucketTargets()
    		}
    
    		return true
    	}
    
    	for {
    		select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. 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)
  10. tests/integration/telemetry/policy/envoy_ratelimit_test.go

    		return
    	}
    
    	_, err = deployment.New(ctx).
    		With(&clt, echo.Config{
    			Service:        "clt",
    			Namespace:      echoNsInst,
    			ServiceAccount: true,
    		}).
    		With(&srv, echo.Config{
    			Service:   "srv",
    			Namespace: echoNsInst,
    			Ports: []echo.Port{
    				{
    					Name:     "http",
    					Protocol: protocol.HTTP,
    					// We use a port > 1024 to not require root
    					WorkloadPort: 8888,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top