- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 1,175 for sessions (0.12 sec)
-
docs_src/response_cookies/tutorial002.py
from fastapi import FastAPI, Response app = FastAPI() @app.post("/cookie-and-object/") def create_cookie(response: Response): response.set_cookie(key="fakesession", value="fake-cookie-session-value")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Mar 26 19:09:53 UTC 2020 - 272 bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchUrlQueue.java
@Override public XContentBuilder toXContent(final XContentBuilder builder, final Params params) throws IOException { builder.startObject(); if (sessionId != null) { builder.field(SESSION_ID, sessionId); } if (method != null) { builder.field(METHOD, method); } if (url != null) { builder.field(URL, url); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 2.2K bytes - Viewed (0) -
tensorflow/c/c_api_experimental.h
TF_CAPI_EXPORT extern TF_Tensor* TF_DequeueNamedTensor(TF_Session* session, int tensor_id, TF_Status* status); // On success, enqueues `tensor` into a TF-managed FifoQueue given by // `tensor_id`, associated with `session`. There must be a graph node named
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Apr 27 21:07:00 UTC 2023 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
return true; } return false; } protected void buildFormParams(final SearchForm form) { final HttpSession session = request.getSession(false); if (session != null) { final Object resultsPerPage = session.getAttribute(Constants.RESULTS_PER_PAGE); if (resultsPerPage instanceof Integer) { form.num = (Integer) resultsPerPage; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 10K bytes - Viewed (0) -
cmd/iam.go
// Reject malformed/malicious requests. return false } // The parent claim in the session token should be equal // to the parent detected in the backend if parentInClaim != parentUser { return false } } else { // This is needed so a malicious user cannot // use a leaked session key of another user // to widen its privileges. return false }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0) -
internal/bucket/lifecycle/lifecycle.go
// DeleteRestoredVersionAction deletes a particular version that was temporarily restored DeleteRestoredVersionAction // DeleteAllVersionsAction deletes all versions when an object expires DeleteAllVersionsAction // DelMarkerDeleteAllVersionsAction deletes all versions when an object with delete marker as latest version expires DelMarkerDeleteAllVersionsAction // ActionCount must be the last action and shouldn't be used as a regular action.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu May 23 01:12:48 UTC 2024 - 17.9K bytes - Viewed (0) -
.github/SECURITY.md
# Security Policy ## Supported Versions Information about supported Istio versions can be found on the [Support Announcements] page on Istio's website. ## Reporting a Vulnerability Instructions for reporting a vulnerability can be found on the [Istio Security Vulnerabilities] page. The Istio Product Security Working Group receives vulnerability and security issue reports, and the company affiliation of the members of
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri May 12 15:17:53 UTC 2023 - 905 bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/SessionServicePacket.java
*/ package jcifs.smb1.netbios; import java.io.IOException; import java.io.InputStream; public abstract class SessionServicePacket { // session service packet types static final int SESSION_MESSAGE = 0x00; static final int SESSION_REQUEST = 0x81; public static final int POSITIVE_SESSION_RESPONSE = 0x82;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.8K bytes - Viewed (0) -
api/maven-api-metadata/src/main/mdo/metadata.mdo
if ( !versions.containsKey( key ) ) { versions.put( key, sv ); } } } v.setSnapshotVersions( new java.util.ArrayList<SnapshotVersion>( versions.values() ) ); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed May 15 17:32:27 UTC 2024 - 15.8K bytes - Viewed (0) -
build-logic-commons/build-platform/build.gradle.kts
import org.gradle.util.internal.VersionNumber plugins { `java-platform` } group = "gradlebuild" description = "Provides a platform that constrains versions of external dependencies used by Gradle" // Here you should declare versions which should be shared by the different modules of buildSrc itself val javaParserVersion = "3.18.0" val groovyVersion = GroovySystem.getVersion()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 21:53:00 UTC 2024 - 4.8K bytes - Viewed (0)