Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,653 for net (0.03 sec)

  1. src/net/http/transport_internal_test.go

    import (
    	"bytes"
    	"context"
    	"crypto/tls"
    	"errors"
    	"io"
    	"net"
    	"net/http/internal/testcert"
    	"strings"
    	"testing"
    )
    
    // Issue 15446: incorrect wrapping of errors when server closes an idle connection.
    func TestTransportPersistConnReadLoopEOF(t *testing.T) {
    	ln := newLocalListener(t)
    	defer ln.Close()
    
    	connc := make(chan net.Conn, 1)
    	go func() {
    		defer close(connc)
    		c, err := ln.Accept()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. okhttp-android/src/main/kotlin/okhttp3/android/AndroidAsyncDns.kt

     *
     */
    
    package okhttp3.android
    
    import android.net.DnsResolver
    import android.net.Network
    import android.os.Build
    import androidx.annotation.RequiresApi
    import java.net.InetAddress
    import java.net.UnknownHostException
    import java.util.concurrent.Executors
    import okhttp3.AsyncDns
    import okhttp3.ExperimentalOkHttpApi
    
    /**
     * DNS implementation based on android.net.DnsResolver, which submits a request for
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 10:07:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/validation/vld_unix.go

    package validation
    
    import (
    	"errors"
    	"fmt"
    	"net"
    	"syscall"
    
    	"golang.org/x/sys/unix"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    // Recover the original address from redirect socket. Supposed to work for tcp over ipv4 and ipv6.
    func GetOriginalDestination(conn net.Conn) (daddr net.IP, dport uint16, err error) {
    	// obtain os fd from Conn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/RetryTlsHandshake.kt

     * limitations under the License.
     */
    package okhttp3.internal.connection
    
    import java.io.InterruptedIOException
    import java.net.ProtocolException
    import java.security.cert.CertificateException
    import javax.net.ssl.SSLException
    import javax.net.ssl.SSLHandshakeException
    import javax.net.ssl.SSLPeerUnverifiedException
    import okio.IOException
    
    /** Returns true if a TLS connection should be retried after [e]. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 07 16:05:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/node_ipam_controller.go

    type Controller struct {
    	allocatorType ipam.CIDRAllocatorType
    
    	cloud                cloudprovider.Interface
    	clusterCIDRs         []*net.IPNet
    	serviceCIDR          *net.IPNet
    	secondaryServiceCIDR *net.IPNet
    	kubeClient           clientset.Interface
    	eventBroadcaster     record.EventBroadcaster
    
    	nodeLister         corelisters.NodeLister
    	nodeInformerSynced cache.InformerSynced
    
    	legacyIPAM    ipamController
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. okhttp-testing-support/src/main/kotlin/okhttp3/SpecificHostSocketFactory.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3
    
    import java.net.InetAddress
    import java.net.InetSocketAddress
    import java.net.Socket
    import java.net.SocketAddress
    import okhttp3.internal.platform.Platform
    
    /**
     * A [SocketFactory] that redirects connections to [defaultAddress] or specific overridden address via [set].
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/LinuxFileWatcherRegistryFactory.java

     */
    
    package org.gradle.internal.watch.registry.impl;
    
    import net.rubygrapefruit.platform.NativeIntegrationUnavailableException;
    import net.rubygrapefruit.platform.file.FileEvents;
    import net.rubygrapefruit.platform.file.FileWatchEvent;
    import net.rubygrapefruit.platform.internal.jni.LinuxFileEventFunctions;
    import net.rubygrapefruit.platform.internal.jni.LinuxFileEventFunctions.LinuxFileWatcher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_errors.txt

    # of the requested package (by default, the package in the current directory)
    # cannot be resolved.
    
    ! go get
    stderr '^go: example.com/m imports\n\texample.com/badimport imports\n\texample.net/oops: cannot find module providing package example.net/oops$'
    cmp go.mod.orig go.mod
    
    cd importsyntax
    
    
    # A syntax error in a dependency prevents the compiler from needing that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. pkg/kubelet/sysctl/util_test.go

    			Value: "1",
    		},
    		{
    			Name:  "net.ipv4.conf.eno2/100.rp_filter",
    			Value: "1",
    		},
    		{
    			Name:  "net/ipv4/ip_local_port_range",
    			Value: "1024 65535",
    		},
    	}
    	exceptSysctls := []v1.Sysctl{
    		{
    			Name:  "kernel.msgmax",
    			Value: "8192",
    		},
    		{
    			Name:  "kernel.shm_rmid_forced",
    			Value: "1",
    		},
    		{
    			Name:  "net.ipv4.conf.eno2/100.rp_filter",
    			Value: "1",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:28 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_compat.txt

    module example.com/m
    
    go 1.17
    
    replace example.net/lazy v0.1.0 => ./lazy
    
    require (
    	example.com/version v1.1.0
    	example.net/lazy v0.1.0
    )
    -- m_all.txt --
    example.com/m
    example.com/version v1.1.0
    example.net/lazy v0.1.0 => ./lazy
    -- compatible.go --
    package compatible
    
    import (
    	_ "example.com/version"
    	_ "example.net/lazy"
    )
    -- lazy/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top