Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for PrefixLen (0.12 sec)

  1. pilot/pkg/security/authz/builder/testdata/tcp/audit-both-http-tcp-out.yaml

                        prefixLen: 32
                - notId:
                    orIds:
                      ids:
                      - remoteIp:
                          addressPrefix: 10.133.154.65
                          prefixLen: 32
                - orIds:
                    ids:
                    - directRemoteIp:
                        addressPrefix: 1.2.3.4
                        prefixLen: 32
                - notId:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/tcp/custom-both-http-tcp-out1.yaml

                        prefixLen: 22
                - notId:
                    orIds:
                      ids:
                      - remoteIp:
                          addressPrefix: 192.168.244.139
                          prefixLen: 32
                - orIds:
                    ids:
                    - directRemoteIp:
                        addressPrefix: 1.2.3.4
                        prefixLen: 32
                - notId:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 15 22:42:30 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/single-policy-out.yaml

                        addressPrefix: 172.16.10.10
                        prefixLen: 32
                - orIds:
                    ids:
                    - directRemoteIp:
                        addressPrefix: 10.0.0.1
                        prefixLen: 32
                    - directRemoteIp:
                        addressPrefix: 10.0.0.2
                        prefixLen: 32
                - orIds:
                    ids:
                    - header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

                        addressPrefix: 172.16.10.10
                        prefixLen: 32
                - orIds:
                    ids:
                    - directRemoteIp:
                        addressPrefix: 10.0.0.1
                        prefixLen: 32
                    - directRemoteIp:
                        addressPrefix: 10.0.0.2
                        prefixLen: 32
                - orIds:
                    ids:
                    - header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-out.yaml

                        prefixLen: 32
                - notId:
                    orIds:
                      ids:
                      - directRemoteIp:
                          addressPrefix: 9.0.0.1
                          prefixLen: 32
                - orIds:
                    ids:
                    - directRemoteIp:
                        addressPrefix: 10.10.10.10
                        prefixLen: 32
                - notId:
                    orIds:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                        prefixLen: 32
                    - destinationIp:
                        addressPrefix: 192.168.10.0
                        prefixLen: 24
                - notRule:
                    orRules:
                      rules:
                      - destinationIp:
                          addressPrefix: 90.10.10.10
                          prefixLen: 32
                      - destinationIp:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                        prefixLen: 32
                    - destinationIp:
                        addressPrefix: 192.168.10.0
                        prefixLen: 24
                - notRule:
                    orRules:
                      rules:
                      - destinationIp:
                          addressPrefix: 90.10.10.10
                          prefixLen: 32
                      - destinationIp:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util_test.go

    				AddressPrefix: "2001:abcd:85a3::8a2e:370:1234",
    				PrefixLen:     &wrappers.UInt32Value{Value: 128},
    			},
    		},
    		{
    			"success case with no PrefixLen",
    			"1.2.3.4",
    			&core.CidrRange{
    				AddressPrefix: "1.2.3.4",
    				PrefixLen: &wrappers.UInt32Value{
    					Value: 32,
    				},
    			},
    		},
    		{
    			"success case with PrefixLen",
    			"1.2.3.4/16",
    			&core.CidrRange{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

                        i += 2;
                        if ( prefixLen == 1 )
                            break;
                        do {
                            prefixLen--;
                        }
                        while ( prefixLen > 1 && out[ prefixLen - 1 ] != '/' );
                        break;
                    }
                    state = 2;
                case 2:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/lif/address.go

    type Inet4Addr struct {
    	IP        [4]byte // IP address
    	PrefixLen int     // address prefix length
    }
    
    // Family implements the Family method of Addr interface.
    func (a *Inet4Addr) Family() int { return syscall.AF_INET }
    
    // An Inet6Addr represents an internet address for IPv6.
    type Inet6Addr struct {
    	IP        [16]byte // IP address
    	PrefixLen int      // address prefix length
    	ZoneID    int      // zone identifier
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top