Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 199 for subkeys (2.68 sec)

  1. pkg/controlplane/reconcilers/endpointsadapter_test.go

    	}
    
    	return &corev1.Endpoints{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      name,
    			Namespace: namespace,
    			Labels: map[string]string{
    				discovery.LabelSkipMirror: "true",
    			},
    		},
    		Subsets: []corev1.EndpointSubset{subset},
    	}, epSlice
    }
    
    func TestEndpointManagerEnsureEndpointSliceFromEndpoints(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/networkfilter.go

    	if destinationRule != nil {
    		useSourceIP := destinationRule.GetTrafficPolicy().GetLoadBalancer().GetConsistentHash().GetUseSourceIp()
    		for _, subset := range destinationRule.Subsets {
    			if subset.Name != subsetName {
    				continue
    			}
    			// If subset has load balancer - see if it is also consistent hash source IP
    			if subset.TrafficPolicy != nil && subset.TrafficPolicy.LoadBalancer != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    			Host: "reviews",
    			Subsets: []*networking.Subset{
    				{Name: "v1", Labels: map[string]string{"version": "v1"}},
    				{Name: "v2", Labels: map[string]string{"version": "v2"}},
    			},
    		}, valid: true},
    
    		{name: "simple destination rule with empty selector labels", in: &networking.DestinationRule{
    			Host: "reviews",
    			Subsets: []*networking.Subset{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    	}
    	// Apply traffic policy for the subset cluster.
    	cb.applyTrafficPolicy(opts)
    
    	maybeApplyEdsConfig(subsetCluster.cluster)
    
    	cb.applyMetadataExchange(opts.mutable.cluster)
    
    	// Add the DestinationRule+subsets metadata. Metadata here is generated on a per-cluster
    	// basis in buildCluster, so we can just insert without a copy.
    	subsetCluster.cluster.Metadata = util.AddConfigInfoMetadata(subsetCluster.cluster.Metadata, destRule.Meta)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    See link:{groovyDslPath}/org.gradle.nativeplatform.test.xctest.tasks.XCTest.html[XCTest] for details on all the available configuration options.
    
    [[sec:swift_test_filtering]]
    == Test filtering
    It’s a common requirement to run subsets of a test suite, such as when you’re fixing a bug or developing a new test case.
    Gradle provides filtering to do this.
    You can select tests to run based on:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

        }
    
        /**
         * Use the supplied ascii-armored in-memory PGP secret key and password
         * instead of reading it from a keyring.
         * In case a signing subkey is provided, keyId must be provided as well.
         *
         * <pre><code>
         * signing {
         *     def keyId = findProperty("keyId")
         *     def secretKey = findProperty("mySigningKey")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/cidrallocator.go

    	c.muTree.Lock()
    	defer c.muTree.Unlock()
    
    	address := ipToAddr(ip)
    	prefix := netip.PrefixFrom(address, address.BitLen())
    	// Use the largest subnet to allocate addresses because
    	// all the other subnets will be contained.
    	_, allocator, ok := c.tree.ShortestPrefixMatch(prefix)
    	if !ok {
    		klog.V(2).Infof("Could not get allocator for IP %s", ip.String())
    		return nil, ErrMismatchedNetwork
    	}
    	return allocator, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. cmd/peer-rest-client.go

    }
    
    // SignalService - sends signal to peer nodes.
    func (client *peerRESTClient) SignalService(sig serviceSignal, subSys string, dryRun bool) error {
    	values := grid.NewMSS()
    	values.Set(peerRESTSignal, strconv.Itoa(int(sig)))
    	values.Set(peerRESTDryRun, strconv.FormatBool(dryRun))
    	values.Set(peerRESTSubSys, subSys)
    	_, err := signalServiceRPC.Call(context.Background(), client.gridConn(), values)
    	return err
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

    import org.apache.sshd.common.util.buffer.ByteArrayBuffer
    import org.apache.sshd.server.SshServer
    import org.apache.sshd.server.auth.password.PasswordAuthenticator
    import org.apache.sshd.server.auth.pubkey.PublickeyAuthenticator
    import org.apache.sshd.server.command.Command
    import org.apache.sshd.scp.server.ScpCommandFactory
    import org.apache.sshd.server.session.ServerSession
    import org.apache.sshd.sftp.server.SftpSubsystem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. tests/integration/security/egress_gateway_origination_test.go

    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: egressgateway-for-server-sds
    spec:
      host: {{.EgressService}}.{{.EgressNamespace}}.svc.cluster.local
      subsets:
      - name: server
        trafficPolicy:
          portLevelSettings:
          - port:
              number: 443
            tls:
              mode: ISTIO_MUTUAL
              sni: {{ .to.Config.ClusterLocalFQDN }}
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top