Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,089 for net (0.05 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    	"crypto/x509"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"net/http/httputil"
    	"net/url"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"golang.org/x/net/websocket"
    
    	"k8s.io/apimachinery/pkg/util/httpstream"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    )
    
    const fakeStatusCode = 567
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/controller/nodeipam/ipam/sync/sync.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package sync
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"time"
    
    	"k8s.io/klog/v2"
    	netutils "k8s.io/utils/net"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/kubernetes/pkg/controller/nodeipam/ipam/cidrset"
    )
    
    const (
    	// InvalidPodCIDR is the event recorded when a node is found with an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. src/net/dial.go

    	case *UnixAddr:
    		la, _ := la.(*UnixAddr)
    		c, err = sd.dialUnix(ctx, la, ra)
    	default:
    		return nil, &OpError{Op: "dial", Net: sd.network, Source: la, Addr: ra, Err: &AddrError{Err: "unexpected address type", Addr: sd.address}}
    	}
    	if err != nil {
    		return nil, &OpError{Op: "dial", Net: sd.network, Source: la, Addr: ra, Err: err} // c is non-nil interface containing nil pointer
    	}
    	return c, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/ConnectionCoalescingTest.kt

    import assertk.fail
    import java.io.IOException
    import java.net.InetAddress
    import java.net.InetSocketAddress
    import java.net.Proxy
    import java.security.cert.X509Certificate
    import java.util.Arrays
    import java.util.concurrent.CountDownLatch
    import java.util.concurrent.atomic.AtomicInteger
    import java.util.concurrent.atomic.AtomicReference
    import javax.net.ssl.HostnameVerifier
    import javax.net.ssl.SSLPeerUnverifiedException
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    				IPs:      []net.IP{{127, 0, 0, 1}},
    			},
    			&certutil.AltNames{
    				DNSNames: []string{"a"},
    				IPs:      []net.IP{{127, 0, 0, 1}},
    			},
    		},
    		{
    			&certutil.AltNames{
    				DNSNames: []string{"a"},
    				IPs:      []net.IP{{127, 0, 0, 1}, {127, 0, 0, 1}},
    			},
    			&certutil.AltNames{
    				DNSNames: []string{"a"},
    				IPs:      []net.IP{{127, 0, 0, 1}},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http/CancelTest.kt

    import assertk.assertions.isEqualTo
    import assertk.assertions.startsWith
    import assertk.fail
    import java.io.IOException
    import java.net.ServerSocket
    import java.net.Socket
    import java.util.concurrent.CountDownLatch
    import java.util.concurrent.TimeUnit.MILLISECONDS
    import javax.net.ServerSocketFactory
    import javax.net.SocketFactory
    import kotlin.test.assertFailsWith
    import mockwebserver3.MockResponse
    import mockwebserver3.MockWebServer
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top