Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 200 for subkeys (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/test/framework/components/echo/echotest/run.go

    		ctx.NewSubTestf("to %s", strings.Join(toNames, " ")).Run(func(ctx framework.TestContext) {
    			testFn(ctx, svc)
    		})
    	}
    }
    
    // nDestinations splits the given deployments into subsets of size n. A deployment may be present in multiple subsets to
    // ensure every deployment is included.
    func nDestinations(ctx framework.TestContext, n int, deployments echo.Services) (out []echo.Services) {
    	nDests := len(deployments)
    	if nDests < n {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/test/framework/components/echo/kube/deployment.go

    		"ServiceAccount":          cfg.ServiceAccount,
    		"DisableAutomountSAToken": cfg.DisableAutomountSAToken,
    		"AppContainers":           appContainers,
    		"ContainerPorts":          containerPorts,
    		"Subsets":                 cfg.Subsets,
    		"TLSSettings":             cfg.TLSSettings,
    		"Cluster":                 cfg.Cluster.Name(),
    		"ReadinessTCPPort":        cfg.ReadinessTCPPort,
    		"ReadinessGRPCPort":       cfg.ReadinessGRPCPort,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top