Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 176 for subkeys (0.34 sec)

  1. tests/integration/telemetry/tracing/tracing.go

    				Service:   fmt.Sprintf("client-%s", clName),
    				Namespace: appNsInst,
    				Cluster:   c,
    				Ports:     nil,
    				Subsets:   []echo.SubsetConfig{{}},
    			}).
    			WithConfig(echo.Config{
    				Service:   "server",
    				Namespace: appNsInst,
    				Cluster:   c,
    				Subsets:   []echo.SubsetConfig{{}},
    				Ports: []echo.Port{
    					{
    						Name:         "http",
    						Protocol:     protocol.HTTP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    			Host: testhost,
    			Subsets: []*networking.Subset{
    				{
    					Name: "subset1",
    				},
    				{
    					Name: "subset2",
    				},
    			},
    		},
    	}
    	destinationRuleNamespace2 := config.Config{
    		Meta: config.Meta{
    			Name:      "rule2",
    			Namespace: "test",
    		},
    		Spec: &networking.DestinationRule{
    			Host: testhost,
    			Subsets: []*networking.Subset{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. src/crypto/ed25519/ed25519_test.go

    			t.Errorf("recreating key pair gave different private key on line %d: %x vs %x", lineNo, priv[:], priv2)
    		}
    
    		if pubKey2 := priv2.Public().(PublicKey); !bytes.Equal(pubKey, pubKey2) {
    			t.Errorf("recreating key pair gave different public key on line %d: %x vs %x", lineNo, pubKey, pubKey2)
    		}
    
    		if seed := priv2.Seed(); !bytes.Equal(priv[:32], seed) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/tcp_probe_test.go

    	name string, rewrite bool, wantSuccess bool, openPort bool,
    ) {
    	ctx.Helper()
    
    	var tcpProbe echo.Instance
    	cfg := echo.Config{
    		Namespace:        ns,
    		Service:          name,
    		ReadinessTCPPort: "1234",
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    
    	if openPort {
    		cfg.Ports = []echo.Port{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. tests/integration/pilot/grpc_probe_test.go

    ) {
    	ctx.Helper()
    
    	var grpcProbe echo.Instance
    	cfg := echo.Config{
    		Namespace:         ns,
    		Service:           name,
    		ReadinessGRPCPort: "1234",
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    
    	if openPort {
    		cfg.Ports = []echo.Port{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/deployment/external.go

    			// Override hostname to match the SAN in the cert we are using
    			// TODO(nmittler): We should probably make this the same as ExternalHostname
    			Hostname: "server.default.svc",
    		},
    		Subsets: []echo.SubsetConfig{
    			{
    				Version:     "v1",
    				Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    			},
    		},
    	}
    	if t.Settings().EnableDualStack {
    		config.IPFamilies = "IPv6, IPv4"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. tests/integration/security/mtls_healthcheck_test.go

    	cfg := echo.Config{
    		Namespace: ns,
    		Service:   name,
    		Ports: []echo.Port{{
    			Name:         "http-8080",
    			Protocol:     protocol.HTTP,
    			ServicePort:  8080,
    			WorkloadPort: 8080,
    		}},
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. tests/integration/pilot/cross_revision_test.go

    			for _, ns := range namespaces {
    				builder = builder.WithConfig(echo.Config{
    					Service:   ns.revision,
    					Namespace: ns.namespace,
    					Ports:     ports.All(),
    					Subsets:   []echo.SubsetConfig{{}},
    				})
    			}
    			instances := builder.BuildOrFail(t)
    			// Add our existing revision to the instances list
    			instances = append(instances, apps.A...)
    			testAllEchoCalls(t, instances)
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/echotest/filters.go

    func reachableNakedDestinations(from echo.Instance) match.Matcher {
    	srcNw := from.Config().Cluster.NetworkName()
    	excluded := match.And(
    		// Only exclude naked if all subsets are naked. If an echo instance contains a mix of
    		// subsets with and without sidecars, we'll leave it up to the test to determine what
    		// is reachable.
    		match.AllNaked,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. src/crypto/aes/gcm_s390x.go

    // only be used if hasKMA is true.
    type gcmKMA struct {
    	gcmAsm
    }
    
    // flags for the KMA instruction
    const (
    	kmaHS      = 1 << 10 // hash subkey supplied
    	kmaLAAD    = 1 << 9  // last series of additional authenticated data
    	kmaLPC     = 1 << 8  // last series of plaintext or ciphertext blocks
    	kmaDecrypt = 1 << 7  // decrypt
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top