Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 633 for subreg (0.2 sec)

  1. 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)
  2. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        SortedSet<String> set = of("e");
        assertTrue(set.subSet("c", "g") instanceof ImmutableSortedSet);
        assertThat(set.subSet("c", "g")).contains("e");
        assertThat(set.subSet("e", "g")).contains("e");
        assertSame(this.<String>of(), set.subSet("f", "g"));
        assertSame(this.<String>of(), set.subSet("c", "e"));
        assertSame(this.<String>of(), set.subSet("c", "d"));
      }
    
      public void testSingle_first() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_sum_lookup.txt

    ! grep '^example.com/join/subpkg' go.sum
    cp go.sum go.list.sum
    go mod tidy
    cmp go.sum go.list.sum
    
    -- go.mod --
    module m
    
    go 1.15
    
    -- noexist/use.go --
    // ignore tags prevents errors in 'go mod tidy'
    // +build ignore
    
    package use
    
    import _ "example.com/join/subpkg/noexist"
    
    -- exist/use.go --
    package use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 859 bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/cluster.go

    		if filter.Verify(c) {
    			if len(strings.Split(c.Name, "|")) > 3 {
    				direction, subset, fqdn, port := model.ParseSubsetKey(c.Name)
    				if subset == "" {
    					subset = "-"
    				}
    				if includeConfigType {
    					c.Name = fmt.Sprintf("cluster/%s", c.Name)
    					_, _ = fmt.Fprintf(w, "%v\t%v\t%v\t%v\t%v\t%s\t%s\n", c.Name, fqdn, port, subset, direction, c.GetType(),
    						describeManagement(c.GetMetadata()))
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_join_v1.1.0.txt

    Written by hand.
    Test case for package moved into a parent module.
    
    -- .mod --
    module example.com/join
    -- .info --
    {"Version": "v1.1.0"}
    -- subpkg/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 170 bytes
    - Viewed (0)
  6. samples/bookinfo/networking/virtual-service-reviews-50-v3.yaml

    kind: VirtualService
    metadata:
      name: reviews
    spec:
      hosts:
        - reviews
      http:
      - route:
        - destination:
            host: reviews
            subset: v1
          weight: 50
        - destination:
            host: reviews
            subset: v3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 290 bytes
    - Viewed (0)
  7. samples/bookinfo/networking/virtual-service-reviews-test-v2.yaml

    spec:
      hosts:
        - reviews
      http:
      - match:
        - headers:
            end-user:
              exact: jason
        route:
        - destination:
            host: reviews
            subset: v2
      - route:
        - destination:
            host: reviews
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 17 21:01:05 UTC 2018
    - 334 bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/ipallocator.go

    }
    
    // allocateNextService tries to allocate a free IP address within the subnet.
    // If the subnet is big enough, it partitions the subnet into two subranges,
    // delimited by a.rangeOffset.
    // It tries to allocate a free IP address from the upper subnet first and
    // falls back to the lower subnet.
    // It starts allocating from a random IP within each range.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. samples/bookinfo/networking/virtual-service-ratings-test-abort.yaml

        fault:
          abort:
            percentage:
              value: 100.0
            httpStatus: 500
        route:
        - destination:
            host: ratings
            subset: v1
      - route:
        - destination:
            host: ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 22 12:35:03 UTC 2018
    - 423 bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter_test.go

    			name: "tunneling_config should be applied when destination rule has specified tunnel settings for a subset matching the destination route subset",
    			routeDestinations: []*networking.RouteDestination{
    				{
    					Destination: &networking.Destination{
    						Host:   "tunnel-proxy.com",
    						Port:   &networking.PortSelector{Number: 3128},
    						Subset: "example-com-8443",
    					},
    				},
    			},
    			destinationRule: tunnelingEnabledForSubset,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top