Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 850 for net (0.02 sec)

  1. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

     */
    package okhttp3
    
    import java.io.File
    import java.io.IOException
    import java.math.BigInteger
    import java.net.CookieHandler
    import java.net.InetAddress
    import java.net.InetSocketAddress
    import java.net.Proxy
    import java.net.ProxySelector
    import java.net.Socket
    import java.net.URI
    import java.net.URL
    import java.nio.charset.Charset
    import java.security.KeyPair
    import java.security.KeyPairGenerator
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. gradle/wrapper/gradle-wrapper.jar

    systemProperties; public final int networkTimeout; public static java.util.HashMap convertSystemPropert(java.util.Properties); public void Download(Logger, java.util.HashMap, int); public static java.net.URI safeUri(java.net.URI); public final void configureProxyAuthen(); public final void addBasicAuthenticati(java.net.URI, java.net.URLConnection); public final String calculateUserAgent(); } org/gradle/wrapper/ExclusiveFileAccessM.class package org.gradle.wrapper; public final synchronized class ExclusiveFileAccessM...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  3. src/net/http/fcgi/child.go

    // license that can be found in the LICENSE file.
    
    package fcgi
    
    // This file implements FastCGI from the perspective of a child process.
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"net/http/cgi"
    	"os"
    	"strings"
    	"time"
    )
    
    // request holds the state for an in-progress request. As soon as it's complete,
    // it's converted to an http.Request.
    type request struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CookieTest.kt

      @Test fun idnDomainMatches() {
        val cookie = parse("http://☃.net/".toHttpUrl(), "a=b; domain=☃.net")
        assertThat(cookie!!.matches("http://☃.net/".toHttpUrl())).isTrue()
        assertThat(cookie.matches("http://xn--n3h.net/".toHttpUrl())).isTrue()
        assertThat(cookie.matches("http://www.☃.net/".toHttpUrl())).isTrue()
        assertThat(cookie.matches("http://www.xn--n3h.net/".toHttpUrl())).isTrue()
      }
    
      @Test fun punycodeDomainMatches() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/go.sum

    golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
    golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
    golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
    golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    */
    
    package proxy
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"io"
    	"log"
    	"net"
    	"net/http"
    	"net/http/httputil"
    	"net/url"
    	"os"
    	"strings"
    	"time"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/util/httpstream"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    
    	"github.com/mxk/go-flowrate/flowrate"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.internal.watch.registry.impl;
    
    import net.rubygrapefruit.platform.file.FileWatchEvent;
    import net.rubygrapefruit.platform.file.FileWatcher;
    import net.rubygrapefruit.platform.internal.jni.AbstractNativeFileEventFunctions;
    import net.rubygrapefruit.platform.internal.jni.NativeLogger;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

    import javax.annotation.CheckForNull;
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    import javax.net.ssl.SSLException;
    import javax.net.ssl.SSLHandshakeException;
    import java.io.Closeable;
    import java.io.IOException;
    import java.net.SocketException;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute.go

    //
    // - Given foo.local.campus.net on proxy domain local.campus.net, this function generates
    // foo:80, foo.local:80, foo.local.campus:80, with and without ports. It will not generate
    // foo.local.campus.net (full hostname) since its already added elsewhere.
    //
    // - Given foo.local.campus.net on proxy domain remote.campus.net, this function generates
    // foo.local:80, foo.local.campus:80
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. src/net/smtp/smtp.go

    func Dial(addr string) (*Client, error) {
    	conn, err := net.Dial("tcp", addr)
    	if err != nil {
    		return nil, err
    	}
    	host, _, _ := net.SplitHostPort(addr)
    	return NewClient(conn, host)
    }
    
    // NewClient returns a new [Client] using an existing connection and host as a
    // server name to be used when authenticating.
    func NewClient(conn net.Conn, host string) (*Client, error) {
    	text := textproto.NewConn(conn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top