8000 Tags · alexlipa91/flytestdlib · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: alexlipa91/flytestdlib

Tags

v0.4.9

Toggle v0.4.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Added go generate in workflow (flyteorg#111)

* Added go generate in workflow]
Signed-off-by: Yuvraj <code@evalsocket.dev>

v0.4.8

Toggle v0.4.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update Boilerplate (flyteorg#110)

Signed-off-by: Flyte-Bot <admin@flyte.org>

Co-authored-by: flyte-bot <flyte-bot@users.noreply.github.com>

v0.4.7

Toggle v0.4.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
#patch create gcp log formatter (flyteorg#108)

v0.4.6

Toggle v0.4.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Support Named types in pflags (flyteorg#107)

* Support Named/Alias types

Signed-off-by: Haytham Abuelfutuh <haytham@afutuh.com>

* Add test for enumer generated enums

Signed-off-by: Haytham Abuelfutuh <haytham@afutuh.com>

* Add type casting for named basic types

Signed-off-by: Haytham Abuelfutuh <haytham@afutuh.com>

* Update generator to leverage Stringer and JsonUnmarshaler interfaces

Signed-off-by: Haytham Abuelfutuh <haytham@afutuh.com>

* Support bind to default var for NamedTypes

Signed-off-by: Haytham Abuelfutuh <haytham@afutuh.com>

* wip

Signed-off-by: Haytham Abuelfutuh <haytham@afutuh.com>

* Revert generation of PFlag Value interface

Signed-off-by: Haytham Abuelfutuh <haytham@afutuh.com>

* Remove bad unit test

Signed-off-by: Haytham Abuelfutuh <haytham@afutuh.com>

* lint

Signed-off-by: Haytham Abuelfutuh <haytham@afutuh.com>

* lint

Signed-off-by: Haytham Abuelfutuh <haytham@afutuh.com>

* fix dash in golang support tools

Signed-off-by: Haytham Abuelfutuh <haytham@afutuh.com>

v0.4.5

Toggle v0.4.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Print subsection in different heading level (flyteorg#106)

Signed-off-by: Kevin Su <pingsutw@apache.org>

v0.4.4

Toggle v0.4.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add config docs generate command (flyteorg#103)

* Added show command

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Added tests

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Added tests

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Added link

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Config docs

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Address comments

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Added tests

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Fixed lint

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Address comments

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Fixed lint

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Updated tests

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Updated tests

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Fixed lint

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Updated tests

Signed-off-by: Kevin Su <pingsutw@apache.org>

* Updated tests

Signed-off-by: Kevin Su <pingsutw@apache.org>

v0.4.3

Toggle v0.4.3's commit message

Verified

C403 This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update Boilerplate (flyteorg#105)

Signed-off-by: Flyte-Bot <admin@flyte.org>

Co-authored-by: flyte-bot <flyte-bot@users.noreply.github.com>

v0.4.2

Toggle v0.4.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Unlabel prometheus filter metrics (flyteorg#104)

* updated prometheus metric from a labeled counter to unlabeled

Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>

* labeled the unused context parameter on lur and oppobloom Contains functions

Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>

v0.4.1

Toggle v0.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
add mocks to the fastcheck package (flyteorg#102)

* added mocks to the fastcheck package

Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>

* added generic set test to fix codecov failing

Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>

v0.4.0

Toggle v0.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Added FastCheck Filters #minor (flyteorg#100)

* Added FastCheck Filters

 - Fast check filters allow to look for existence of an item and
prioritize false negatives instead of false positives like Bloom filters
do.
False negative here refers to the filter returning a negative, even if
it is possible that the object was previously seen, instead of false for
an object that was never seen, as in the case of bloom filters.

The code had to be adapter from
https://github.com/jmhodges/opposite_of_a_bloom_filter/blob/master/go/oppobloom/oppobloom.go
because, the existing implementation had only one method that would
check and add. We prefer the case in which can check and then add as
2 separate invocations

Signed-off-by: Ketan Umare <ketan.umare@gmail.com>

* Linter and better organization / comments

Signed-off-by: Ketan Umare <ketan.umare@gmail.com>

* Updated benchmark and tests

Signed-off-by: Ketan Umare <ketan.umare@gmail.com>

* improved

Signed-off-by: Ketan Umare <ketan.umare@gmail.com>

* updated filter benchmarking to split Contains / Add functions and work on single operation granularity

Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>

Co-authored-by: Daniel Rammer <hamersaw@protonmail.com>
0