- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 641 for zoeken (0.08 sec)
-
tests/test_security_oauth2_optional_description.py
from fastapi.testclient import TestClient from pydantic import BaseModel app = FastAPI() reusable_oauth2 = OAuth2( flows={ "password": { "tokenUrl": "token", "scopes": {"read:users": "Read the users", "write:users": "Create users"}, } }, description="OAuth2 security scheme", auto_error=False, ) class User(BaseModel):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 10.9K bytes - Viewed (0) -
internal/disk/stat_linux.go
s, err := bufio.NewReader(file).ReadString('\n') if err != nil && !errors.Is(err, io.EOF) { return nil, err } statLine := strings.TrimSpace(s) for _, token := range strings.Fields(statLine) { ui64, err := strconv.ParseUint(token, 10, 64) if err != nil { return nil, err } stats = append(stats, ui64) } return stats, nil
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Feb 26 19:34:50 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 15.4K bytes - Viewed (0) -
docs/em/docs/tutorial/security/simple-oauth2.md
Oauth2๏ธโฃ ๐ซ ๐ป. /// ## ๐ ๐ค `username` & `password` ๐ โก๏ธ โ๏ธ ๐ ๐ **FastAPI** ๐ต ๐. ### `OAuth2PasswordRequestForm` ๐ฅ, ๐ `OAuth2PasswordRequestForm`, & โ๏ธ โซ๏ธ ๐ โฎ๏ธ `Depends` *โก ๐ ๏ธ* `/token`: //// tab | ๐ 3๏ธโฃ.6๏ธโฃ & ๐ ```Python hl_lines="4 76" {!> ../../docs_src/security/tutorial003.py!} ``` //// //// tab | ๐ 3๏ธโฃ.1๏ธโฃ0๏ธโฃ & ๐ ```Python hl_lines="2 74"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java
* "user.addresses(myAddress).street"</li> * </ul> * * @param expression not null expression * @param root not null object * @param trimRootToken trim root token yes/no. * @return the object defined by the expression * @throws IntrospectionException if any */ public static Object evaluate(@Nonnull String expression, @Nullable Object root, boolean trimRootToken)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.8K bytes - Viewed (0) -
samples/guide/src/test/kotlin/okhttp3/AllMainsTest.kt
className: String, cause: Throwable, ): Boolean { return when (className) { "okhttp3.recipes.CheckHandshake" -> true // by design "okhttp3.recipes.RequestBodyCompression" -> true // expired token else -> false } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.7K bytes - Viewed (0) -
.github/workflows/scorecards-analysis.yml
runs-on: ubuntu-latest permissions: # Needed to upload the results to code-scanning dashboard. security-events: write # Needed to publish results and get a badge (see publish_results below). id-token: write steps: - name: "Checkout code" uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: persist-credentials: false - name: "Run analysis"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Nov 01 08:40:10 UTC 2024 - 2.6K bytes - Viewed (0) -
istioctl/pkg/internaldebug/internal-debug.go
# SECURITY OPTIONS # Retrieve syncz debug information directly from the control plane, using token security # (This is the usual way to get the debug information with an out-of-cluster control plane.) istioctl x internal-debug syncz --xds-address istio.cloudprovider.example.com:15012 # Retrieve syncz debug information via Kubernetes config, using token security # (This is the usual way to get the debug information with an in-cluster control plane.)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 12 11:30:24 UTC 2024 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosEncData.java
private ArrayList<InetAddress> userAddresses; private List<KerberosAuthData> userAuthorizations; public KerberosEncData ( byte[] token, Map<Integer, KerberosKey> keys ) throws PACDecodingException { ASN1InputStream stream = new ASN1InputStream(new ByteArrayInputStream(token)); ASN1TaggedObject derToken; try { derToken = ASN1Util.as(ASN1TaggedObject.class, stream);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 11.4K bytes - Viewed (0) -
docs/de/docs/advanced/security/oauth2-scopes.md
Das ist derselbe Mechanismus, der verwendet wird, wenn Sie beim Anmelden mit Facebook, Google, GitHub, usw. Berechtigungen erteilen: <img src="/img/tutorial/security/image11.png"> ## JWT-Token mit Scopes รndern Sie nun die Token-*Pfadoperation*, um die angeforderten Scopes zurรผckzugeben.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 22.5K bytes - Viewed (0)