Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,091 for net (0.22 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

    package okhttp3.internal.cache
    
    import java.net.HttpURLConnection.HTTP_BAD_METHOD
    import java.net.HttpURLConnection.HTTP_GONE
    import java.net.HttpURLConnection.HTTP_MOVED_PERM
    import java.net.HttpURLConnection.HTTP_MOVED_TEMP
    import java.net.HttpURLConnection.HTTP_MULT_CHOICE
    import java.net.HttpURLConnection.HTTP_NOT_AUTHORITATIVE
    import java.net.HttpURLConnection.HTTP_NOT_FOUND
    import java.net.HttpURLConnection.HTTP_NOT_IMPLEMENTED
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

    import java.io.IOException
    import java.net.InetSocketAddress
    import java.net.Socket
    import java.security.GeneralSecurityException
    import java.security.KeyStore
    import java.security.Security
    import java.util.logging.Level
    import java.util.logging.Logger
    import javax.net.ssl.ExtendedSSLSession
    import javax.net.ssl.SNIHostName
    import javax.net.ssl.SSLContext
    import javax.net.ssl.SSLSocket
    import javax.net.ssl.SSLSocketFactory
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/net/http/httputil/persist.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package httputil
    
    import (
    	"bufio"
    	"errors"
    	"io"
    	"net"
    	"net/http"
    	"net/textproto"
    	"sync"
    )
    
    var (
    	// Deprecated: No longer used.
    	ErrPersistEOF = &http.ProtocolError{ErrorString: "persistent connection closed"}
    
    	// Deprecated: No longer used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/tls/ClientAuthTest.kt

    import java.io.IOException
    import java.net.SocketException
    import java.security.GeneralSecurityException
    import java.security.SecureRandom
    import java.security.cert.X509Certificate
    import java.util.Arrays
    import javax.net.ssl.KeyManager
    import javax.net.ssl.SSLContext
    import javax.net.ssl.SSLException
    import javax.net.ssl.SSLHandshakeException
    import javax.net.ssl.SSLPeerUnverifiedException
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package proxy
    
    import (
    	"bytes"
    	"crypto/rand"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. src/net/http/httptest/server.go

    	"crypto/x509"
    	"flag"
    	"fmt"
    	"log"
    	"net"
    	"net/http"
    	"net/http/internal/testcert"
    	"os"
    	"strings"
    	"sync"
    	"time"
    )
    
    // A Server is an HTTP server listening on a system-chosen port on the
    // local loopback interface, for use in end-to-end HTTP tests.
    type Server struct {
    	URL      string // base URL of form http://ipaddr:port with no trailing slash
    	Listener net.Listener
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"path"
    	"strconv"
    	"strings"
    	"syscall"
    
    	"github.com/spf13/pflag"
    	"k8s.io/klog/v2"
    	netutils "k8s.io/utils/net"
    
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apiserver/pkg/server"
    	"k8s.io/apiserver/pkg/server/dynamiccertificates"
    	certutil "k8s.io/client-go/util/cert"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_test.go

    // localListener is set up by TestMain and used by localPipe to create Conn
    // pairs like net.Pipe, but connected by an actual buffered TCP connection.
    var localListener struct {
    	mu   sync.Mutex
    	addr net.Addr
    	ch   chan net.Conn
    }
    
    const localFlakes = 0 // change to 1 or 2 to exercise localServer/localPipe handling of mismatches
    
    func localServer(l net.Listener) {
    	for n := 0; ; n++ {
    		c, err := l.Accept()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    package proxy
    
    import (
    	"bufio"
    	"bytes"
    	"errors"
    	"fmt"
    	"net"
    	"net/http"
    	"strings"
    	"sync"
    	"time"
    
    	gwebsocket "github.com/gorilla/websocket"
    
    	"k8s.io/apimachinery/pkg/util/httpstream"
    	"k8s.io/apimachinery/pkg/util/httpstream/spdy"
    	"k8s.io/apimachinery/pkg/util/httpstream/wsstream"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	constants "k8s.io/apimachinery/pkg/util/portforward"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/README.md

    ```
    kernel/net/ipv4/netfilter/nf_conntrack_ipv4.ko
    kernel/net/netfilter/ipvs/ip_vs.ko
    kernel/net/netfilter/ipvs/ip_vs_rr.ko
    kernel/net/netfilter/ipvs/ip_vs_wrr.ko
    kernel/net/netfilter/ipvs/ip_vs_lc.ko
    kernel/net/netfilter/ipvs/ip_vs_wlc.ko
    kernel/net/netfilter/ipvs/ip_vs_fo.ko
    kernel/net/netfilter/ipvs/ip_vs_ovf.ko
    kernel/net/netfilter/ipvs/ip_vs_lblc.ko
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
Back to top