Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 396 for SIMPLE (0.14 sec)

  1. docs/en/docs/tutorial/security/simple-oauth2.md

    # Simple OAuth2 with Password and Bearer
    
    Now let's build from the previous chapter and add the missing parts to have a complete security flow.
    
    ## Get the `username` and `password`
    
    We are going to use **FastAPI** security utilities to get the `username` and `password`.
    
    OAuth2 specifies that when using the "password flow" (that we are using) the client/user must send a `username` and `password` fields as form data.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/security/simple-oauth2.md

    DoHyun Kim <******@****.***> 1712097443 +0900
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 22:37:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/security/simple-oauth2.md

    Nils Lindemann <******@****.***> 1711822124 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/MultipartReaderTest.kt

        val multipart =
          """
          |--simple boundary
          |
          |abcd
          |--simple boundary--
          """.trimMargin()
            .replace(Regex("(?m)simple boundary$"), "simple boundary \t \t")
            .replace("\n", "\r\n")
    
        val parts =
          MultipartReader(
            boundary = "simple boundary",
            source = Buffer().writeUtf8(multipart),
          )
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ModelType.java

            }
        }
    
        private static class Simple<T> extends ModelType<T> {
            public static <T> ModelType<T> typed(Type type) {
                return new Simple<T>(type);
            }
    
            public static <T> ModelType<T> typed(TypeWrapper wrapper) {
                return new Simple<T>(wrapper);
            }
    
            public Simple(Type type) {
                super(wrap(type));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

    import org.jetbrains.kotlin.analysis.api.types.KaType
    import org.jetbrains.kotlin.psi.KtExpression
    
    /**
     * A call to a function, a simple/compound access to a property, or a simple/compound access through `get` and `set` convention.
     */
    public sealed class KaCall : KaLifetimeOwner
    
    /**
     * A call to a function, or a simple/compound access to a property.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    				//      --> externalServer(443 with only Simple TLS used and client cert is not verified)
    				"Mutual TLS origination from egress gateway to https endpoint": {
    					destinationRuleMode: "MUTUAL",
    					code:                http.StatusOK,
    					gateway:             true,
    					fakeRootCert:        false,
    				},
    				// 2. Simple TLS case:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/builder_test.go

    			input:    "simple-policy-td-aliases-in.yaml",
    			want:     []string{"simple-policy-td-aliases-out.yaml"},
    		},
    		{
    			name:     "trust-domain-multiple-aliases",
    			tdBundle: trustdomain.NewBundle("td1", []string{"cluster.local", "some-td"}),
    			input:    "simple-policy-multiple-td-aliases-in.yaml",
    			want:     []string{"simple-policy-multiple-td-aliases-out.yaml"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/aggregate/controller_test.go

    		discovery2.AddInstance(mock.MakeServiceInstance(mock.WorldService, port, 1, model.Locality{}))
    	}
    	registry1 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter1"),
    		DiscoveryController: discovery1,
    	}
    
    	registry2 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter2"),
    		DiscoveryController: discovery2,
    	}
    
    	ctls := NewController(Options{&mockMeshConfigHolder{}})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            parse 'dependency-notations'
    
            then:
            hasDependency('simple') {
                withGAV('foo', 'bar', '1.0')
            }
            hasDependency('simple-with-rich1') {
                withGroup 'foo'
                withName 'bar'
                withVersion {
                    prefer '1.0'
                }
            }
            hasDependency('simple-with-rich2') {
                withGroup 'foo'
                withName 'bar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top