- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 828 for securely (0.06 sec)
-
docs_src/security/tutorial002.py
from typing import Union from fastapi import Depends, FastAPI from fastapi.security import OAuth2PasswordBearer from pydantic import BaseModel app = FastAPI() oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token") class User(BaseModel): username: str email: Union[str, None] = None full_name: Union[str, None] = None disabled: Union[bool, None] = None def fake_decode_token(token): return User(
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat May 14 11:59:59 UTC 2022 - 755 bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; import java.io.IOException; import java.security.GeneralSecurityException; import java.security.PrivilegedActionException; import java.security.PrivilegedExceptionAction; import java.util.ArrayList; import java.util.Collections; import java.util.EnumSet; import java.util.List; import java.util.Objects;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
android/pom.xml
--add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/sun.security.jca=ALL-UNNAMED </test.add.opens> </properties> </profile> <profile> <id>javac-for-jvm18plus</id> <activation> <!-- In order to build and run the tests against JDK 18+, we need to pass java.security.manager=allow, to make
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 21K bytes - Viewed (0) -
pom.xml
--add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/sun.security.jca=ALL-UNNAMED </test.add.opens> </properties> </profile> <profile> <id>javac-for-jvm18plus</id> <activation> <!-- In order to build and run the tests against JDK 18+, we need to pass java.security.manager=allow, to make
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 20.6K bytes - Viewed (0) -
docs/debugging/inspect/go.sum
github.com/philhofer/fwd v1.1.2 h1:bnDivRJ1EWPjUIRXV5KfORO897HTbpFAQddBdE8t7Gw= github.com/philhofer/fwd v1.1.2/go.mod h1:qkPdfjR2SIEbspLqpe1tO4n5yICnr2DY7mqEx2tUTP0= github.com/secure-io/sio-go v0.3.1 h1:dNvY9awjabXTYGsTF1PiCySl9Ltofk9GA3VdWlo7rRc= github.com/secure-io/sio-go v0.3.1/go.mod h1:+xbkjDzPjwh4Axd07pRKSNriS9SCiYksWnZqdnfpQxs= github.com/tinylib/msgp v1.1.9 h1:SHf3yoO2sGA0veCJeCBYLHuttAVFHGm2RHgNodW7wQU=
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 28 09:27:44 UTC 2024 - 3.3K bytes - Viewed (0) -
docs_src/security/tutorial002_an.py
from typing import Union from fastapi import Depends, FastAPI from fastapi.security import OAuth2PasswordBearer from pydantic import BaseModel from typing_extensions import Annotated app = FastAPI() oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token") class User(BaseModel): username: str email: Union[str, None] = None full_name: Union[str, None] = None disabled: Union[bool, None] = None
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 815 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProvider.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.mylasta.direction.sponsor; import org.codelibs.fess.mylasta.direction.FessConfig; import org.lastaflute.core.security.InvertibleCryptographer; import org.lastaflute.web.servlet.cookie.CookieResourceProvider; /** * @author jflute */ public class FessCookieResourceProvider implements CookieResourceProvider {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.6K bytes - Viewed (0) -
docs/de/docs/how-to/conditional-openapi.md
Wenn Sie Ihre API sichern möchten, gibt es mehrere bessere Dinge, die Sie tun können, zum Beispiel:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java
return batchLimits[8]; } return 0; } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { if( session.transport.server.security == SECURITY_SHARE && ( session.auth.hashesExternal || session.auth.password.length() > 0 )) { if( session.transport.server.encryptedPasswords ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
package jcifs.smb1.smb1; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import jcifs.smb1.Config; import jcifs.smb1.util.Hexdump; import jcifs.smb1.util.LogStream; import java.io.IOException; /** * To filter 0 len updates and for debugging */ public class SigningDigest implements SmbConstants { static LogStream log = LogStream.getInstance(); private MessageDigest digest;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7K bytes - Viewed (0)