Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 633 for subreg (0.1 sec)

  1. guava-tests/test/com/google/common/collect/SetsTest.java

        assertEquals(ImmutableSortedSet.of(4, 6, 8, 10), Sets.subSet(set, Range.atLeast(4)));
        assertEquals(ImmutableSortedSet.of(8, 10), Sets.subSet(set, Range.atLeast(7)));
        assertEquals(empty, Sets.subSet(set, Range.atLeast(20)));
    
        assertEquals(set, Sets.subSet(set, Range.greaterThan(0)));
        assertEquals(ImmutableSortedSet.of(6, 8, 10), Sets.subSet(set, Range.greaterThan(4)));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/SetsTest.java

        assertEquals(ImmutableSortedSet.of(4, 6, 8, 10), Sets.subSet(set, Range.atLeast(4)));
        assertEquals(ImmutableSortedSet.of(8, 10), Sets.subSet(set, Range.atLeast(7)));
        assertEquals(empty, Sets.subSet(set, Range.atLeast(20)));
    
        assertEquals(set, Sets.subSet(set, Range.greaterThan(0)));
        assertEquals(ImmutableSortedSet.of(6, 8, 10), Sets.subSet(set, Range.greaterThan(4)));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  3. pkg/controlplane/reconcilers/endpointsadapter.go

    	if len(endpoints.Subsets) > 0 {
    		subset := endpoints.Subsets[0]
    		for i := range subset.Ports {
    			endpointSlice.Ports = append(endpointSlice.Ports, discovery.EndpointPort{
    				Port:     &subset.Ports[i].Port,
    				Name:     &subset.Ports[i].Name,
    				Protocol: &subset.Ports[i].Protocol,
    			})
    		}
    
    		if allAddressesIPv6(append(subset.Addresses, subset.NotReadyAddresses...)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  4. cni/pkg/install/testdata/list.conflist

        {
          "type": "bridge",
          "bridge": "cni0",
          "args": {
            "labels" : {
                "appVersion" : "1.0"
            }
          },
          "ipam": {
            "type": "host-local",
            "subnet": "10.1.0.0/16",
            "gateway": "10.1.0.1"
          },
          "dns": {
            "nameservers": [ "10.1.0.1" ]
          }
        },
        {
          "type": "tuning",
          "sysctl": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 01 20:47:54 UTC 2021
    - 494 bytes
    - Viewed (0)
  5. pilot/pkg/model/destination_rule.go

    					// if not duplicated, append
    					mergedRule.Subsets = append(mergedRule.Subsets, subset)
    				} else {
    					// duplicate subset
    					ps.AddMetric(DuplicatedSubsets, string(resolvedHost), "",
    						fmt.Sprintf("Duplicate subset %s found while merging destination rules for %s",
    							subset.Name, string(resolvedHost)))
    				}
    			}
    
    			// If there is no top level policy and the incoming rule has top level
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_import_issue41113.txt

    # split-incompatible/subpkg module). modload.QueryPattern will suggest
    # split-incompatible v2.0.0+incompatible, which we cannot use (because it would
    # be an implicit downgrade), and split-incompatible/subpkg v0.1.0, which we
    # *should* use.
    
    go mod tidy
    
    go list -m all
    stdout '^example.com/split-incompatible/subpkg v0\.1\.0$'
    ! stdout '^example.com/split-incompatible .*'
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 932 bytes
    - Viewed (0)
  7. internal/config/callhome/callhome.go

    )
    
    // DefaultKVS - default KV config for subnet settings
    var DefaultKVS = config.KVS{
    	config.KV{
    		Key:   Enable,
    		Value: "off",
    	},
    	config.KV{
    		Key:   Frequency,
    		Value: "24h",
    	},
    }
    
    // callhomeCycleDefault is the default interval between two callhome cycles (24hrs)
    const callhomeCycleDefault = 24 * time.Hour
    
    // Config represents the subnet related configuration
    type Config struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. samples/kind-lb/README.md

      -w|--worker-nodes  - the number of worker nodes to create. Default is 1
      --pod-subnet       - the pod subnet to specify. Default is 10.244.0.0/16 for IPv4 and fd00:10:244::/56 for IPv6
      --service-subnet   - the service subnet to specify. Default is 10.96.0.0/16 for IPv4 and fd00:10:96::/112 for IPv6
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. cluster/gce/upgrade-aliases.sh

      local allow_overlap=$1
      if [ "${allow_subnet_cidr_routes_overlap,,}" = "${allow_overlap}" ]; then
        echo "Subnet ${IP_ALIAS_SUBNETWORK}'s allowSubnetCidrRoutesOverlap is already set as $1"
        return
      fi
    
      echo "Setting subnet \"${IP_ALIAS_SUBNETWORK}\" allowSubnetCidrRoutesOverlap to $1"
      local fingerprint
      fingerprint=$(gcloud compute networks subnets describe \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/constants/constants_test.go

    		expectedErr                 bool
    	}{
    		{
    			name:        "subnet mask 24",
    			svcSubnet:   "10.96.0.12/24",
    			expectedIP:  "10.96.0.1",
    			expectedErr: false,
    		},
    		{
    			name:        "subnet mask 12",
    			svcSubnet:   "10.96.0.0/12",
    			expectedIP:  "10.96.0.1",
    			expectedErr: false,
    		},
    		{
    			name:        "subnet mask 26",
    			svcSubnet:   "10.87.116.64/26",
    			expectedIP:  "10.87.116.65",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top