Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,090 for net (0.02 sec)

  1. guava-tests/test/com/google/common/net/MediaTypeTest.java

     */
    
    package com.google.common.net;
    
    import static com.google.common.net.MediaType.ANY_APPLICATION_TYPE;
    import static com.google.common.net.MediaType.ANY_AUDIO_TYPE;
    import static com.google.common.net.MediaType.ANY_IMAGE_TYPE;
    import static com.google.common.net.MediaType.ANY_TEXT_TYPE;
    import static com.google.common.net.MediaType.ANY_TYPE;
    import static com.google.common.net.MediaType.ANY_VIDEO_TYPE;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/MediaTypeTest.java

     */
    
    package com.google.common.net;
    
    import static com.google.common.net.MediaType.ANY_APPLICATION_TYPE;
    import static com.google.common.net.MediaType.ANY_AUDIO_TYPE;
    import static com.google.common.net.MediaType.ANY_IMAGE_TYPE;
    import static com.google.common.net.MediaType.ANY_TEXT_TYPE;
    import static com.google.common.net.MediaType.ANY_TYPE;
    import static com.google.common.net.MediaType.ANY_VIDEO_TYPE;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/grpcgen/grpcgen_test.go

    	ds := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		ListenerBuilder: func() (net.Listener, error) {
    			return net.Listen("tcp", "127.0.0.1:0")
    		},
    	})
    	sd := ds.MemRegistry
    
    	lis, err := net.Listen("tcp", ":0")
    	if err != nil {
    		t.Fatalf("net.Listen failed: %v", err)
    	}
    	_, ports, _ := net.SplitHostPort(lis.Addr().String())
    	port, _ := strconv.Atoi(ports)
    
    	// Echo service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. pkg/test/echo/server/endpoint/http.go

    // limitations under the License.
    
    package endpoint
    
    import (
    	"bytes"
    	"context"
    	"crypto/tls"
    	"fmt"
    	"math/rand"
    	"net"
    	"net/http"
    	"os"
    	"sort"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/google/uuid"
    	"github.com/gorilla/websocket"
    	"golang.org/x/net/http2"
    
    	"istio.io/istio/pkg/h2c"
    	"istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/echo/common"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. cmd/endpoint.go

    				return net.JoinHostPort(ip, port)
    			})
    
    			ipList = ipList.Union(IPsWithPort)
    		}
    
    		ipList.Add(net.JoinHostPort(host, port))
    	}
    
    	globalDomainIPs = ipList.FuncMatch(func(ip string, matchString string) bool {
    		host, _, err := net.SplitHostPort(ip)
    		if err != nil {
    			host = ip
    		}
    		return !net.ParseIP(host).IsLoopback() && host != "localhost"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. security/pkg/server/ca/server_test.go

    	}
    	mockCertChain := []string{"cert", "cert_chain", "root_cert"}
    	mockIPAddr := &net.IPAddr{IP: net.IPv4(192, 168, 1, 1)}
    	testCerts := map[string]struct {
    		certChain    [][]*x509.Certificate
    		caller       *security.Caller
    		fakeAuthInfo *mockAuthInfo
    		code         codes.Code
    		ipAddr       *net.IPAddr
    	}{
    		// no client certificate is presented
    		"No client certificate": {
    			certChain: nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/ztunnelserver.go

    }
    
    type updateRequest struct {
    	Update []byte
    	Fd     *int
    
    	Resp chan updateResponse
    }
    
    type ZtunnelConnection struct {
    	u       *net.UnixConn
    	Updates chan updateRequest
    }
    
    func newZtunnelConnection(u *net.UnixConn) *ZtunnelConnection {
    	return &ZtunnelConnection{u: u, Updates: make(chan updateRequest, 100)}
    }
    
    func (z *ZtunnelConnection) Close() {
    	z.u.Close()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. samples/extauthz/cmd/extauthz/main.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package main
    
    import (
    	"context"
    	"flag"
    	"fmt"
    	"io"
    	"log"
    	"net"
    	"net/http"
    	"os"
    	"os/signal"
    	"strings"
    	"sync"
    	"syscall"
    
    	corev2 "github.com/envoyproxy/go-control-plane/envoy/api/v2/core"
    	corev3 "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/status/server_test.go

    // limitations under the License.
    
    package status
    
    import (
    	"context"
    	"crypto/tls"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/prometheus/client_golang/prometheus"
    	"github.com/prometheus/common/expfmt"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/preflight/checks_test.go

    			serviceCidr: "10.96.0.0/16,fda9:d324:354d:1::/112",
    			expStr:      []string{"FileContent--proc-sys-net-ipv4-ip_forward", "FileContent--proc-sys-net-ipv6-conf-default-forwarding"},
    		},
    		{
    			testName:    "single stack ipv4",
    			PodSubnet:   "10.244.0.0/16",
    			serviceCidr: "10.96.0.0/16",
    			expStr:      []string{"FileContent--proc-sys-net-ipv4-ip_forward"},
    		},
    		{
    			testName:    "single stack ipv6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top