Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for SIMPLE (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	handler := handle(map[string]rest.Storage{
    		"simple":     &SimpleRESTStorage{},
    		"simple/sub": storage,
    	})
    	server := httptest.NewServer(handler)
    	defer server.Close()
    	client := http.Client{}
    
    	simple := &genericapitesting.Simple{Other: "foo"}
    	data, err := runtime.Encode(testCodec, simple)
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    		warning string
    	}{
    		{"empty", &networking.ServerTLSSettings{}, "", ""},
    		{
    			"simple",
    			&networking.ServerTLSSettings{
    				Mode:              networking.ServerTLSSettings_SIMPLE,
    				ServerCertificate: "Captain Jean-Luc Picard",
    				PrivateKey:        "Khan Noonien Singh",
    			},
    			"", "",
    		},
    		{
    			"simple with client bundle",
    			&networking.ServerTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder_test.go

    		if found {
    			if alpnOverride.GetStringValue() != "false" {
    				t.Errorf("alpn_override:%s tlsMode:%s, should be false for either TLS mode SIMPLE or MUTUAL", alpnOverride, tlsMode)
    			}
    		} else {
    			t.Errorf("alpn_override metadata should be written for either TLS mode SIMPLE or MUTUAL")
    		}
    	} else if ok {
    		alpnOverride, found := istio.Fields[util.AlpnOverrideMetadataKey]
    		if found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    									},
    								},
    							},
    						},
    					},
    				},
    				RequireClientCertificate: proto.BoolTrue,
    			},
    		},
    		{
    			// tcp server is simple tls, no istio-peer-exchange in the alpns
    			name: "tcp server, tls SIMPLE",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com", "bookinfo.example.com"},
    				Port: &networking.Port{
    					Protocol: string(protocol.TLS),
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    TLSV1_3 type: string mode: description: 'Optional: Indicates whether connections to this port should be secured using TLS.' enum: - PASSTHROUGH - SIMPLE - MUTUAL - AUTO_PASSTHROUGH - ISTIO_MUTUAL - OPTIONAL_MUTUAL type: string privateKey: description: REQUIRED if mode is `SIMPLE` or `MUTUAL`. type: string serverCertificate: description: REQUIRED if mode is `SIMPLE` or `MUTUAL`. type: string subjectAltNames: description: A list of alternate names to verify the subject identity in the certificate presented...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    		name:             "usage2: matched with simple collision-resistant claim name:200",
    		targetMatchers:   matchers,
    		workloadAgnostic: true,
    		viaIngress:       true,
    		config:           configAll,
    		templateVars: func(src echo.Callers, dest echo.Instances) map[string]any {
    			return map[string]any{
    				"Headers":           []configData{{"@request.auth.claims[******@****.***/simple]", "exact", "valueC"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            0.5,
        )
    
      def test_qat_vocab_table_lookup_model(self):
        tags = {tag_constants.SERVING}
        signature_def_key = signature_constants.DEFAULT_SERVING_SIGNATURE_DEF_KEY
    
        # Create and save a simple model that involves a hash table.
        inputs, outputs = self._create_and_save_vocab_table_lookup_qat_model_tf1(
            self._input_saved_model_path, tags, signature_def_key
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_test.go

    			Host: "*.example.org",
    			TrafficPolicy: &networking.TrafficPolicy{
    				LoadBalancer: &networking.LoadBalancerSettings{
    					LbPolicy: &networking.LoadBalancerSettings_Simple{
    						Simple: networking.LoadBalancerSettings_ROUND_ROBIN,
    					},
    				},
    			},
    		},
    	})
    
    	c := xdstest.ExtractCluster("outbound|8080||*.example.org",
    		clusters)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    	labelsutil "k8s.io/kubernetes/pkg/util/labels"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    var (
    	simpleDaemonSetLabel  = map[string]string{"name": "simple-daemon", "type": "production"}
    	simpleDaemonSetLabel2 = map[string]string{"name": "simple-daemon", "type": "test"}
    	simpleNodeLabel       = map[string]string{"color": "blue", "speed": "fast"}
    	simpleNodeLabel2      = map[string]string{"color": "red", "speed": "fast"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    		// If tls mode is SIMPLE or MUTUAL/OPTIONL_MUTUAL, and CredentialName is specified, credentials are fetched
    		// remotely. ServerCertificate and CaCertificates fields are not required.
    		return
    	}
    	if tls.Mode == networking.ServerTLSSettings_SIMPLE {
    		if tls.ServerCertificate == "" {
    			v = AppendValidation(v, fmt.Errorf("SIMPLE TLS requires a server certificate"))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top