Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 311 for masq (0.09 sec)

  1. pkg/util/iptables/testing/parse_test.go

    				Jump:       &IPTablesValue{Value: "KUBE-MARK-MASQ"},
    			},
    		},
    		{
    			name: "not local destination",
    			rule: `-A RULE-TYPE-NOT-CURRENTLY-USED-BY-KUBE-PROXY -m addrtype ! --dst-type LOCAL -j KUBE-MARK-MASQ`,
    			parsed: &Rule{
    				Raw:             `-A RULE-TYPE-NOT-CURRENTLY-USED-BY-KUBE-PROXY -m addrtype ! --dst-type LOCAL -j KUBE-MARK-MASQ`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/README.md

      -> RemoteAddress:Port           Forward Weight ActiveConn InActConn
    TCP  10.0.0.1:443 rr persistent 10800
      -> 192.168.0.1:6443             Masq    1      1          0
    TCP  10.0.0.10:53 rr
      -> 172.17.0.2:53                Masq    1      0          0
    UDP  10.0.0.10:53 rr
      -> 172.17.0.2:53                Masq    1      0          0
    ```
    
    ### Why kube-proxy can't start IPVS mode
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        - registry.k8s.io/cluster-proportional-autoscaler-amd64:1.1.2-r2
        sizeBytes: 49648481
      - names:
        - registry.k8s.io/ip-masq-agent-amd64@sha256:1ffda57d87901bc01324c82ceb2145fe6a0448d3f0dd9cb65aa76a867cd62103
        - registry.k8s.io/ip-masq-agent-amd64:v2.1.1
        sizeBytes: 49612505
      - names:
        - registry.k8s.io/k8s-dns-kube-dns-amd64@sha256:b99fc3eee2a9f052f7eb4cc00f15eb12fc405fa41019baa2d6b79847ae7284a8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/helpers_test.go

    			var errors []string
    			if output != tc.output {
    				errors = append(errors, fmt.Sprintf("wrong output: expected %q got %q", tc.output, output))
    			}
    			if masq != tc.masq {
    				errors = append(errors, fmt.Sprintf("wrong masq: expected %v got %v", tc.masq, masq))
    			}
    			if errors != nil {
    				t.Errorf("Test %q of a packet from %s to %s:%d%s got result:\n%s\n\nBy matching:\n%s\n\n",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        - registry.k8s.io/cluster-proportional-autoscaler-amd64:1.1.2-r2
        sizeBytes: 49648481
      - names:
        - registry.k8s.io/ip-masq-agent-amd64@sha256:1ffda57d87901bc01324c82ceb2145fe6a0448d3f0dd9cb65aa76a867cd62103
        - registry.k8s.io/ip-masq-agent-amd64:v2.1.1
        sizeBytes: 49612505
      - names:
        - registry.k8s.io/k8s-dns-kube-dns-amd64@sha256:b99fc3eee2a9f052f7eb4cc00f15eb12fc405fa41019baa2d6b79847ae7284a8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/types.go

    	// other components about the configuration of iptables on the system.
    	MakeIPTablesUtilChains bool
    	// iptablesMasqueradeBit formerly controlled the creation of the KUBE-MARK-MASQ
    	// chain.
    	// Deprecated: no longer has any effect.
    	IPTablesMasqueradeBit int32
    	// iptablesDropBit formerly controlled the creation of the KUBE-MARK-DROP chain.
    	// Deprecated: no longer has any effect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/bitmask/bitmask_test.go

    		},
    		{
    			name:    "Mask 11 AND mask 10",
    			masks:   [][]int{{0, 1}, {1}},
    			andMask: "10",
    		},
    		{
    			name:    "Mask 01 AND mask 11",
    			masks:   [][]int{{0}, {0, 1}},
    			andMask: "01",
    		},
    		{
    			name:    "Mask 11 AND mask 11 AND mask 10",
    			masks:   [][]int{{0, 1}, {0, 1}, {1}},
    			andMask: "10",
    		},
    		{
    			name:    "Mask 01 AND mask 01 AND mask 10 AND mask 11",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  8. pkg/util/iptree/iptree.go

    		max = l
    	}
    
    	mask := 0
    	for i := range bytesA {
    		xor := bytesA[i] ^ bytesB[i]
    		if xor == 0 {
    			bytes[i] = bytesA[i]
    			mask += 8
    
    		} else {
    			pos := bits.LeadingZeros8(xor)
    			mask += pos
    			// mask off the non leading zeros
    			bytes[i] = bytesA[i] & (^uint8(0) << (8 - pos))
    			break
    		}
    	}
    	if mask > max {
    		mask = max
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  9. src/net/ip_test.go

    	{IPNet{IP: v6addr, Mask: v4mappedv6mask}, IPNet{IP: v6addr, Mask: v4mappedv6mask}},
    	{in: IPNet{IP: v6addr, Mask: v4mask}},
    	{in: IPNet{IP: v4addr, Mask: badmask}},
    	{in: IPNet{IP: v4mappedv6addr, Mask: badmask}},
    	{in: IPNet{IP: v6addr, Mask: badmask}},
    	{in: IPNet{IP: badaddr, Mask: v4mask}},
    	{in: IPNet{IP: badaddr, Mask: v4mappedv6mask}},
    	{in: IPNet{IP: badaddr, Mask: v6mask}},
    	{in: IPNet{IP: badaddr, Mask: badmask}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. src/net/ip.go

    		}
    	}
    	return true
    }
    
    // Mask returns the result of masking the IP address ip with mask.
    func (ip IP) Mask(mask IPMask) IP {
    	if len(mask) == IPv6len && len(ip) == IPv4len && allFF(mask[:12]) {
    		mask = mask[12:]
    	}
    	if len(mask) == IPv4len && len(ip) == IPv6len && bytealg.Equal(ip[:12], v4InV6Prefix) {
    		ip = ip[12:]
    	}
    	n := len(ip)
    	if n != len(mask) {
    		return nil
    	}
    	out := make(IP, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top