Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,655 for net (0.12 sec)

  1. src/net/http/transport_default_other.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !wasm
    
    package http
    
    import (
    	"context"
    	"net"
    )
    
    func defaultTransportDialContext(dialer *net.Dialer) func(context.Context, string, string) (net.Conn, error) {
    	return dialer.DialContext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:10 UTC 2023
    - 362 bytes
    - Viewed (0)
  2. pkg/util/net/ip.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package net
    
    import (
    	"net"
    	"net/http"
    	"net/netip"
    
    	"istio.io/istio/pkg/log"
    )
    
    // IsValidIPAddress Tell whether the given IP address is valid or not
    func IsValidIPAddress(ip string) bool {
    	ipa, err := netip.ParseAddr(ip)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/requireincompatible v0.1.0 => ./requireincompatible
    )
    
    require example.net/lazy v0.1.0
    
    require example.com/retract/incompatible v1.0.0 // indirect
    -- incompatible.go --
    package incompatible
    
    import _ "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
    - 5.5K bytes
    - Viewed (0)
  4. internal/http/dial_linux.go

    type DialContext func(ctx context.Context, network, address string) (net.Conn, error)
    
    // NewInternodeDialContext setups a custom dialer for internode communication
    func NewInternodeDialContext(dialTimeout time.Duration, opts TCPOptions) DialContext {
    	return func(ctx context.Context, network, addr string) (net.Conn, error) {
    		dialer := &net.Dialer{
    			Timeout: dialTimeout,
    			Control: setTCPParametersFn(opts),
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. pkg/test/echo/server/forwarder/util.go

    // limitations under the License.
    
    package forwarder
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    	"net"
    	"net/http"
    	"net/url"
    	"sync"
    	"time"
    
    	"github.com/hashicorp/go-multierror"
    	"golang.org/x/net/proxy"
    
    	"istio.io/istio/pkg/hbone"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/echo/common"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. internal/grid/debug.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package grid
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"sync"
    	"time"
    
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/mux"
    )
    
    //go:generate stringer -type=debugMsg $GOFILE
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/net/http/http_test.go

    	}
    	wantSym := map[string]bool{
    		// Verify these exist: (sanity checking this test)
    		"net/http.(*Client).do":           true,
    		"net/http.(*Transport).RoundTrip": true,
    
    		// Verify these don't exist:
    		"net/http.http2Server":           false,
    		"net/http.(*Server).Serve":       false,
    		"net/http.(*ServeMux).ServeHTTP": false,
    		"net/http.DefaultServeMux":       false,
    	}
    	for sym, want := range wantSym {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 18:18:19 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. pkg/test/echo/server/endpoint/udp.go

    // limitations under the License.
    
    package endpoint
    
    import (
    	"fmt"
    	"net"
    	"net/http"
    	"os"
    	"strconv"
    	"strings"
    
    	"github.com/google/uuid"
    
    	"istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var _ Instance = &udpInstance{}
    
    type udpInstance struct {
    	Config
    	l net.PacketConn
    }
    
    func newUDP(config Config) Instance {
    	return &udpInstance{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. src/syscall/lsf_linux.go

    	"unsafe"
    )
    
    // Deprecated: Use golang.org/x/net/bpf instead.
    func LsfStmt(code, k int) *SockFilter {
    	return &SockFilter{Code: uint16(code), K: uint32(k)}
    }
    
    // Deprecated: Use golang.org/x/net/bpf instead.
    func LsfJump(code, k, jt, jf int) *SockFilter {
    	return &SockFilter{Code: uint16(code), Jt: uint8(jt), Jf: uint8(jf), K: uint32(k)}
    }
    
    // Deprecated: Use golang.org/x/net/bpf instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:27:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. src/net/rpc/jsonrpc/all_test.go

    	}
    	return err
    }
    
    func (p *pipe) LocalAddr() net.Addr {
    	return pipeAddr(0)
    }
    
    func (p *pipe) RemoteAddr() net.Addr {
    	return pipeAddr(0)
    }
    
    func (p *pipe) SetTimeout(nsec int64) error {
    	return errors.New("net.Pipe does not support timeouts")
    }
    
    func (p *pipe) SetReadTimeout(nsec int64) error {
    	return errors.New("net.Pipe does not support timeouts")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:09:53 UTC 2022
    - 7.8K bytes
    - Viewed (0)
Back to top