Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 165 for subkeys (0.66 sec)

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

    		{"valid IPv6 and IPv4 CIDR", "10.0.0.16/12,2001:db8::/98", 10, true},
    		{"invalid IPv6 and IPv4 CIDR with more than 2 subnets", "10.0.0.16/12,2001:db8::/98,192.168.0.0/16", 10, false},
    		{"invalid IPv6 and IPv4 CIDR with more than 2 subnets", "10.0.0.16/12,2001:db8::/98,192.168.0.0/16,a.b.c.d/24", 10, false},
    	}
    	for _, rt := range tests {
    		actual := ValidateIPNetFromString(rt.subnet, rt.minaddrs, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest-generate_test.go

    		ep := mustGetEndpoint(g, objs, "istiod-remote").Unstructured()
    		g.Expect(ep).Should(HavePathValueEqual(PathValue{"subsets.[0].addresses.[0]", endpointSubsetAddressVal("", "169.10.112.88", "")}))
    		g.Expect(ep).Should(HavePathValueContain(PathValue{"subsets.[0].ports.[0]", portVal("tcp-istiod", 15012, -1)}))
    
    		checkClusterRoleBindingsReferenceRoles(g, objs)
    	}
    }
    
    func TestPrune(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

          this.millis = millis;
          this.label = label;
        }
    
        @Override
        public String toString() {
          return label;
        }
      }
    
      /** Convenient subsets of the {@link Timeout} enumeration for specifying scenario outcomes. */
      private enum TimeoutsToUse {
        ANY(Timeout.values()),
        PAST(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

          this.millis = millis;
          this.label = label;
        }
    
        @Override
        public String toString() {
          return label;
        }
      }
    
      /** Convenient subsets of the {@link Timeout} enumeration for specifying scenario outcomes. */
      private enum TimeoutsToUse {
        ANY(Timeout.values()),
        PAST(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. cmd/notification.go

    func (sys *NotificationSys) SignalConfigReload(subSys string) []NotificationPeerErr {
    	ng := WithNPeers(len(sys.peerClients))
    	for idx, client := range sys.peerClients {
    		if client == nil {
    			continue
    		}
    		client := client
    		ng.Go(GlobalContext, func() error {
    			return client.SignalService(serviceReloadDynamic, subSys, false)
    		}, idx, *client.host)
    	}
    	return ng.Wait()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    The first part of the migration process is to go through the code and manually migrate eager task creation and configuration to use configuration avoidance APIs.
    
    1. **Migrate task configuration that affects all tasks (`tasks.all {}`) or subsets by type (`tasks.withType(...) {}`).** +
    This will cause your build to eagerly create fewer tasks that are registered by plugins.
    
    2. **Migrate tasks configured by name.** +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier_test.go

    		expectedLocalEndpoints: map[types.NamespacedName]int{
    			makeNSN("ns1", "ep1"): 1,
    		},
    	}, {
    		// Case[2]: no change, multiple subsets
    		name:              "no change, multiple subsets",
    		previousEndpoints: multipleSubsets,
    		currentEndpoints:  multipleSubsets,
    		oldEndpoints: map[proxy.ServicePortName][]endpointExpectation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier_test.go

    		expectedReadyEndpoints: map[types.NamespacedName]int{
    			makeNSN("ns1", "ep1"): 1,
    		},
    	}, {
    		// Case[2]: no change, multiple subsets
    		name:              "no change, multiple subsets",
    		previousEndpoints: multipleSubsets,
    		currentEndpoints:  multipleSubsets,
    		oldEndpoints: map[proxy.ServicePortName][]endpointExpectation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    }
    
    // Pass ports=nil for all ports.
    func formatEndpoints(endpoints *api.Endpoints, ports sets.String) string {
    	if len(endpoints.Subsets) == 0 {
    		return "<none>"
    	}
    	list := []string{}
    	max := 3
    	more := false
    	count := 0
    	for i := range endpoints.Subsets {
    		ss := &endpoints.Subsets[i]
    		if len(ss.Ports) == 0 {
    			// It's possible to have headless services with no ports.
    			count += len(ss.Addresses)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation_test.go

    				}},
    			},
    		},
    		"empty subsets": {
    			endpoints: core.Endpoints{
    				ObjectMeta: metav1.ObjectMeta{Name: "mysvc", Namespace: "namespace"},
    			},
    		},
    		"no name required for singleton port": {
    			endpoints: core.Endpoints{
    				ObjectMeta: metav1.ObjectMeta{Name: "mysvc", Namespace: "namespace"},
    				Subsets: []core.EndpointSubset{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top