Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 929 for authn (0.05 sec)

  1. releasenotes/notes/authz-dry-run-alpha.yaml

    area: security
    issue:
    - https://github.com/istio/enhancements/pull/112
    releaseNotes:
    - |
      **Promoted** the authorization policy dry-run mode to alpha.
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 21 00:31:38 UTC 2021
    - 286 bytes
    - Viewed (0)
  2. pkg/credentialprovider/secrets/secrets_test.go

    )
    
    // fakeKeyring is a fake docker auth config keyring
    type fakeKeyring struct {
    	auth []credentialprovider.AuthConfig
    	ok   bool
    }
    
    // Lookup implements the DockerKeyring method for fetching credentials based on image name.
    // Returns fake results based on the auth and ok fields in fakeKeyring
    func (f *fakeKeyring) Lookup(image string) ([]credentialprovider.AuthConfig, bool) {
    	return f.auth, f.ok
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:11:10 UTC 2020
    - 7.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/authentication/DefaultAuthenticationContainerTest.groovy

        }
    
        def "can add multiple authentication schemes with common supertype"() {
            when:
            container.create('auth1', auth1)
            container.create('auth2', auth2)
    
            then:
            container.size() == 2
    
            where:
            auth1                    | auth2
            TestAuthentication       | CustomTestAuthentication
            CustomTestAuthentication | TestAuthentication
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_internal_test.go

    		useExtended bool
    	}{
    		{
    			name: "@request.auth.claims",
    		},
    		{
    			name: "@request.auth.claims-",
    		},
    		{
    			name: "request.auth.claims.",
    		},
    		{
    			name: "@request.auth.claims.",
    		},
    		{
    			name: "@request.auth.claims-abc",
    		},
    		{
    			name: "x-some-other-header",
    		},
    		{
    			name: "@request.auth.claims.key1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

    ### API Change
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. pkg/registry/admissionregistration/validatingadmissionpolicy/authz.go

    Cici Huang <******@****.***> 1667856596 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                    description: |-
                      Determines where in the filter chain this `WasmPlugin` is to be injected.
    
                      Valid Options: AUTHN, AUTHZ, STATS
                    enum:
                    - UNSPECIFIED_PHASE
                    - AUTHN
                    - AUTHZ
                    - STATS
                    type: string
                  pluginConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. pkg/registry/admissionregistration/validatingadmissionpolicybinding/authz.go

    Mikalai Radchuk <******@****.***> 1714565943 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 12:19:03 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. pkg/credentialprovider/config_test.go

    				Email:    "******@****.***",
    			},
    			fail: false,
    		},
    
    		// auth field decodes to username & password
    		{
    			input: []byte(`{"auth": "Zm9vOmJhcg==", "email": "******@****.***"}`),
    			expect: DockerConfigEntry{
    				Username: "foo",
    				Password: "bar",
    				Email:    "******@****.***",
    			},
    			fail: false,
    		},
    
    		// auth field overrides username & password
    		{
    			// Fake values for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. docs/zh/docs/advanced/security/http-basic-auth.md

    # HTTP 基础授权
    
    最简单的用例是使用 HTTP 基础授权(HTTP Basic Auth)。
    
    在 HTTP 基础授权中,应用需要请求头包含用户名与密码。
    
    如果没有接收到 HTTP 基础授权,就返回 HTTP 401 `"Unauthorized"` 错误。
    
    并返回含 `Basic` 值的请求头 `WWW-Authenticate`以及可选的 `realm` 参数。
    
    HTTP 基础授权让浏览器显示内置的用户名与密码提示。
    
    输入用户名与密码后,浏览器会把它们自动发送至请求头。
    
    ## 简单的 HTTP 基础授权
    
    * 导入 `HTTPBasic` 与 `HTTPBasicCredentials`
    * 使用 `HTTPBasic` 创建**安全概图**
    * 在*路径操作*的依赖项中使用 `security`
    * 返回类型为 `HTTPBasicCredentials` 的对象:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun May 05 21:32:54 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top