Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 242 for sumneg (0.88 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/cidr.go

    //	cidr('::1/129') // error
    //	cidr('192.168.0.1/16') // error, because there are non-0 bits after the prefix
    //
    // isCIDR
    //
    // Returns true if a string is a valid CIDR notation respresentation of a subnet with mask.
    // The CIDR must be an IPv4 or IPv6 subnet address with a mask.
    // Leading zeros in IPv4 address octets are not allowed.
    // IPv4-mapped IPv6 addresses (e.g. ::ffff:1.2.3.4/24) are not allowed.
    //
    //	isCIDR(<string>) <bool>
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. cni/pkg/install/testdata/list.conflist.golden

            }
          },
          "bridge": "cni0",
          "dns": {
            "nameservers": [
              "10.1.0.1"
            ]
          },
          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
          "type": "tuning"
        },
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 867 bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    				{Name: "Asia-maps.png"},
    				{Name: "Asia/India/India-summer-photos-1"},
    				{Name: "Asia/India/Karnataka/Bangalore/Koramangala/pics"},
    				{Name: "newPrefix0"},
    				{Name: "newPrefix1"},
    			},
    		},
    		// ListObjectsResult-2.
    		// (TestCase 24).
    		2: {
    			IsTruncated: true,
    			Objects: []ObjectInfo{
    				{Name: "Asia-maps.png"},
    				{Name: "Asia/India/India-summer-photos-1"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/validation_test.go

    	tests := []struct {
    		name   string
    		subnet string
    		ok     bool
    	}{
    		{
    			name:   "valid ipv4 subnet",
    			subnet: "1.1.1.1/24",
    			ok:     true,
    		},
    		{
    			name:   "invalid ipv4 subnet",
    			subnet: "1.1.1.1/48",
    			ok:     false,
    		},
    		{
    			name:   "valid ipv6 subnet",
    			subnet: "2001:1::1/64",
    			ok:     true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  5. cmd/config-current.go

    		config.HelpKV{
    			Key:         config.SubnetSubSys,
    			Type:        "string",
    			Description: "register the cluster to MinIO SUBNET",
    			Optional:    true,
    		},
    		config.HelpKV{
    			Key:         config.CallhomeSubSys,
    			Type:        "string",
    			Description: "enable callhome to MinIO SUBNET",
    			Optional:    true,
    		},
    		config.HelpKV{
    			Key:         config.DriveSubSys,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/ipallocator_test.go

    }
    
    func Test_broadcastAddress(t *testing.T) {
    	tests := []struct {
    		name   string
    		subnet netip.Prefix
    		want   netip.Addr
    	}{
    		{
    			name:   "ipv4",
    			subnet: netip.MustParsePrefix("192.168.0.0/24"),
    			want:   netip.MustParseAddr("192.168.0.255"),
    		},
    		{
    			name:   "ipv4 no nibble boundary",
    			subnet: netip.MustParsePrefix("10.0.0.0/12"),
    			want:   netip.MustParseAddr("10.15.255.255"),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    						"test case failed :\n\t   err(s): %v\n\t", allErrs[0].Error(),
    					)
    				}
    			}
    		})
    	}
    }
    
    func TestValidateIPNetFromString(t *testing.T) {
    	var tests = []struct {
    		name     string
    		subnet   string
    		minaddrs int64
    		expected bool
    	}{
    		// dual-stack:
    		{"invalid missing CIDR", "", 0, false},
    		{"valid dual-stack enabled but only an IPv4 CIDR specified", "10.0.0.16/12", 10, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  8. pkg/fieldpath/fieldpath_test.go

    		"flannel.alpha.coreos.com/backend-data":                  `{"VNI":1,"VtepMAC":"ce:f9:c7:a4:de:64"}`,
    		"flannel.alpha.coreos.com/backend-type":                  "vxlan",
    		"flannel.alpha.coreos.com/kube-subnet-manager":           "true",
    		"flannel.alpha.coreos.com/public-ip":                     "192.168.19.160",
    		"management.cattle.io/pod-limits":                        `{"cpu":"11400m","memory":"7965Mi"}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/ipam/cidrset/cidr_set.go

    	used big.Int
    	// label is used to identify the metrics
    	label string
    }
    
    const (
    	// The subnet mask size cannot be greater than 16 more than the cluster mask size
    	// TODO: https://github.com/kubernetes/kubernetes/issues/44918
    	// clusterSubnetMaxDiff limited to 16 due to the uncompressed bitmap
    	// Due to this limitation the subnet mask for IPv6 cluster cidr needs to be >= 48
    	// as default mask size for IPv6 is 64.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/constants/constants.go

    	// We need at least ten, because the DNS service is always at the tenth cluster clusterIP
    	MinimumAddressesInServiceSubnet = 10
    
    	// MaximumBitsForServiceSubnet defines maximum possible size of the service subnet in terms of bits.
    	// For example, if the value is 20, then the largest supported service subnet is /12 for IPv4 and /108 for IPv6.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top