Exemplo n.º 1
0
def _RunDiagnostics():
  network_diagnostics.NetworkDiagnostic().RunChecks()
  property_diagnostics.PropertyDiagnostic().RunChecks()
Exemplo n.º 2
0
def _RunDiagnostics(ignore_hidden_property_whitelist):
    network_diagnostics.NetworkDiagnostic().RunChecks()
    property_diagnostics.PropertyDiagnostic(ignore_hidden_property_whitelist)\
        .RunChecks()
Exemplo n.º 3
0
def _RunDiagnostics(ignore_hidden_property_allowlist):
    passed_network = network_diagnostics.NetworkDiagnostic().RunChecks()
    passed_props = property_diagnostics.PropertyDiagnostic(
        ignore_hidden_property_allowlist).RunChecks()
    return passed_network and passed_props