Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 217 for subkeys (0.61 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/printers/json_test.go

    	objects := map[string]runtime.Object{
    		"pod":             &v1.Pod{ObjectMeta: om("pod")},
    		"emptyPodList":    &v1.PodList{},
    		"nonEmptyPodList": &v1.PodList{Items: []v1.Pod{{}}},
    		"endpoints": &v1.Endpoints{
    			Subsets: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "127.0.0.1"}, {IP: "localhost"}},
    				Ports:     []v1.EndpointPort{{Port: 8080}},
    			}}},
    	}
    
    	// Test PrintObj() success.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. cni/pkg/ipset/ipset.go

    	clearEntriesWithComment(name string, comment string) error
    	clearEntriesWithIP(name string, ip netip.Addr) error
    	listEntriesByIP(name string) ([]netip.Addr, error)
    }
    
    // TODO this should actually create v6 and v6 subsets of type `hash:ip`, add them both to a
    // superset of type `list:set` - we can then query the superset directly in iptables (with the same rule),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    			}
    		} else {
    			g.Expect(cluster.Metadata).To(BeNil())
    		}
    	}
    
    	g.Expect(foundSubset).To(Equal(true))
    	g.Expect(clustersWithMetadata).To(Equal(len(destRule.Subsets) + 6)) // outbound  outbound subsets  inbound
    
    	sniClusters := buildSniDnatTestClustersForGateway(t, "test-sni")
    
    	foundSNISubset := false
    	for _, cluster := range sniClusters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. tests/integration/telemetry/policy/helper_test.go

    	var client, dest echo.Instance
    	deployment.New(t).
    		With(&client, echo.Config{
    			Service:   "client",
    			Namespace: appsNamespace,
    			Subsets:   []echo.SubsetConfig{{}},
    		}).
    		With(&dest, echo.Config{
    			Service:   "destination",
    			Namespace: appsNamespace,
    			Subsets:   []echo.SubsetConfig{{Annotations: map[string]string{annotation.SidecarInject.Name: "false"}}},
    			Ports: []echo.Port{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	// Parse the public key from a file
    	pubKeys, err := keyutil.PublicKeysFromFile(publicKeyPath)
    	if err != nil {
    		return nil, nil, errors.Wrapf(err, "couldn't load the public key file %s", publicKeyPath)
    	}
    
    	// Allow RSA and ECDSA formats only
    	switch k := privKey.(type) {
    	case *rsa.PrivateKey:
    		return k, pubKeys[0].(*rsa.PublicKey), nil
    	case *ecdsa.PrivateKey:
    		return k, pubKeys[0].(*ecdsa.PublicKey), nil
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. android/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)
  9. 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)
  10. 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)
Back to top