Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Credential (0.15 sec)

  1. pilot/pkg/networking/core/gateway_test.go

    										},
    									},
    								},
    							},
    						},
    					},
    				},
    				RequireClientCertificate: proto.BoolTrue,
    			},
    		},
    		{ // No credential name is specified, generate file paths for key/cert.
    			name: "no credential name no key no cert tls SIMPLE",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com", "bookinfo.example.com"},
    				Port: &networking.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

      }
    
      @Test
      fun attemptAuthorization20Times() {
        for (i in 0..19) {
          server.enqueue(MockResponse(code = 401))
        }
        server.enqueue(MockResponse(body = "Success!"))
        val credential = basic("jesse", "secret")
        client =
          client.newBuilder()
            .authenticator(RecordingOkAuthenticator(credential, null))
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      # credential provider instead of in-tree auth credential provider.
      # https://kubernetes.io/docs/tasks/kubelet-credential-provider/kubelet-credential-provider
      if [[ "${ENABLE_AUTH_PROVIDER_GCP:-true}" == "true" ]]; then
        # Keep the values of --image-credential-provider-config and --image-credential-provider-bin-dir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

      servers:
      - port:
          number: {{.GatewayPort}}
          name: {{.GatewayPortName}}
          protocol: {{.GatewayProtocol}}
    {{- if .Credential }}
        tls:
          mode: {{.TLSMode}}
          credentialName: {{.Credential}}
    {{- if .Ciphers }}
          cipherSuites:
    {{- range $cipher := .Ciphers }}
          - "{{$cipher}}"
    {{- end }}
    {{- end }}
    {{- end }}
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    						Parent:        acc.Credentials.ParentUser,
    						AccessKey:     user,
    						SecretKey:     acc.Credentials.SecretKey,
    						Groups:        acc.Credentials.Groups,
    						Claims:        claims,
    						SessionPolicy: json.RawMessage(policyJSON),
    						Status:        acc.Credentials.Status,
    						Name:          acc.Credentials.Name,
    						Description:   acc.Credentials.Description,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. go.sum

    github.com/docker/docker v26.0.2+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
    github.com/docker/docker-credential-helpers v0.8.1 h1:j/eKUktUltBtMzKqmfLB0PAgqYyMHOp5vfsD1807oKo=
    github.com/docker/docker-credential-helpers v0.8.1/go.mod h1:P3ci7E3lwkZg6XiHdRKft1KckHiO9a2rNtyFbZ/ry9M=
    github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    				Mode:       networking.ServerTLSSettings_ISTIO_MUTUAL,
    				PrivateKey: "Khan Noonien Singh",
    			},
    			"cannot have associated private key", "",
    		},
    		{
    			"istio_mutual with credential name",
    			&networking.ServerTLSSettings{
    				Mode:           networking.ServerTLSSettings_ISTIO_MUTUAL,
    				CredentialName: "some-cred",
    			},
    			"cannot have associated credentialName", "",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    	return MetricDescription{
    		Namespace: namespace,
    		Subsystem: replicationSubsystem,
    		Name:      credentialErrors,
    		Help:      "Total number of replication credential errors since server uptime",
    		Type:      counterMetric,
    	}
    }
    
    func getClusterReplCurrQueuedOperationsMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    		}
    	}
    	if tls.CaCrl != "" {
    		if tls.CredentialName != "" {
    			v = AppendValidation(v, fmt.Errorf("CRL is not supported with credentialName. CRL has to be specified in the credential"))
    		}
    		if tls.Mode == networking.ServerTLSSettings_SIMPLE {
    			v = AppendValidation(v, fmt.Errorf("CRL is not supported with SIMPLE TLS"))
    		}
    	}
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    			objectName:         objectName,
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusOK,
    		},
    		// Test case - 2.
    		// Case with non-existent object name.
    		{
    			bucketName:         bucketName,
    			objectName:         "abcd",
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusNotFound,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top