Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for proxyconfig (0.31 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                        resourceFieldRef:
                          resource: limits.cpu
                    - name: PROXY_CONFIG
                      value: |
                             {{ protoToJSON .ProxyConfig }}
                    {{- if .ProxyConfig.ProxyMetadata }}
                    {{- range $key, $value := .ProxyConfig.ProxyMetadata }}
                    - name: {{ $key }}
                      value: "{{ $value }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    	testCases := []struct {
    		name              string
    		node              *pilot_model.Proxy
    		server            *networking.Server
    		routeName         string
    		proxyConfig       *meshconfig.ProxyConfig
    		result            *filterChainOpts
    		transportProtocol istionetworking.TransportProtocol
    	}{
    		{
    			name: "HTTP1.0 mode enabled",
    			node: &pilot_model.Proxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        testConnectViaProxy(ProxyConfig.CREATE_ARG)
      }
    
      @Test
      fun connectViaProxyUsingProxySystemProperty() {
        testConnectViaProxy(ProxyConfig.PROXY_SYSTEM_PROPERTY)
      }
    
      @Test
      fun connectViaProxyUsingHttpProxySystemProperty() {
        testConnectViaProxy(ProxyConfig.HTTP_PROXY_SYSTEM_PROPERTY)
      }
    
      private fun testConnectViaProxy(proxyConfig: ProxyConfig) {
        server.enqueue(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    fieldRef: fieldPath: spec.serviceAccountName - name: HOST_IP valueFrom: fieldRef: fieldPath: status.hostIP - name: ISTIO_CPU_LIMIT valueFrom: resourceFieldRef: resource: limits.cpu - name: PROXY_CONFIG value: | {{ protoToJSON .ProxyConfig }} {{- if .ProxyConfig.ProxyMetadata }} {{- range $key, $value := .ProxyConfig.ProxyMetadata }} - name: {{ $key }} value: "{{ $value }}" {{- end }} {{- end }} - name: GOMEMLIMIT valueFrom: resourceFieldRef: resource: limits.memory - name: GOMAXPROCS valueFrom: resourceFieldRef:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	return aae.Msg
    }
    
    // ValidateProxyConfig validates a ProxyConfig CR (as opposed to the MeshConfig field).
    var ValidateProxyConfig = RegisterValidateFunc("ValidateProxyConfig",
    	func(cfg config.Config) (Warning, error) {
    		spec, ok := cfg.Spec.(*networkingv1beta1.ProxyConfig)
    		if !ok {
    			return nil, fmt.Errorf("cannot cast to proxyconfig")
    		}
    
    		errs := Validation{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    	tests := []struct {
    		name    string
    		in      proto.Message
    		out     string
    		warning string
    	}{
    		{"empty", &networkingv1beta1.ProxyConfig{}, "", ""},
    		{name: "invalid concurrency", in: &networkingv1beta1.ProxyConfig{
    			Concurrency: &wrapperspb.Int32Value{Value: -1},
    		}, out: "concurrency must be greater than or equal to 0"},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top