Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 633 for subreg (0.39 sec)

  1. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		}
    	}
    	// validate the subnet/s
    	for _, s := range subnets {
    		numAddresses := netutils.RangeSize(s)
    		if numAddresses < minAddrs {
    			allErrs = append(allErrs, field.Invalid(fldPath, s.String(), fmt.Sprintf("subnet with %d address(es) is too small, the minimum is %d", numAddresses, minAddrs)))
    		}
    
    		// Warn when the subnet is in site-local range - i.e. contains addresses that belong to fec0::/10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. cni/test/testdata/expected/minikube_cni.conflist.clean

          "bridge": "mybridge",
          "ipMasq": true,
          "ipam": {
            "gateway": "10.1.0.1",
            "routes": [
              {
                "dst": "0.0.0.0/0"
              }
            ],
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "isGateway": true,
          "mtu": 1460,
          "name": "rkt.kubernetes.io",
          "type": "bridge"
        }
      ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 468 bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- $cluster := .Cluster }}
    {{- range $i, $subset := $subsets }}
    {{- range $revision, $version := $revVerMap }}
    apiVersion: apps/v1
    {{- if $.StatefulSet }}
    kind: StatefulSet
    {{- else }}
    kind: Deployment
    {{- end }}
    metadata:
    {{- if $.Compatibility }}
      name: {{ $.Service }}-{{ $subset.Version }}-{{ $revision }}
    {{- else }}
      name: {{ $.Service }}-{{ $subset.Version }}
    {{- end }}
    spec:
      {{- if $.StatefulSet }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/virtualservice/destinationrules.go

    ) bool {
    	name := util.GetResourceNameFromHost(vsNamespace, destination.GetHost())
    	subset := destination.GetSubset()
    
    	// if there's no subset specified, we're done
    	if subset == "" {
    		return true
    	}
    
    	hs := hostAndSubset{
    		host:   name,
    		subset: subset,
    	}
    	if _, ok := destHostsAndSubsets[hs]; ok {
    		return true
    	}
    
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.net_pkgadded_v1.0.0.txt

    go 1.16
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.net/pkgadded
    
    go 1.16
    -- README.txt --
    We will add the package example.net/pkgadded in v1.1.0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 347 bytes
    - Viewed (0)
  6. src/container/ring/ring.go

    // r must not be empty.
    //
    // If r and s point to the same ring, linking
    // them removes the elements between r and s from the ring.
    // The removed elements form a subring and the result is a
    // reference to that subring (if no elements were removed,
    // the result is still the original value for r.Next(),
    // and not nil).
    //
    // If r and s point to different rings, linking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertThat(set.subSet(1, 4)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.subSet(2, 4)).containsExactly(2, 3).inOrder();
        assertThat(set.subSet(3, 4)).containsExactly(3).inOrder();
        assertThat(set.subSet(3, 3)).isEmpty();
        assertThat(set.subSet(2, 3)).containsExactly(2).inOrder();
        assertThat(set.subSet(1, 3)).containsExactly(1, 2).inOrder();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_split-incompatible_subpkg_v0.1.0.txt

    with a +incompatible version (and thus no go.mod file) at the root module.
    
    -- .mod --
    module example.com/split-incompatible/subpkg
    -- .info --
    {"Version": "v0.1.0"}
    -- go.mod --
    module example.com/split-incompatible/subpkg
    
    go 1.16
    -- subpkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 24 04:11:43 UTC 2021
    - 353 bytes
    - Viewed (0)
  9. samples/bookinfo/networking/virtual-service-all-v1.yaml

    spec:
      hosts:
      - productpage
      http:
      - route:
        - destination:
            host: productpage
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    spec:
      hosts:
      - reviews
      http:
      - route:
        - destination:
            host: reviews
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 13 06:03:11 UTC 2018
    - 804 bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/CompactTree.kt

                        when (val subTree = of(remaining)) {
                            is Empty -> Label(label)
                            is Label -> Label(
                                label + subTree.label
                            )
                            is Branch -> Edge(
                                Label(label),
                                subTree
                            )
                            is Edge -> Edge(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top