Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Opackets (0.18 sec)

  1. pkg/proxy/nftables/proxier_test.go

    		add map ip kube-proxy no-endpoint-services { type ipv4_addr . inet_proto . inet_service : verdict ; comment "vmap to drop or reject packets to services with no endpoints" ; }
    		add map ip kube-proxy no-endpoint-nodeports { type inet_proto . inet_service : verdict ; comment "vmap to drop or reject packets to service nodeports with no endpoints" ; }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      sysctl -w net.ipv4.conf.all.route_localnet=1
    
      # The GCI image has host firewall which drop most inbound/forwarded packets.
      # We need to add rules to accept all TCP/UDP/ICMP/SCTP packets.
      if iptables -w -L INPUT | grep "Chain INPUT (policy DROP)" > /dev/null; then
        echo "Add rules to accept all inbound TCP/UDP/ICMP packets"
        iptables -w -A INPUT -w -p TCP -j ACCEPT
        iptables -w -A INPUT -w -p UDP -j ACCEPT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// connection. If client is still writing to the connection, this will cause
    	// the write to fail with ECONNRESET or similar. Unfortunately, many TCP
    	// implementations will also drop unread packets from the client's read buffer
    	// when a write fails, causing our final response to be truncated away too.
    	//
    	// As a result, https://www.rfc-editor.org/rfc/rfc7230#section-6.6 recommends
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // dependencies specially for that test (most commonly the tested
    // package itself). The reported import path of a package recompiled
    // for a particular test binary is followed by a space and the name of
    // the test binary in brackets, as in "math/rand [math/rand.test]"
    // or "regexp [sort.test]". The ForTest field is also set to the name
    // of the package being tested ("math/rand" or "sort" in the previous
    // examples).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.4.md

          * Only `container_name`, `pod_name`, `namespace`, `id`, `image`, and `name` labels are exposed
          * no environment variables will be exposed ever via /metrics, even if whitelisted
    * Filter duplicate network packets in promiscuous bridge mode (with ebtables) ([#28717](https://github.com/kubernetes/kubernetes/pull/28717), [@freehan](https://github.com/freehan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.5.md

          * Only `container_name`, `pod_name`, `namespace`, `id`, `image`, and `name` labels are exposed
          * no environment variables will be exposed ever via /metrics, even if whitelisted
    * Filter duplicate network packets in promiscuous bridge mode (with ebtables) ([#28717](https://github.com/kubernetes/kubernetes/pull/28717), [@freehan](https://github.com/freehan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go

    //go:build go1.10 && !go1.13
    
    package bidi
    
    // UnicodeVersion is the Unicode version from which the tables in this package are derived.
    const UnicodeVersion = "10.0.0"
    
    // xorMasks contains masks to be xor-ed with brackets to get the reverse
    // version.
    var xorMasks = []int32{ // 8 elements
    	0, 1, 6, 7, 3, 15, 29, 63,
    } // Size: 56 bytes
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 110.9K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go

    //go:build go1.13 && !go1.14
    
    package bidi
    
    // UnicodeVersion is the Unicode version from which the tables in this package are derived.
    const UnicodeVersion = "11.0.0"
    
    // xorMasks contains masks to be xor-ed with brackets to get the reverse
    // version.
    var xorMasks = []int32{ // 8 elements
    	0, 1, 6, 7, 3, 15, 29, 63,
    } // Size: 56 bytes
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 116.6K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go

    //go:build go1.16 && !go1.21
    
    package bidi
    
    // UnicodeVersion is the Unicode version from which the tables in this package are derived.
    const UnicodeVersion = "13.0.0"
    
    // xorMasks contains masks to be xor-ed with brackets to get the reverse
    // version.
    var xorMasks = []int32{ // 8 elements
    	0, 1, 6, 7, 3, 15, 29, 63,
    } // Size: 56 bytes
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 120.9K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go

    //go:build !go1.10
    
    package bidi
    
    // UnicodeVersion is the Unicode version from which the tables in this package are derived.
    const UnicodeVersion = "9.0.0"
    
    // xorMasks contains masks to be xor-ed with brackets to get the reverse
    // version.
    var xorMasks = []int32{ // 8 elements
    	0, 1, 6, 7, 3, 15, 29, 63,
    } // Size: 56 bytes
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 109.2K bytes
    - Viewed (0)
Back to top