Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for subst (0.08 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // appear later in the string.
    type substitutions []AST
    
    // add adds a new substitution candidate.
    func (subs *substitutions) add(a AST) {
    	*subs = append(*subs, a)
    }
    
    // subAST maps standard substitution codes to the corresponding AST.
    var subAST = map[byte]AST{
    	't': &Name{Name: "std"},
    	'a': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "allocator"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. 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)
  3. pilot/pkg/model/virtualservice_test.go

    		Port: &networking.PortSelector{
    			Number: 80,
    		},
    		Subset: "v1",
    	}
    	dstV2 := &networking.Destination{
    		Host: "productpage.org",
    		Port: &networking.PortSelector{
    			Number: 80,
    		},
    		Subset: "v2",
    	}
    	dstV3 := &networking.Destination{
    		Host: "productpage.org",
    		Port: &networking.PortSelector{
    			Number: 80,
    		},
    		Subset: "v3",
    	}
    	dstMirrorV1 := dstV1.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    		if extendFQDN(fqdn) == svcHost {
    			if dest.Destination.Subset != "" {
    				if slices.Contains(nonmatchingSubsets, dest.Destination.Subset) {
    					mismatchNotes = append(mismatchNotes, fmt.Sprintf("Route to non-matching subset %s for (%s)",
    						dest.Destination.Subset,
    						renderMatches(route.Match)))
    					continue
    				}
    				if !slices.Contains(matchingSubsets, dest.Destination.Subset) {
    					if dr == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller_test.go

    			}
    
    			endpoints := &v1.Endpoints{Subsets: subsets}
    			truncateEndpoints(endpoints)
    
    			for i, subset := range endpoints.Subsets {
    				if len(subset.Addresses) != tc.expectedReady[i] {
    					t.Errorf("Unexpected number of actual ready Endpoints for subset %d: got %d endpoints, want %d endpoints", i, len(subset.Addresses), tc.expectedReady[i])
    				}
    				if len(subset.NotReadyAddresses) != tc.expectedNotReady[i] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

        }
    
        @Override
        public NavigableSet<E> subSet(
            @ParametricNullness E fromElement,
            boolean fromInclusive,
            @ParametricNullness E toElement,
            boolean toInclusive) {
          return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet();
        }
    
        @Override
        public SortedSet<E> subSet(@ParametricNullness E fromElement, @ParametricNullness E toElement) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_test.go

    	Hosts:    []string{},
    	Gateways: []string{"some-gateway"},
    	Http: []*networking.HTTPRoute{
    		{
    			Route: []*networking.HTTPRouteDestination{
    				{
    					Destination: &networking.Destination{
    						Subset: "some-subset",
    						Host:   "*.example.org",
    						Port: &networking.PortSelector{
    							Number: 65000,
    						},
    					},
    					Weight: 100,
    				},
    			},
    		},
    	},
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Sets.java

        }
    
        @Override
        public NavigableSet<E> subSet(
            @ParametricNullness E fromElement,
            boolean fromInclusive,
            @ParametricNullness E toElement,
            boolean toInclusive) {
          return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet();
        }
    
        @Override
        public SortedSet<E> subSet(@ParametricNullness E fromElement, @ParametricNullness E toElement) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute_test.go

    		},
    		{
    			name: "back subset of cluster domain in address",
    			service: &model.Service{
    				Hostname:     "aaa.example.local",
    				MeshExternal: true,
    			},
    			port: 7777,
    			node: &model.Proxy{
    				DNSDomain: "tests.svc.cluster.local",
    			},
    			want: []string{"aaa.example.local"},
    		},
    		{
    			name: "front subset of cluster domain in address",
    			service: &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context_test.go

    			Host: testhost,
    			Subsets: []*networking.Subset{
    				{
    					Name: "subset1",
    				},
    				{
    					Name: "subset2",
    				},
    			},
    		},
    	}
    	destinationRuleNamespace2 := config.Config{
    		Meta: config.Meta{
    			Name:      "rule2",
    			Namespace: "test",
    		},
    		Spec: &networking.DestinationRule{
    			Host: testhost,
    			Subsets: []*networking.Subset{
    				{
    					Name: "subset3",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top