Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for subkeys (0.2 sec)

  1. src/syscall/syscall_windows.go

    }
    
    // RegEnumKeyEx enumerates the subkeys of an open registry key.
    // Each call retrieves information about one subkey. name is
    // a buffer that should be large enough to hold the name of the
    // subkey plus a null terminating character. nameLen is its
    // length. On return, nameLen will contain the actual length of the
    // subkey.
    //
    // Should name not be large enough to hold the subkey, this function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller_test.go

    					subset.NotReadyAddresses = append(subset.NotReadyAddresses, v1.EndpointAddress{})
    				}
    				subsets = append(subsets, subset)
    			}
    
    			endpoints := &v1.Endpoints{Subsets: subsets}
    			truncateEndpoints(endpoints)
    
    			for i, subset := range endpoints.Subsets {
    				if len(subset.Addresses) != tc.expectedReady[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)
  3. istioctl/pkg/describe/describe.go

    	}
    	return host + k8sSuffix
    }
    
    // getDestRuleSubsets gets names of subsets that match any pod labels (also, ones that don't match).
    func getDestRuleSubsets(subsets []*v1alpha3.Subset, podsLabels []klabels.Set) ([]string, []string) {
    	matchingSubsets := make([]string, 0, len(subsets))
    	nonmatchingSubsets := make([]string, 0, len(subsets))
    	for _, subset := range subsets {
    		subsetSelector := klabels.SelectorFromSet(subset.Labels)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. 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{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

        }
      }
    
      /**
       * Returns the set of all possible subsets of {@code set}. For example, {@code
       * powerSet(ImmutableSet.of(1, 2))} returns the set {@code {{}, {1}, {2}, {1, 2}}}.
       *
       * <p>Elements appear in these subsets in the same iteration order as they appeared in the input
       * set. The order in which these subsets appear in the outer set is undefined. Note that the power
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/defaults_test.go

    	in := &v1.Endpoints{Subsets: []v1.EndpointSubset{
    		{Ports: []v1.EndpointPort{{}, {Protocol: "UDP"}, {}}},
    	}}
    	obj := roundTrip(t, runtime.Object(in))
    	out := obj.(*v1.Endpoints)
    
    	for i := range out.Subsets {
    		for j := range out.Subsets[i].Ports {
    			if in.Subsets[i].Ports[j].Protocol == "" {
    				if out.Subsets[i].Ports[j].Protocol != v1.ProtocolTCP {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Sets.java

        }
      }
    
      /**
       * Returns the set of all possible subsets of {@code set}. For example, {@code
       * powerSet(ImmutableSet.of(1, 2))} returns the set {@code {{}, {1}, {2}, {1, 2}}}.
       *
       * <p>Elements appear in these subsets in the same iteration order as they appeared in the input
       * set. The order in which these subsets appear in the outer set is undefined. Note that the power
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route_test.go

    			},
    		}
    		g.Expect(routes[0].GetRoute().GetHashPolicy()).To(ConsistOf(hashPolicy))
    		g.Expect(len(routes[0].GetRoute().GetRetryPolicy().RetryHostPredicate)).To(Equal(0))
    	})
    
    	t.Run("for virtual service with subsets with ring hash", func(t *testing.T) {
    		g := NewWithT(t)
    		virtualService := config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.VirtualService,
    				Name:             "acme",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    	}
    	if idx, ok := sc.slmap[k]; ok {
    		return idx, true
    	}
    	rv := SlKeyIdx(len(sc.slkeys))
    	sc.slkeys = append(sc.slkeys, ls)
    	sc.slmap[k] = rv
    	return rv, false
    }
    
    func (sc *slotCanonicalizer) canonSlot(idx SlKeyIdx) LocalSlot {
    	return sc.slkeys[idx]
    }
    
    // PopulateABIInRegArgOps examines the entry block of the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. cmd/peer-rest-server.go

    		if err != nil {
    			return np, grid.NewRemoteErr(err)
    		}
    		subSys := vars.Get(peerRESTSubSys)
    		// Apply dynamic values.
    		ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
    		defer cancel()
    		if subSys == "" {
    			err = applyDynamicConfig(ctx, objAPI, srvCfg)
    		} else {
    			err = applyDynamicConfigForSubSys(ctx, objAPI, srvCfg, subSys)
    		}
    		if err != nil {
    			return np, grid.NewRemoteErr(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top