Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for prefix_len (0.23 sec)

  1. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                  "prefix_len": 32
                                },
                                {
                                  "address_prefix": "192.168.195.211",
                                  "prefix_len": 32
                                },
                                {
                                  "address_prefix": "192.168.252.206",
                                  "prefix_len": 32
                                },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/testdata/configdump.json

                                  "prefix_len": 32
                                },
                                {
                                  "address_prefix": "192.168.195.211",
                                  "prefix_len": 32
                                },
                                {
                                  "address_prefix": "192.168.252.206",
                                  "prefix_len": 32
                                },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/testdata/config_dump.json

                            {
                              "ranges": [
                                {
                                  "address_prefix": "10.104.171.68",
                                  "prefix_len": 32
                                }
                              ],
                              "on_match": {
                                "matcher": {
                                  "matcher_tree": {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  4. istioctl/pkg/authz/testdata/configdump.yaml

             "name": "virtualInbound-blackhole"
            },
            {
             "filter_chain_match": {
              "prefix_ranges": [
               {
                "address_prefix": "0.0.0.0",
                "prefix_len": 0
               }
              ],
              "transport_protocol": "tls",
              "application_protocols": [
               "istio-http/1.0",
               "istio-http/1.1",
               "istio-h2"
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jun 21 14:20:23 GMT 2023
    - 206.7K bytes
    - Viewed (2)
  5. 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:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  6. common/scripts/kind_provisioner.sh

    from itertools import islice;
    
    net = ip_network('$CIDR')
    net_bits = 128 if type(net) == IPv6Network else 32;
    net_len = pow(2, net_bits - net.prefixlen)
    start, end = int(net_len / 4 * 3), net_len
    if net_len > 2000:
      start, end = 1000, 2000
    
    [print(str(ip) + "/" + str(ip.max_prefixlen)) for ip in islice(ip_network('$CIDR').hosts(), start, end)]
    EOF
    }
    
    function ips_to_cidrs() {
      IP_RANGE_START="$1"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  7. istioctl/pkg/writer/envoy/configdump/listener.go

    			m = map[string]*matcher.Matcher_OnMatch{}
    			for _, rm := range ip.GetRangeMatchers() {
    				for _, r := range rm.Ranges {
    					cidr := r.AddressPrefix
    					pl := r.PrefixLen.GetValue()
    					if pl != 32 && pl != 128 {
    						cidr += fmt.Sprintf("/%d", pl)
    					}
    					m[cidr] = rm.OnMatch
    				}
    			}
    		default:
    			panic("unhandled")
    		}
    	}
    	outputs := []string{}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (linux-386), type IfAddrmsg struct, Flags uint8
    pkg syscall (linux-386), type IfAddrmsg struct, Index uint32
    pkg syscall (linux-386), type IfAddrmsg struct, Prefixlen uint8
    pkg syscall (linux-386), type IfAddrmsg struct, Scope uint8
    pkg syscall (linux-386), type IfInfomsg struct
    pkg syscall (linux-386), type IfInfomsg struct, Change uint32
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. api/go1.2.txt

    pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Flags uint8
    pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Index uint32
    pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Prefixlen uint8
    pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Scope uint8
    pkg syscall (linux-arm-cgo), type IfInfomsg struct
    pkg syscall (linux-arm-cgo), type IfInfomsg struct, Change uint32
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top