ubuntu packages:
slapdldap-utils
programs:
/usr/sbin/slapacl
/usr/sbin/slapadd
/usr/sbin/slapauth
| # -*- shell-script -*- | |
| # | |
| # bash_completion - programmable completion functions for bash 4.2+ | |
| # | |
| # Copyright © 2006-2008, Ian Macdonald <ian@caliban.org> | |
| # © 2009-2020, Bash Completion Maintainers | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 2, or (at your option) |
| from dataclasses import fields | |
| from typing import TypeVar, Type | |
| IPT = TypeVar('IPT') | |
| def ignore_properties(cls: Type[IPT], dict_: any) -> IPT: | |
| """omits extra fields like @JsonIgnoreProperties(ignoreUnknown = true)""" | |
| if isinstance(dict_, cls): return dict_ # noqa | |
| class_fields = {f.name for f in fields(cls)} |
| kubelogin |
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| mQINBFl8fYEBEADQmGZ6pDrwY9iH9DVlwNwTOvOZ7q7lHXPl/TLfMs1tckMc/D9a | |
| hsdBN9VWtMmo+RySvhkIe8X15r65TFs2HE8ft6j2e/4K472pObM1hB+ajiU/wYX2 | |
| Syq7DBlNm6YMP5/SyQzRxqis4Ja1uUjW4Q5/Csdf5In8uMzXj5D1P7qOiP2aNa0E | |
| r3w6PXWRTuTihWZOsHv8npyVYDBRR6gEZbd3r86snI/7o8Bfmad3KjbxL7aOdNMw | |
| AqQFaNKl7Y+UJpv1CNFIf+twcOoC0se1SrsVJlAH9HNHM7XGQsPUwpNvQlcmvr+t | |
| 1vVS2m72lk3gyShDuJpi1TifGw+DoTqu54U0k+0sZm4pnQVeiizNkefU2UqOoGlt | |
| 4oiG9nIhSX04xRlGes3Ya0OjNI5b1xbcYoR+r0c3odI+UCw3VSZtKDX/xlH1o/82 | |
| b8ouXeE7LA1i4DvGNj4VSvoxv4ggIznxMf+PkWXWKwRGsbAAXF52rr4FUaeaKoIU |
| package org.example.jooq.sb.generator; | |
| import liquibase.Contexts; | |
| import liquibase.Liquibase; | |
| import liquibase.database.DatabaseFactory; | |
| import liquibase.database.jvm.JdbcConnection; | |
| import liquibase.resource.ClassLoaderResourceAccessor; | |
| import java.io.OutputStreamWriter; | |
| import java.sql.Connection; |
| #!/usr/bin/env bash | |
| if [[ "$0" != "$BASH_SOURCE" ]]; then echo "no sourcing">&2; return 1; fi; | |
| set -eu -o pipefail | |
| # https://unix.stackexchange.com/a/39660 | |
| err_report() { echo "Error on line $1 from caller $(caller)"; } | |
| trap 'err_report $LINENO' ERR | |
| if [[ "$#" == 1 ]] ; then |
| package misc.ipdb; | |
| import lombok.RequiredArgsConstructor; | |
| import misc.ipdb.util.DbFactory; | |
| import java.math.BigInteger; | |
| import java.util.Arrays; | |
| import java.util.HexFormat; | |
| import java.util.List; | |
| import java.util.StringJoiner; |
| package org.npm4j.utils; | |
| import lombok.AccessLevel; | |
| import lombok.AllArgsConstructor; | |
| import lombok.Builder; | |
| import lombok.Data; | |
| import lombok.extern.slf4j.Slf4j; | |
| import org.npm4j.utils.SemVerUtils.Internal.Constants.ReleaseType; | |
| import org.springframework.util.StringUtils; |
ubuntu packages:
slapdldap-utilsprograms:
/usr/sbin/slapacl
/usr/sbin/slapadd
/usr/sbin/slapauth
| .venv/ | |
| __pycache__/ | |
| .idea/ |