Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 582 for SIMPLE (0.09 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. staging/src/k8s.io/apiserver/pkg/endpoints/audit_test.go

    				"simple": &SimpleRESTStorage{
    					list: []genericapitesting.Simple{
    						{
    							ObjectMeta: metav1.ObjectMeta{Name: "a", Namespace: "other"},
    							Other:      "foo",
    						},
    						{
    							ObjectMeta: metav1.ObjectMeta{Name: "b", Namespace: "other"},
    							Other:      "foo",
    						},
    					},
    					item: genericapitesting.Simple{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/ssa/branchelim.go

    	if dom.Kind != BlockIf || dom.Likely != BranchUnknown {
    		return false
    	}
    	var simple, post *Block
    	for i := range dom.Succs {
    		bb, other := dom.Succs[i].Block(), dom.Succs[i^1].Block()
    		if isLeafPlain(bb) && bb.Succs[0].Block() == other {
    			simple = bb
    			post = other
    			break
    		}
    	}
    	if simple == nil || len(post.Preds) != 2 || post == dom {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    		}
    		// clearing TypeMeta is a function of the scheme, which we do not test here (ConvertToVersion
    		// does not automatically clear TypeMeta anymore).
    		simple.TypeMeta = runtime.TypeMeta{Kind: "Simple", APIVersion: externalGV.String()}
    		if e, a := simple, obj3; !reflect.DeepEqual(e, a) {
    			t.Errorf("Expected:\n %#v,\n Got:\n %#v", e, a)
    		}
    
    		obj4, err := runtime.Decode(jsonserializer, data)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  10. 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)
Back to top