Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for ifeq (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ifreq_linux.go

    package unix
    
    import (
    	"unsafe"
    )
    
    // Helpers for dealing with ifreq since it contains a union and thus requires a
    // lot of unsafe.Pointer casts to use properly.
    
    // An Ifreq is a type-safe wrapper around the raw ifreq struct. An Ifreq
    // contains an interface name and a union of arbitrary data which can be
    // accessed using the Ifreq's methods. To create an Ifreq, use the NewIfreq
    // function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/net/http/client.go

    					host = req.Host
    				}
    			}
    			ireq := reqs[0]
    			req = &Request{
    				Method:   redirectMethod,
    				Response: resp,
    				URL:      u,
    				Header:   make(Header),
    				Host:     host,
    				Cancel:   ireq.Cancel,
    				ctx:      ireq.ctx,
    			}
    			if includeBody && ireq.GetBody != nil {
    				req.Body, err = ireq.GetBody()
    				if err != nil {
    					resp.closeBody()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  3. src/syscall/mksysctl_openbsd.pl

    	"net.inet6.udp6" => "net.inet.udp",
    	"mpls" => "net.mpls",
    	"swpenc" => "vm.swapencrypt"
    );
    
    # Node mappings
    my %node_map = (
    	"net.inet.ip.ifq" => "net.ifq",
    	"net.inet.pfsync" => "net.pfsync",
    	"net.mpls.ifq" => "net.ifq"
    );
    
    my $ctlname;
    my %mib = ();
    my %sysctl = ();
    my $node;
    
    sub debug() {
    	print STDERR "$_[0]\n" if $debug;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    	return ByteSliceToString(value[:]), err
    }
    
    // IoctlIfreq performs an ioctl using an Ifreq structure for input and/or
    // output. See the netdevice(7) man page for details.
    func IoctlIfreq(fd int, req uint, value *Ifreq) error {
    	// It is possible we will add more fields to *Ifreq itself later to prevent
    	// misuse, so pass the raw *ifreq directly.
    	return ioctlPtr(fd, req, unsafe.Pointer(&value.raw))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/service_test.go

    			isEq := WorkloadInstancesEqual(testCase.comparer, testCase.comparee)
    			isEqReverse := WorkloadInstancesEqual(testCase.comparee, testCase.comparer)
    
    			if isEq != isEqReverse {
    				t.Errorf(
    					"returned different for reversing arguments for structs: %v , and %v",
    					testCase.comparer,
    					testCase.comparee,
    				)
    			}
    			if isEq != testCase.shouldEq {
    				t.Errorf(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go

    	{"net.inet.ip.encdebug", []_C_int{4, 2, 0, 12}},
    	{"net.inet.ip.forwarding", []_C_int{4, 2, 0, 1}},
    	{"net.inet.ip.ifq.congestion", []_C_int{4, 2, 0, 30, 4}},
    	{"net.inet.ip.ifq.drops", []_C_int{4, 2, 0, 30, 3}},
    	{"net.inet.ip.ifq.len", []_C_int{4, 2, 0, 30, 1}},
    	{"net.inet.ip.ifq.maxlen", []_C_int{4, 2, 0, 30, 2}},
    	{"net.inet.ip.maxqueue", []_C_int{4, 2, 0, 11}},
    	{"net.inet.ip.mforwarding", []_C_int{4, 2, 0, 31}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go

    	{"net.inet.ip.encdebug", []_C_int{4, 2, 0, 12}},
    	{"net.inet.ip.forwarding", []_C_int{4, 2, 0, 1}},
    	{"net.inet.ip.ifq.congestion", []_C_int{4, 2, 0, 30, 4}},
    	{"net.inet.ip.ifq.drops", []_C_int{4, 2, 0, 30, 3}},
    	{"net.inet.ip.ifq.len", []_C_int{4, 2, 0, 30, 1}},
    	{"net.inet.ip.ifq.maxlen", []_C_int{4, 2, 0, 30, 2}},
    	{"net.inet.ip.maxqueue", []_C_int{4, 2, 0, 11}},
    	{"net.inet.ip.mforwarding", []_C_int{4, 2, 0, 31}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. src/syscall/zsysctl_openbsd.go

    	{"net.inet.ip.encdebug", []_C_int{4, 2, 0, 12}},
    	{"net.inet.ip.forwarding", []_C_int{4, 2, 0, 1}},
    	{"net.inet.ip.ifq.congestion", []_C_int{4, 2, 0, 30, 4}},
    	{"net.inet.ip.ifq.drops", []_C_int{4, 2, 0, 30, 3}},
    	{"net.inet.ip.ifq.len", []_C_int{4, 2, 0, 30, 1}},
    	{"net.inet.ip.ifq.maxlen", []_C_int{4, 2, 0, 30, 2}},
    	{"net.inet.ip.maxqueue", []_C_int{4, 2, 0, 11}},
    	{"net.inet.ip.mforwarding", []_C_int{4, 2, 0, 31}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go

    	{"net.inet.ip.encdebug", []_C_int{4, 2, 0, 12}},
    	{"net.inet.ip.forwarding", []_C_int{4, 2, 0, 1}},
    	{"net.inet.ip.ifq.congestion", []_C_int{4, 2, 0, 30, 4}},
    	{"net.inet.ip.ifq.drops", []_C_int{4, 2, 0, 30, 3}},
    	{"net.inet.ip.ifq.len", []_C_int{4, 2, 0, 30, 1}},
    	{"net.inet.ip.ifq.maxlen", []_C_int{4, 2, 0, 30, 2}},
    	{"net.inet.ip.maxqueue", []_C_int{4, 2, 0, 11}},
    	{"net.inet.ip.mforwarding", []_C_int{4, 2, 0, 31}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go

    	{"net.inet.ip.encdebug", []_C_int{4, 2, 0, 12}},
    	{"net.inet.ip.forwarding", []_C_int{4, 2, 0, 1}},
    	{"net.inet.ip.ifq.congestion", []_C_int{4, 2, 0, 30, 4}},
    	{"net.inet.ip.ifq.drops", []_C_int{4, 2, 0, 30, 3}},
    	{"net.inet.ip.ifq.len", []_C_int{4, 2, 0, 30, 1}},
    	{"net.inet.ip.ifq.maxlen", []_C_int{4, 2, 0, 30, 2}},
    	{"net.inet.ip.maxqueue", []_C_int{4, 2, 0, 11}},
    	{"net.inet.ip.mforwarding", []_C_int{4, 2, 0, 31}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top