Home
last modified time | relevance | path

Searched refs:morsel (Results 151 – 175 of 675) sorted by relevance

12345678910>>...27

/dports/lang/python38/Python-3.8.12/Lib/http/
H A Dcookies.py320 def __eq__(self, morsel): argument
321 if not isinstance(morsel, Morsel):
323 return (dict.__eq__(self, morsel) and
324 self._value == morsel._value and
325 self._key == morsel._key and
326 self._coded_value == morsel._coded_value)
331 morsel = Morsel()
332 dict.update(morsel, self)
333 morsel.__dict__.update(self.__dict__)
334 return morsel
/dports/lang/python-tools/Python-3.8.12/Lib/http/
H A Dcookies.py320 def __eq__(self, morsel): argument
321 if not isinstance(morsel, Morsel):
323 return (dict.__eq__(self, morsel) and
324 self._value == morsel._value and
325 self._key == morsel._key and
326 self._coded_value == morsel._coded_value)
331 morsel = Morsel()
332 dict.update(morsel, self)
333 morsel.__dict__.update(self.__dict__)
334 return morsel
/dports/lang/python39/Python-3.9.9/Lib/http/
H A Dcookies.py321 def __eq__(self, morsel): argument
322 if not isinstance(morsel, Morsel):
324 return (dict.__eq__(self, morsel) and
325 self._value == morsel._value and
326 self._key == morsel._key and
327 self._coded_value == morsel._coded_value)
332 morsel = Morsel()
333 dict.update(morsel, self)
334 morsel.__dict__.update(self.__dict__)
335 return morsel
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Lib/http/
H A Dcookies.py320 def __eq__(self, morsel): argument
321 if not isinstance(morsel, Morsel):
323 return (dict.__eq__(self, morsel) and
324 self._value == morsel._value and
325 self._key == morsel._key and
326 self._coded_value == morsel._coded_value)
331 morsel = Morsel()
332 dict.update(morsel, self)
333 morsel.__dict__.update(self.__dict__)
334 return morsel
/dports/databases/py-gdbm/Python-3.8.12/Lib/http/
H A Dcookies.py320 def __eq__(self, morsel): argument
321 if not isinstance(morsel, Morsel):
323 return (dict.__eq__(self, morsel) and
324 self._value == morsel._value and
325 self._key == morsel._key and
326 self._coded_value == morsel._coded_value)
331 morsel = Morsel()
332 dict.update(morsel, self)
333 morsel.__dict__.update(self.__dict__)
334 return morsel
/dports/lang/python311/Python-3.11.0a3/Lib/http/
H A Dcookies.py321 def __eq__(self, morsel): argument
322 if not isinstance(morsel, Morsel):
324 return (dict.__eq__(self, morsel) and
325 self._value == morsel._value and
326 self._key == morsel._key and
327 self._coded_value == morsel._coded_value)
332 morsel = Morsel()
333 dict.update(morsel, self)
334 morsel.__dict__.update(self.__dict__)
335 return morsel
/dports/net/py-eventlet/eventlet-0.33.0/eventlet/green/http/
H A Dcookies.py396 def __eq__(self, morsel): argument
397 if not isinstance(morsel, Morsel):
399 return (dict.__eq__(self, morsel) and
400 self._value == morsel._value and
401 self._key == morsel._key and
402 self._coded_value == morsel._coded_value)
407 morsel = Morsel()
408 dict.update(morsel, self)
409 morsel.__dict__.update(self.__dict__)
410 return morsel
/dports/www/py-falcon/falcon-2.0.0/falcon/testing/
H A Dclient.py100 (morsel.key, Cookie(morsel))
101 for morsel in cookies.values()
177 def __init__(self, morsel): argument
178 self._name = morsel.key
179 self._value = morsel.value
189 value = morsel[name.replace('_', '-')] or None
/dports/www/py-webob/WebOb-1.8.7/src/webob/
H A Dcookies.py173 morsel = {}
176 morsel[key] = val
537 morsel = Morsel(name, value)
540 morsel.domain = bytes_(domain)
542 morsel.path = bytes_(path)
544 morsel.httponly = True
546 morsel.secure = True
548 morsel.max_age = max_age
550 morsel.expires = expires
554 morsel.samesite = samesite
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/WebOb/webob/
H A Dcookies.py169 morsel = {}
172 morsel[key] = val
452 morsel = Morsel(name, value)
455 morsel.domain = bytes_(domain)
457 morsel.path = bytes_(path)
459 morsel.httponly = True
461 morsel.secure = True
463 morsel.max_age = max_age
465 morsel.expires = expires
467 morsel.comment = bytes_(comment)
[all …]
/dports/www/webpy/web.py-0.62/web/
H A Dwebapi.py511 morsel = Morsel()
513 morsel.set(name, value, quote(value))
516 morsel["expires"] = expires
517 morsel["path"] = path or ctx.homepath + "/"
519 morsel["domain"] = domain
521 morsel["secure"] = secure
523 morsel["httponly"] = True
524 value = morsel.OutputString()
/dports/security/py-pysaml26/pysaml2-6.5.2/src/saml2/
H A Dhttputil.py360 morsel = cookie_obj.get(name)
362 if morsel:
363 parts = morsel.value.split("|")
381 morsel = cookie_obj.get(name)
382 if morsel:
383 return morsel.value.split("|")
/dports/security/py-pysaml24/pysaml2-4.9.0/src/saml2/
H A Dhttputil.py360 morsel = cookie_obj.get(name)
362 if morsel:
363 parts = morsel.value.split("|")
381 morsel = cookie_obj.get(name)
382 if morsel:
383 return morsel.value.split("|")
/dports/security/py-pysaml2/pysaml2-7.1.0/src/saml2/
H A Dhttputil.py360 morsel = cookie_obj.get(name)
362 if morsel:
363 parts = morsel.value.split("|")
381 morsel = cookie_obj.get(name)
382 if morsel:
383 return morsel.value.split("|")
/dports/www/py-falcon/falcon-2.0.0/tests/
H A Dtest_cookies.py180 morsel = resp._cookies['foo']
182 assert isinstance(morsel, http_cookies.Morsel)
183 assert morsel.key == 'foo'
184 assert morsel.value == 'bar'
185 assert morsel['max-age'] == 300
/dports/editors/nano/nano-5.9/src/
H A Dfiles.c2478 char *dirname = copy_of(morsel); in filename_completion()
2557 if (morsel[*place] != '\0') { in input_tab()
2559 return morsel; in input_tab()
2564 if (morsel[0] == '~' && strchr(morsel, '/') == NULL) in input_tab()
2579 return morsel; in input_tab()
2582 const char *lastslash = revstrstr(morsel, "/", morsel + *place); in input_tab()
2608 strncpy(shared, morsel, length_of_path); in input_tab()
2623 morsel = nrealloc(morsel, common_len + 1); in input_tab()
2624 strncpy(morsel, shared, common_len); in input_tab()
2625 morsel[common_len] = '\0'; in input_tab()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/rust/base64/examples/
H A Dmake_tables.rs53 for (morsel, ascii_byte) in alphabet.iter().enumerate() { in print_decode_table()
55 let _ = input_to_morsel.insert(*ascii_byte, morsel as u8); in print_decode_table()
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/python/requests/
H A Dtest_requests.py1482 morsel = Morsel()
1490 morsel = Morsel()
1491 morsel['expires'] = 100
1498 morsel = Morsel()
1499 morsel['expires'] = 'woops'
1506 morsel = Morsel()
1507 morsel['expires'] = None
1519 morsel = Morsel()
1520 morsel['max-age'] = 60
1527 morsel = Morsel()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/python/requests/
H A Dtest_requests.py1482 morsel = Morsel()
1490 morsel = Morsel()
1491 morsel['expires'] = 100
1498 morsel = Morsel()
1499 morsel['expires'] = 'woops'
1506 morsel = Morsel()
1507 morsel['expires'] = None
1519 morsel = Morsel()
1520 morsel['max-age'] = 60
1527 morsel = Morsel()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/requests/
H A Dtest_requests.py1482 morsel = Morsel()
1490 morsel = Morsel()
1491 morsel['expires'] = 100
1498 morsel = Morsel()
1499 morsel['expires'] = 'woops'
1506 morsel = Morsel()
1507 morsel['expires'] = None
1519 morsel = Morsel()
1520 morsel['max-age'] = 60
1527 morsel = Morsel()
[all …]
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/base64-0.10.1/examples/
H A Dmake_tables.rs76 for (morsel, ascii_byte) in alphabet.iter().enumerate() { in print_decode_table()
78 let _ = input_to_morsel.insert(*ascii_byte, morsel as u8); in print_decode_table()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/base64-0.9.3/examples/
H A Dmake_tables.rs76 for (morsel, ascii_byte) in alphabet.iter().enumerate() { in print_decode_table()
78 let _ = input_to_morsel.insert(*ascii_byte, morsel as u8); in print_decode_table()
/dports/devel/sccache/sccache-0.2.15/cargo-crates/base64-0.10.1/examples/
H A Dmake_tables.rs76 for (morsel, ascii_byte) in alphabet.iter().enumerate() { in print_decode_table()
78 let _ = input_to_morsel.insert(*ascii_byte, morsel as u8); in print_decode_table()
/dports/devel/sccache/sccache-0.2.15/cargo-crates/base64-0.9.3/examples/
H A Dmake_tables.rs76 for (morsel, ascii_byte) in alphabet.iter().enumerate() { in print_decode_table()
78 let _ = input_to_morsel.insert(*ascii_byte, morsel as u8); in print_decode_table()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/base64-0.10.1/examples/
H A Dmake_tables.rs76 for (morsel, ascii_byte) in alphabet.iter().enumerate() { in print_decode_table()
78 let _ = input_to_morsel.insert(*ascii_byte, morsel as u8); in print_decode_table()

12345678910>>...27