Home
last modified time | relevance | path

Searched refs:maxlifetime (Results 1 – 25 of 832) sorted by relevance

12345678910>>...34

/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/astaxie/beego/session/memcache/
H A Dsess_memcache.go53 maxlifetime int64 member
101 item := memcache.Item{Key: rs.sid, Value: b, Expiration: int32(rs.maxlifetime)}
107 maxlifetime int64 member
116 func (rp *MemProvider) SessionInit(maxlifetime int64, savePath string) error {
117 rp.maxlifetime = maxlifetime
133 … := &SessionStore{sid: sid, values: make(map[interface{}]interface{}), maxlifetime: rp.maxlifetime}
147 rs := &SessionStore{sid: sid, values: kv, maxlifetime: rp.maxlifetime}
178 item.Expiration = int32(rp.maxlifetime)
183 item.Expiration = int32(rp.maxlifetime)
199 rs := &SessionStore{sid: sid, values: kv, maxlifetime: rp.maxlifetime}
/dports/www/gitea/gitea-1.16.5/vendor/gitea.com/go-chi/session/couchbase/
H A Dcouchbase.go32 maxlifetime int64 member
80 return s.b.Set(s.sid, int(s.maxlifetime), data)
94 maxlifetime int64 member
123 func (p *CouchbaseProvider) Init(maxlifetime int64, connStr string) error {
124 p.maxlifetime = maxlifetime
156 cs := &CouchbaseSessionStore{b: p.b, sid: sid, data: kv, maxlifetime: p.maxlifetime}
189 p.b.Set(sid, int(p.maxlifetime), "")
195 _, _ = p.b.Add(sid, int(p.maxlifetime), doc)
212 cs := &CouchbaseSessionStore{b: p.b, sid: sid, data: kv, maxlifetime: p.maxlifetime}
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/astaxie/beego/session/couchbase/
H A Dsess_couchbase.go53 maxlifetime int64 member
58 maxlifetime int64 member
113 cs.b.Set(cs.sid, int(cs.maxlifetime), bo)
138 func (cp *Provider) SessionInit(maxlifetime int64, savePath string) error {
139 cp.maxlifetime = maxlifetime
176 cs := &SessionStore{b: cp.b, sid: sid, values: kv, maxlifetime: cp.maxlifetime}
200 cp.b.Set(sid, int(cp.maxlifetime), "")
206 _, _ = cp.b.Add(sid, int(cp.maxlifetime), doc)
223 cs := &SessionStore{b: cp.b, sid: sid, values: kv, maxlifetime: cp.maxlifetime}
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/astaxie/beego/session/ledis/
H A Dledis_session.go26 maxlifetime int64 member
75 c.Expire([]byte(ls.sid), ls.maxlifetime)
80 maxlifetime int64 member
88 func (lp *Provider) SessionInit(maxlifetime int64, savePath string) error {
90 lp.maxlifetime = maxlifetime
130 ls := &SessionStore{sid: sid, values: kv, maxlifetime: lp.maxlifetime}
148 c.Expire([]byte(sid), lp.maxlifetime)
152 c.Expire([]byte(sid), lp.maxlifetime)
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/astaxie/beego/session/redis_cluster/
H A Dredis_cluster.go57 maxlifetime int64 member
106 c.Set(rs.sid, string(b), time.Duration(rs.maxlifetime)*time.Second)
111 maxlifetime int64 member
122 func (rp *Provider) SessionInit(maxlifetime int64, savePath string) error {
123 rp.maxlifetime = maxlifetime
175 rs := &SessionStore{p: rp.poollist, sid: sid, values: kv, maxlifetime: rp.maxlifetime}
196 c.Set(sid, "", time.Duration(rp.maxlifetime)*time.Second)
199 c.Expire(sid, time.Duration(rp.maxlifetime)*time.Second)
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/astaxie/beego/session/redis_sentinel/
H A Dsess_redis_sentinel.go57 maxlifetime int64 member
106 c.Set(rs.sid, string(b), time.Duration(rs.maxlifetime)*time.Second)
111 maxlifetime int64 member
123 func (rp *Provider) SessionInit(maxlifetime int64, savePath string) error {
124 rp.maxlifetime = maxlifetime
188 rs := &SessionStore{p: rp.poollist, sid: sid, values: kv, maxlifetime: rp.maxlifetime}
209 c.Set(sid, "", time.Duration(rp.maxlifetime)*time.Second)
212 c.Expire(sid, time.Duration(rp.maxlifetime)*time.Second)
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/astaxie/beego/session/redis/
H A Dsess_redis.go58 maxlifetime int64 member
108 c.Do("SETEX", rs.sid, rs.maxlifetime, string(b))
113 maxlifetime int64 member
124 func (rp *Provider) SessionInit(maxlifetime int64, savePath string) error {
125 rp.maxlifetime = maxlifetime
209 rs := &SessionStore{p: rp.poollist, sid: sid, values: kv, maxlifetime: rp.maxlifetime}
233 c.Do("SET", sid, "", "EX", rp.maxlifetime)
236 c.Do("EXPIRE", sid, rp.maxlifetime)
/dports/www/itop/web/lib/silex/vendor/symfony/http-foundation/Session/Storage/Handler/
H A DPdoSessionHandler.php289 public function gc($maxlifetime) argument
324 $maxlifetime = (int) ini_get('session.gc_maxlifetime');
370 $maxlifetime = (int) ini_get('session.gc_maxlifetime');
682 * @param int $maxlifetime session.gc_maxlifetime
704 $stmt->bindParam(':lifetime', $maxlifetime, \PDO::PARAM_INT);
715 * @param int $maxlifetime session.gc_maxlifetime
737 $stmt->bindParam(':lifetime', $maxlifetime, \PDO::PARAM_INT);
748 * @param int $maxlifetime session.gc_maxlifetime
752 private function getMergeStatement($sessionId, $data, $maxlifetime) argument
784 $mergeStmt->bindParam(4, $maxlifetime, \PDO::PARAM_INT);
[all …]
/dports/www/moodle310/moodle/lib/classes/lock/
H A Dlock_factory.php84 * @param int $maxlifetime - The number of seconds to wait before reclaiming a stale lock.
89 public function get_lock($resource, $timeout, $maxlifetime = 86400); argument
104 * @param int $maxlifetime - new max time to hold the lock
107 public function extend_lock(lock $lock, $maxlifetime = 86400); argument
H A Ddb_record_lock_factory.php117 * @param int $maxlifetime - Unused by this lock type.
120 public function get_lock($resource, $timeout, $maxlifetime = 86400) { argument
125 $expires = $now + $maxlifetime;
197 * @param int $maxlifetime - the new lifetime for the lock (in seconds).
200 public function extend_lock(lock $lock, $maxlifetime = 86400) { argument
205 $expires = $now + $maxlifetime;
/dports/www/moodle39/moodle/lib/classes/lock/
H A Dlock_factory.php83 * @param int $maxlifetime - The number of seconds to wait before reclaiming a stale lock.
88 public function get_lock($resource, $timeout, $maxlifetime = 86400); argument
102 * @param int $maxlifetime - new max time to hold the lock
105 public function extend_lock(lock $lock, $maxlifetime = 86400); argument
H A Ddb_record_lock_factory.php113 * @param int $maxlifetime - Unused by this lock type.
116 public function get_lock($resource, $timeout, $maxlifetime = 86400) { argument
121 $expires = $now + $maxlifetime;
191 * @param int $maxlifetime - the new lifetime for the lock (in seconds).
194 public function extend_lock(lock $lock, $maxlifetime = 86400) { argument
196 $expires = $now + $maxlifetime;
/dports/www/moodle311/moodle/lib/classes/lock/
H A Dlock_factory.php84 * @param int $maxlifetime - The number of seconds to wait before reclaiming a stale lock.
89 public function get_lock($resource, $timeout, $maxlifetime = 86400); argument
104 * @param int $maxlifetime - new max time to hold the lock
107 public function extend_lock(lock $lock, $maxlifetime = 86400); argument
H A Ddb_record_lock_factory.php117 * @param int $maxlifetime - Unused by this lock type.
120 public function get_lock($resource, $timeout, $maxlifetime = 86400) { argument
125 $expires = $now + $maxlifetime;
197 * @param int $maxlifetime - the new lifetime for the lock (in seconds).
200 public function extend_lock(lock $lock, $maxlifetime = 86400) { argument
205 $expires = $now + $maxlifetime;
/dports/lang/php73/php-7.3.33/ext/session/tests/
H A Dbug32330.phpt47 function sGC($maxlifetime)
49 echo "gc: maxlifetime = {$maxlifetime}\n";
74 gc: maxlifetime = %d
79 gc: maxlifetime = %d
84 gc: maxlifetime = %d
/dports/www/mod_php81/php-8.1.1/ext/session/tests/
H A Dbug32330.phpt49 function sGC($maxlifetime)
51 echo "gc: maxlifetime = {$maxlifetime}\n";
76 gc: maxlifetime = %d
81 gc: maxlifetime = %d
86 gc: maxlifetime = %d
/dports/lang/php80/php-8.0.15/ext/session/tests/
H A Dbug32330.phpt47 function sGC($maxlifetime)
49 echo "gc: maxlifetime = {$maxlifetime}\n";
74 gc: maxlifetime = %d
79 gc: maxlifetime = %d
84 gc: maxlifetime = %d
/dports/lang/php81/php-8.1.1/ext/session/tests/
H A Dbug32330.phpt49 function sGC($maxlifetime)
51 echo "gc: maxlifetime = {$maxlifetime}\n";
76 gc: maxlifetime = %d
81 gc: maxlifetime = %d
86 gc: maxlifetime = %d
/dports/lang/php74/php-7.4.27/ext/session/tests/
H A Dbug32330.phpt47 function sGC($maxlifetime)
49 echo "gc: maxlifetime = {$maxlifetime}\n";
74 gc: maxlifetime = %d
79 gc: maxlifetime = %d
84 gc: maxlifetime = %d
/dports/www/php74-session/php-7.4.27/ext/session/tests/
H A Dbug32330.phpt47 function sGC($maxlifetime)
49 echo "gc: maxlifetime = {$maxlifetime}\n";
74 gc: maxlifetime = %d
79 gc: maxlifetime = %d
84 gc: maxlifetime = %d
/dports/www/php73-session/php-7.3.33/ext/session/tests/
H A Dbug32330.phpt47 function sGC($maxlifetime)
49 echo "gc: maxlifetime = {$maxlifetime}\n";
74 gc: maxlifetime = %d
79 gc: maxlifetime = %d
84 gc: maxlifetime = %d
/dports/www/php81-session/php-8.1.1/ext/session/tests/
H A Dbug32330.phpt49 function sGC($maxlifetime)
51 echo "gc: maxlifetime = {$maxlifetime}\n";
76 gc: maxlifetime = %d
81 gc: maxlifetime = %d
86 gc: maxlifetime = %d
/dports/www/php80-session/php-8.0.15/ext/session/tests/
H A Dbug32330.phpt47 function sGC($maxlifetime)
49 echo "gc: maxlifetime = {$maxlifetime}\n";
74 gc: maxlifetime = %d
79 gc: maxlifetime = %d
84 gc: maxlifetime = %d
/dports/www/mod_php73/php-7.3.33/ext/session/tests/
H A Dbug32330.phpt47 function sGC($maxlifetime)
49 echo "gc: maxlifetime = {$maxlifetime}\n";
74 gc: maxlifetime = %d
79 gc: maxlifetime = %d
84 gc: maxlifetime = %d
/dports/www/mod_php74/php-7.4.27/ext/session/tests/
H A Dbug32330.phpt47 function sGC($maxlifetime)
49 echo "gc: maxlifetime = {$maxlifetime}\n";
74 gc: maxlifetime = %d
79 gc: maxlifetime = %d
84 gc: maxlifetime = %d

12345678910>>...34