Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,089 for net (0.03 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java

    import java.io.BufferedInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.InputStream;
    import java.io.UnsupportedEncodingException;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.net.URLEncoder;
    import java.nio.file.Files;
    import java.nio.file.attribute.AclFileAttributeView;
    import java.nio.file.attribute.FileOwnerAttributeView;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    import (
    	"context"
    	"crypto/tls"
    	"crypto/x509"
    	"io"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    
    	"github.com/armon/go-socks5"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/apimachinery/pkg/util/httpstream"
    	utilnettesting "k8s.io/apimachinery/pkg/util/net/testing"
    )
    
    type serverHandlerConfig struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  3. pkg/probe/http/http_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package http
    
    import (
    	"bytes"
    	"fmt"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"os"
    	"sort"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	"k8s.io/apimachinery/pkg/util/wait"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:40:08 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. pkg/controller/nodeipam/ipam/range_allocator.go

    limitations under the License.
    */
    
    package ipam
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/klog/v2"
    	netutils "k8s.io/utils/net"
    
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/types"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/net/http/roundtrip_js.go

    			cl, err := strconv.ParseInt(clHeader, 10, 64)
    			if err != nil {
    				errCh <- fmt.Errorf("net/http: ill-formed Content-Length header: %v", err)
    				return nil
    			}
    			if cl < 0 {
    				// Content-Length values less than 0 are invalid.
    				// See: https://datatracker.ietf.org/doc/html/rfc2616/#section-14.13
    				errCh <- fmt.Errorf("net/http: invalid Content-Length header: %q", clHeader)
    				return nil
    			}
    			contentLength = cl
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

    import java.io.IOException
    import java.lang.ref.Reference
    import java.net.Proxy
    import java.net.Socket
    import java.net.SocketException
    import java.security.cert.X509Certificate
    import java.util.concurrent.TimeUnit.MILLISECONDS
    import java.util.concurrent.locks.ReentrantLock
    import javax.net.ssl.SSLPeerUnverifiedException
    import javax.net.ssl.SSLSocket
    import kotlin.concurrent.withLock
    import okhttp3.Address
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    	s := grpc.NewServer(opts...)
    	t.Cleanup(s.Stop)
    	lis, err := net.Listen("tcp", mockServerAddress)
    	if err != nil {
    		t.Fatalf("failed to listen: %v", err)
    	}
    
    	go func() {
    		pb.RegisterIstioCertificateServiceServer(s, &ca)
    		if err := s.Serve(lis); err != nil {
    			t.Logf("failed to serve: %v", err)
    		}
    	}()
    	_, port, _ := net.SplitHostPort(lis.Addr().String())
    	return fmt.Sprintf("localhost:%s", port)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.dnsoverhttps
    
    import java.io.IOException
    import java.net.HttpURLConnection
    import java.net.InetAddress
    import java.net.UnknownHostException
    import java.util.concurrent.CountDownLatch
    import okhttp3.CacheControl
    import okhttp3.Call
    import okhttp3.Callback
    import okhttp3.Dns
    import okhttp3.HttpUrl
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Mar 22 07:09:21 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. go.work.sum

    golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
    golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
    golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
    golang.org/x/net v0.12.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:12 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/network.go

    		}
    	}
    	return ""
    }
    
    // namedRangerEntry for holding network's CIDR and name
    type namedRangerEntry struct {
    	name    network.ID
    	network net.IPNet
    }
    
    // Network returns the IPNet for the network
    func (n namedRangerEntry) Network() net.IPNet {
    	return n.network
    }
    
    // onNetworkChange is fired if the default network is changed either via the namespace label or mesh-networks
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top