Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 200 for subkeys (0.36 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    					if tc.service != "" {
    						svc = tc.service
    					}
    					echoConfig := echo.Config{
    						Namespace: ns,
    						Service:   svc,
    					}
    					if tc.pcAnnotation != "" {
    						echoConfig.Subsets = []echo.SubsetConfig{
    							{
    								Annotations: map[string]string{
    									annotation.ProxyConfig.Name: tc.pcAnnotation,
    								},
    							},
    						}
    					}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/defaults.go

    		*obj.FSType = "ext4"
    	}
    	if obj.ReadOnly == nil {
    		obj.ReadOnly = new(bool)
    		*obj.ReadOnly = false
    	}
    }
    func SetDefaults_Endpoints(obj *v1.Endpoints) {
    	for i := range obj.Subsets {
    		ss := &obj.Subsets[i]
    		for i := range ss.Ports {
    			ep := &ss.Ports[i]
    			if ep.Protocol == "" {
    				ep.Protocol = v1.ProtocolTCP
    			}
    		}
    	}
    }
    func SetDefaults_HTTPGetAction(obj *v1.HTTPGetAction) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition_test.go

    		},
    		{
    			name: "delayed eval error",
    			variables: []NamedExpressionAccessor{
    				&testVariable{
    					name:       "count",
    					expression: "object.subsets[114514].addresses.size()", // array index out of bound
    				},
    			},
    			attributes:           endpointCreateAttributes(),
    			expression:           "variables.count == 810",
    			expectErr:            true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top