Home
last modified time | relevance | path

Searched refs:currentAuthMethod (Results 1 – 6 of 6) sorted by relevance

/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/consul/command/acl/authmethod/update/
H A Dauthmethod_update.go118 currentAuthMethod, _, err := client.ACL().AuthMethodRead(c.name, nil)
122 } else if currentAuthMethod == nil {
141 Name: currentAuthMethod.Name,
142 Type: currentAuthMethod.Type,
146 if currentAuthMethod.Type == "kubernetes" {
165 methodCopy := *currentAuthMethod
174 if currentAuthMethod.Type == "kubernetes" {
/dports/sysutils/consul/consul-1.10.3/command/acl/authmethod/update/
H A Dauthmethod_update.go167 currentAuthMethod, _, err := client.ACL().AuthMethodRead(c.name, nil)
171 } else if currentAuthMethod == nil {
190 Name: currentAuthMethod.Name,
191 Type: currentAuthMethod.Type,
221 if currentAuthMethod.Type == "kubernetes" {
240 methodCopy := *currentAuthMethod
278 if currentAuthMethod.Type == "kubernetes" {
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/hashicorp/consul/command/acl/authmethod/update/
H A Dauthmethod_update.go167 currentAuthMethod, _, err := client.ACL().AuthMethodRead(c.name, nil)
171 } else if currentAuthMethod == nil {
190 Name: currentAuthMethod.Name,
191 Type: currentAuthMethod.Type,
221 if currentAuthMethod.Type == "kubernetes" {
240 methodCopy := *currentAuthMethod
278 if currentAuthMethod.Type == "kubernetes" {
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/hashicorp/consul/command/acl/authmethod/update/
H A Dauthmethod_update.go167 currentAuthMethod, _, err := client.ACL().AuthMethodRead(c.name, nil)
171 } else if currentAuthMethod == nil {
190 Name: currentAuthMethod.Name,
191 Type: currentAuthMethod.Type,
221 if currentAuthMethod.Type == "kubernetes" {
240 methodCopy := *currentAuthMethod
278 if currentAuthMethod.Type == "kubernetes" {
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/hashicorp/consul/command/acl/authmethod/update/
H A Dauthmethod_update.go167 currentAuthMethod, _, err := client.ACL().AuthMethodRead(c.name, nil)
171 } else if currentAuthMethod == nil {
190 Name: currentAuthMethod.Name,
191 Type: currentAuthMethod.Type,
221 if currentAuthMethod.Type == "kubernetes" {
240 methodCopy := *currentAuthMethod
278 if currentAuthMethod.Type == "kubernetes" {
/dports/net/jcifs/jcifs_1.3.19/src/jcifs/http/
H A DNtlmHttpURLConnection.java503 String currentAuthMethod = (String) iterator.next(); in attemptNegotiation() local
504 if (currentAuthMethod.startsWith("NTLM")) { in attemptNegotiation()
505 if (currentAuthMethod.length() == 4) { in attemptNegotiation()
509 if (currentAuthMethod.indexOf(' ') != 4) continue; in attemptNegotiation()
511 authorization = currentAuthMethod.substring(5).trim(); in attemptNegotiation()
513 } else if (currentAuthMethod.startsWith("Negotiate")) { in attemptNegotiation()
514 if (currentAuthMethod.length() == 9) { in attemptNegotiation()
518 if (currentAuthMethod.indexOf(' ') != 9) continue; in attemptNegotiation()
520 authorization = currentAuthMethod.substring(10).trim(); in attemptNegotiation()