Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 200 for subkeys (0.26 sec)

  1. pkg/registry/core/service/storage/storage.go

    	}
    	eps := obj.(*api.Endpoints)
    	if len(eps.Subsets) == 0 {
    		return nil, nil, errors.NewServiceUnavailable(fmt.Sprintf("no endpoints available for service %q", svcName))
    	}
    	// Pick a random Subset to start searching from.
    	ssSeed := rand.Intn(len(eps.Subsets))
    	// Find a Subset that has the port.
    	for ssi := 0; ssi < len(eps.Subsets); ssi++ {
    		ss := &eps.Subsets[(ssSeed+ssi)%len(eps.Subsets)]
    		if len(ss.Addresses) == 0 {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/multicluster_test.go

      hosts:
      - "%s"
    `, apps.B.Config().ClusterLocalFQDN()))
    					},
    				},
    				{
    					"subsets",
    					func(t framework.TestContext) {
    						cfg := tmpl.EvaluateOrFail(t, `
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: mysvc-dr
    spec:
      host: {{.host}}
      subsets:
    {{- range .dst }}
      - name: {{ .Config.Cluster.Name }}
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/mtls_checker.go

    	dr, ok := drc.Spec.(*networkingapi.DestinationRule)
    	if !ok || dr == nil {
    		return nil
    	}
    
    	if subset == "" {
    		return trafficPolicyTLSModeForPort(dr.GetTrafficPolicy(), port)
    	}
    
    	for _, ss := range dr.Subsets {
    		if ss.Name != subset {
    			continue
    		}
    		return trafficPolicyTLSModeForPort(ss.GetTrafficPolicy(), port)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/networkfilter_test.go

    				TargetHost: "example.com",
    				TargetPort: 8443,
    			},
    		},
    	}
    	tunnelingEnabledForSubset := &networking.DestinationRule{
    		Host: "tunnel-proxy.com",
    		Subsets: []*networking.Subset{
    			{
    				Name: "example-com-8443",
    				TrafficPolicy: &networking.TrafficPolicy{
    					Tunnel: &networking.TrafficPolicy_TunnelSettings{
    						Protocol:   "POST",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/hns_test.go

    	sp := &hcn.SubnetPolicy{
    		Type: hcn.VSID,
    	}
    	sp.Settings = vsidJson
    
    	spJson, err := json.Marshal(sp)
    	if err != nil {
    		return nil, err
    	}
    
    	network.Ipams[0].Subnets[0].Policies = append(network.Ipams[0].Subnets[0].Policies, spJson)
    
    	return network.Create()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. 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)
  7. tests/integration/security/file_mounted_certs/main_test.go

    				"mountPath": "/etc/certs"
    			}
    		}
    	`
    
    	var customConfig []echo.Config
    
    	client := echo.Config{
    		Service:   "client",
    		Namespace: appsNamespace,
    		Ports:     []echo.Port{},
    		Subsets: []echo.SubsetConfig{{
    			Version: "v1",
    			// Set up custom annotations to mount the certs.
    			Annotations: map[string]string{
    				annotation.SidecarUserVolume.Name:      clientSidecarVolumes,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. tests/integration/pilot/headers_test.go

    			ns := namespace.NewOrFail(t, t, namespace.Config{Prefix: "proxy-headers", Inject: true})
    			cfg := echo.Config{
    				Namespace: ns,
    				Ports:     ports.All(),
    				Service:   "no-headers",
    				Subsets: []echo.SubsetConfig{
    					{
    						Annotations: map[string]string{annotation.ProxyConfig.Name: `
    tracing: {}
    proxyHeaders:
      forwardedClientCert: SANITIZE
      server:
        disabled: true
      requestId:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

        for (int i = 1; i < numKeys; i++) {
          nodes.get(i).checkAcquiredLocks(Policies.THROW, nodes.subList(0, i));
        }
        // Pre-populate all disallowedPriorLocks with nodes of larger ordinal.
        for (int i = 0; i < numKeys - 1; i++) {
          nodes.get(i).checkAcquiredLocks(Policies.DISABLED, nodes.subList(i + 1, numKeys));
        }
        return Collections.unmodifiableMap(map);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  10. src/crypto/aes/asm_s390x.s

    	// setup parameters
    	MOVD	cnt+112(FP), R8
    	XC	$12, (R1), (R1)     // reserved
    	MVC	$4, 12(R8), 12(R1)  // set chain value
    	MVC	$16, (R8), 64(R1)   // set initial counter value
    	XC	$32, 16(R1), 16(R1) // set hash subkey and tag
    	SLD	$3, R7, R12
    	MOVD	R12, 48(R1)         // set total AAD length
    	SLD	$3, R5, R12
    	MOVD	R12, 56(R1)         // set total plaintext/ciphertext length
    
    	LMG	key+8(FP), R8, R9   // R8=base R9=len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top