Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 307 for Opackets (0.41 sec)

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

    	Physical   uint8
    	Addrlen    uint8
    	Hdrlen     uint8
    	Recvquota  uint8
    	Xmitquota  uint8
    	Unused1    uint8
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint32
    	Ipackets   uint32
    	Ierrors    uint32
    	Opackets   uint32
    	Oerrors    uint32
    	Collisions uint32
    	Ibytes     uint32
    	Obytes     uint32
    	Imcasts    uint32
    	Omcasts    uint32
    	Iqdrops    uint32
    	Noproto    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    	Physical   uint8
    	Addrlen    uint8
    	Hdrlen     uint8
    	Recvquota  uint8
    	Xmitquota  uint8
    	Unused1    uint8
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint32
    	Ipackets   uint32
    	Ierrors    uint32
    	Opackets   uint32
    	Oerrors    uint32
    	Collisions uint32
    	Ibytes     uint32
    	Obytes     uint32
    	Imcasts    uint32
    	Omcasts    uint32
    	Iqdrops    uint32
    	Noproto    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. pkg/kubelet/winstats/network_stats.go

    )
    
    const (
    	packetsReceivedPerSecondQuery = "\\Network Adapter(*)\\Packets Received/sec"
    	packetsSentPerSecondQuery     = "\\Network Adapter(*)\\Packets Sent/sec"
    	bytesReceivedPerSecondQuery   = "\\Network Adapter(*)\\Bytes Received/sec"
    	bytesSentPerSecondQuery       = "\\Network Adapter(*)\\Bytes Sent/sec"
    	packetsReceivedDiscardedQuery = "\\Network Adapter(*)\\Packets Received Discarded"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                the whole match: \n \tSelector = \"!has(my_label)\" matches
                                packets that are from other Calico-controlled \tendpoints
                                that do not have the label “my_label”. \n \tNotSelector
                                = \"has(my_label)\" matches packets that are not from
                                Calico-controlled \tendpoints that do have the label “my_label”.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  5. src/net/net_fake.go

    	nBytes          int     // number of bytes enqueued in the packet buffers starting from head
    	readBufferBytes int     // soft limit on nbytes; no more packets may be enqueued when the limit is exceeded
    	readClosed      bool    // true if the reader of the queue has stopped reading
    	writeClosed     bool    // true if the writer of the queue has stopped writing; the reader sees either io.EOF or syscall.ECONNRESET when they have read all buffered packets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/run.go

    ) {
    	// TODO: add ip6 as well
    	for _, uid := range split(proxyUID) {
    		// Packets with dst port 53 from istio to zone 1. These are Istio calls to upstream resolvers
    		f.Run("-p", "udp", "--dport", "53", "-m", "owner", "--uid-owner", uid, "-j", constants.CT, "--zone", "1")
    		// Packets with src port 15053 from istio to zone 2. These are Istio response packets to application clients
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/globalnetworkpolicy-crd.yaml

                  doNotTrack:
                    description: DoNotTrack indicates whether packets matched by the rules
                      in this policy should go through the data plane's connection tracking,
                      such as Linux conntrack.  If True, the rules in this policy are
                      applied before any data plane connection tracking, and packets allowed
                      by this policy are marked as not to be tracked.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 45.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector_test.go

    		want    string
    	}{
    		{
    			name:    "stream packets",
    			metrics: []string{"konnectivity_network_proxy_client_stream_packets_total"},
    			trigger: func() {
    				clientmetrics.Metrics.ObservePacket(ccmetrics.SegmentFromClient, client.PacketType_DIAL_REQ)
    			},
    			want: `
    # HELP konnectivity_network_proxy_client_stream_packets_total Count of packets processed, by segment and packet type (example: from_client, DIAL_REQ)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 22:41:29 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. pkg/proxy/util/nfacct/nfacct_linux_test.go

    				0x00, 0x00, 0x00, 0x01,
    			},
    		}},
    	}
    
    	expected := []*Counter{
    		{Name: "random-test-metric", Packets: 134, Bytes: 2144},
    		{Name: "nfacct-list-test-metric", Packets: 134038, Bytes: 31901044},
    		{Name: "test", Packets: 147941304813314, Bytes: 31067674010795934},
    		{Name: "ct_invalid_dropped_packets", Packets: 1230217421033, Bytes: 14762609052396},
    	}
    
    	rnr, err := newInternal(hndlr)
    	assert.NoError(t, err)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. cni/pkg/iptables/iptables.go

    	//
    	// DESC: If we have a packet mark, set a connmark.
    	iptablesBuilder.AppendRule(iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE, "-m", "mark",
    		"--mark", inpodMark,
    		"-j", "CONNMARK",
    		"--set-xmark", inpodTproxyMark)
    
    	// Handle healthcheck probes from the host node. In the host netns, before the packet enters the pod, we SNAT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top