repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/ShapeStyle.java
released/MyBox/src/main/java/mara/mybox/data/ShapeStyle.java
package mara.mybox.data; import java.sql.Connection; import java.util.ArrayList; import java.util.List; import javafx.scene.paint.Color; import javafx.scene.shape.StrokeLineCap; import static javafx.scene.shape.StrokeLineCap.ROUND; import static javafx.scene.shape.StrokeLineCap.SQUARE; import javafx.scene.shape.Stroke...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/DoubleArc.java
released/MyBox/src/main/java/mara/mybox/data/DoubleArc.java
package mara.mybox.data; import java.awt.geom.Arc2D; import static mara.mybox.tools.DoubleTools.imageScale; import static mara.mybox.value.Languages.message; /** * @Author Mara * @CreateDate 2023-7-31 * @License Apache License Version 2.0 */ public class DoubleArc implements DoubleShape { private double cent...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/DoubleLine.java
released/MyBox/src/main/java/mara/mybox/data/DoubleLine.java
package mara.mybox.data; import java.awt.geom.Line2D; import static mara.mybox.tools.DoubleTools.imageScale; import static mara.mybox.value.Languages.message; /** * @Author Mara * @CreateDate 2023-7-6 * @License Apache License Version 2.0 */ public class DoubleLine implements DoubleShape { private double sta...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/DoubleOutline.java
released/MyBox/src/main/java/mara/mybox/data/DoubleOutline.java
package mara.mybox.data; import java.awt.image.BufferedImage; import mara.mybox.image.data.ImageScope; /** * @Author Mara * @CreateDate 2018-11-11 12:29:29 * @Version 1.0 * @Description * @License Apache License Version 2.0 */ public class DoubleOutline extends DoubleRectangle { private BufferedImage image...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/FunctionsList.java
released/MyBox/src/main/java/mara/mybox/data/FunctionsList.java
package mara.mybox.data; import java.awt.image.BufferedImage; import java.io.File; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javafx.embed.swing.SwingFXUtils; import javafx.scene.control.Menu; import javafx.scene.control.MenuItem; import mara.mybox.control...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/FindReplaceMatch.java
released/MyBox/src/main/java/mara/mybox/data/FindReplaceMatch.java
package mara.mybox.data; import mara.mybox.tools.StringTools; /** * @Author Mara * @CreateDate 2023-5-7 * @License Apache License Version 2.0 */ public class FindReplaceMatch { public final static int MatchedPrefixLength = 100; protected long line, start, end; // 0-based, exclude end protected Stri...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/Direction.java
released/MyBox/src/main/java/mara/mybox/data/Direction.java
package mara.mybox.data; import static mara.mybox.value.Languages.message; import mara.mybox.value.Languages; /** * @Author Mara * @CreateDate 2020-7-30 * @License Apache License Version 2.0 */ public class Direction { protected Name name; protected int angle; // clockwise public enum Name { ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/MediaList.java
released/MyBox/src/main/java/mara/mybox/data/MediaList.java
/* * Apache License Version 2.0 */ package mara.mybox.data; import java.util.List; /** * * @author mara */ public class MediaList { protected String name; protected List<MediaInformation> medias; public MediaList() { } public static MediaList create() { return new MediaList(); ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/HtmlElement.java
released/MyBox/src/main/java/mara/mybox/data/HtmlElement.java
package mara.mybox.data; import java.net.URLDecoder; import java.nio.charset.Charset; import mara.mybox.dev.MyBoxLog; import mara.mybox.tools.UrlTools; import org.w3c.dom.Element; import org.w3c.dom.NamedNodeMap; /** * @Author Mara * @CreateDate 2022-9-7 * @License Apache License Version 2.0 */ public class HtmlE...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/FileEditInformation.java
released/MyBox/src/main/java/mara/mybox/data/FileEditInformation.java
package mara.mybox.data; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.nio.charset.Charset; import mara.mybox.dev.MyBoxLog; i...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/TTC.java
released/MyBox/src/main/java/mara/mybox/data/TTC.java
package mara.mybox.data; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileOutputStream; import java.io.RandomAccessFile; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import mara.mybox.dev.MyBoxLog; import static mara.mybox.tools.ByteTools.bytesToHex; import st...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/DoubleCircle.java
released/MyBox/src/main/java/mara/mybox/data/DoubleCircle.java
package mara.mybox.data; import java.awt.geom.Ellipse2D; import static mara.mybox.tools.DoubleTools.imageScale; import static mara.mybox.value.Languages.message; /** * @Author Mara * @CreateDate 2018-11-11 12:29:29 * @License Apache License Version 2.0 */ public class DoubleCircle implements DoubleShape { pr...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/XmlTreeNode.java
released/MyBox/src/main/java/mara/mybox/data/XmlTreeNode.java
package mara.mybox.data; import mara.mybox.tools.XmlTools; import org.w3c.dom.Node; import org.w3c.dom.NodeList; /** * @Author Mara * @CreateDate 2023-5-27 * @License Apache License Version 2.0 */ public class XmlTreeNode { protected String title, value; protected NodeType type; protected Node node; ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/data/FileNode.java
released/MyBox/src/main/java/mara/mybox/data/FileNode.java
package mara.mybox.data; import java.io.File; import mara.mybox.tools.FileNameTools; import static mara.mybox.value.Languages.message; /** * @Author Mara * @CreateDate 2023-03-18 * @License Apache License Version 2.0 */ public class FileNode extends FileInformation { public boolean isExisted; public File...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/RGBColorSpace.java
released/MyBox/src/main/java/mara/mybox/color/RGBColorSpace.java
package mara.mybox.color; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import mara.mybox.color.ChromaticAdaptation.ChromaticAdaptationAlgorithm; import static mara.mybox.color.ChromaticAdaptation.matrix; import mara.mybox.color.Illuminant.I...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/ChromaticityDiagram.java
released/MyBox/src/main/java/mara/mybox/color/ChromaticityDiagram.java
package mara.mybox.color; import java.awt.AlphaComposite; import java.awt.BasicStroke; import java.awt.Color; import java.awt.Font; import java.awt.Graphics2D; import java.awt.RenderingHints; import java.awt.color.ColorSpace; import java.awt.image.BufferedImage; import java.io.File; import java.util.LinkedHashMap; imp...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/Illuminant.java
released/MyBox/src/main/java/mara/mybox/color/Illuminant.java
package mara.mybox.color; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import mara.mybox.data.StringTable; import mara.mybox.tools.DoubleMatrixTools; import static mara.mybox.value.Languages.message; import mara.mybox.value.Languages; /** * @Author Mara * @CreateDate 2019-5-21 12:09:2...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/CIEData.java
released/MyBox/src/main/java/mara/mybox/color/CIEData.java
package mara.mybox.color; import java.awt.Color; import java.awt.color.ColorSpace; import static mara.mybox.tools.DoubleTools.scale; /** * @Author Mara * @CreateDate 2019-5-20 18:51:37 * @License Apache License Version 2.0 */ public class CIEData { public int waveLength; // nm public double X, Y, Z; // ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/IccTagType.java
released/MyBox/src/main/java/mara/mybox/color/IccTagType.java
package mara.mybox.color; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import static mara.mybox.color.IccProfile.toBytes; import mara.mybox.tools.ByteTools; import static mara.mybox.tools.ByteTools.bytesToInt; import static mara.mybox.tools.ByteTools.bytesToUshort;...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
true
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/AdobeRGB.java
released/MyBox/src/main/java/mara/mybox/color/AdobeRGB.java
package mara.mybox.color; import static mara.mybox.color.RGBColorSpace.gamma22; import static mara.mybox.color.RGBColorSpace.linear22; /** * @Author Mara * @CreateDate 2019-5-21 12:14:18 * @Version 1.0 * @Description * @License Apache License Version 2.0 */ public class AdobeRGB { public static double line...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/ColorBase.java
released/MyBox/src/main/java/mara/mybox/color/ColorBase.java
package mara.mybox.color; import java.awt.Color; import java.awt.color.ColorSpace; import java.awt.color.ICC_ColorSpace; import java.awt.color.ICC_Profile; /** * @Author Mara * @CreateDate 2018-6-4 16:07:27 * @Description * @License Apache License Version 2.0 * * Reference http://brucelindbloom.com/index.html?E...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/CIEDataTools.java
released/MyBox/src/main/java/mara/mybox/color/CIEDataTools.java
package mara.mybox.color; import java.awt.color.ColorSpace; import java.awt.color.ICC_ColorSpace; import java.awt.color.ICC_Profile; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import static mara.mybox.color....
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/SRGB.java
released/MyBox/src/main/java/mara/mybox/color/SRGB.java
package mara.mybox.color; import java.awt.Color; import java.awt.color.ICC_ColorSpace; import java.awt.color.ICC_Profile; import static mara.mybox.color.AppleRGB.XYZtoAppleRGB; import static mara.mybox.color.RGBColorSpace.linearSRGB; import mara.mybox.fxml.image.FxColorTools; import mara.mybox.image.data.ImageColorSpa...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/CMYKColorSpace.java
released/MyBox/src/main/java/mara/mybox/color/CMYKColorSpace.java
package mara.mybox.color; import java.util.ArrayList; import java.util.List; /** * @Author Mara * @CreateDate 2019-6-7 9:38:03 * @Version 1.0 * @Description * @License Apache License Version 2.0 */ public class CMYKColorSpace { public static enum ColorSpaceType { CMY, CMYK } public static ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/ColorMatch.java
released/MyBox/src/main/java/mara/mybox/color/ColorMatch.java
package mara.mybox.color; import java.awt.Color; import java.util.List; import static mara.mybox.color.SRGB.SRGBtoCIELab; import mara.mybox.image.tools.ColorConvertTools; import mara.mybox.value.Languages; /** * @Author Mara * @CreateDate 2025-2-7 * @License Apache License Version 2.0 */ public class ColorMatch {...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/ColorConversion.java
released/MyBox/src/main/java/mara/mybox/color/ColorConversion.java
package mara.mybox.color; import java.awt.color.ColorSpace; import java.awt.color.ICC_ColorSpace; import java.awt.color.ICC_Profile; import java.awt.image.BufferedImage; import java.awt.image.ColorConvertOp; import mara.mybox.dev.MyBoxLog; /** * @Author Mara * @CreateDate 2019-5-21 12:26:36 * @Version 1.0 * @Desc...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/IccTag.java
released/MyBox/src/main/java/mara/mybox/color/IccTag.java
package mara.mybox.color; import java.util.ArrayList; import java.util.List; import java.util.Map; import static mara.mybox.color.IccTagType.XYZ; import static mara.mybox.color.IccTagType.XYZDoubles; import static mara.mybox.color.IccTagType.XYZNumber; import static mara.mybox.color.IccTagType.XYZNumberDoubles; import...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/IccHeader.java
released/MyBox/src/main/java/mara/mybox/color/IccHeader.java
package mara.mybox.color; import java.util.ArrayList; import java.util.Arrays; import java.util.LinkedHashMap; import java.util.List; import mara.mybox.color.IccTag.TagType; import static mara.mybox.color.IccXML.iccHeaderXml; import mara.mybox.dev.MyBoxLog; import mara.mybox.tools.ByteTools; import static mara.mybox.t...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/ChromaticAdaptation.java
released/MyBox/src/main/java/mara/mybox/color/ChromaticAdaptation.java
package mara.mybox.color; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import mara.mybox.color.Illuminant.IlluminantType; import mara.mybox.color.Illuminant.Observer; import mara.mybox.data.StringTable; import mara.mybox.dev.MyBoxLog; impor...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/ColorValue.java
released/MyBox/src/main/java/mara/mybox/color/ColorValue.java
package mara.mybox.color; import mara.mybox.tools.DoubleTools; /** * @Author Mara * @CreateDate 2019-5-24 7:59:40 * @Version 1.0 * @Description * @License Apache License Version 2.0 */ public class ColorValue { public static enum ColorType { CIEXYZ, CIExyY, CIELab, CIELCH, CIELuv, sRGB, Ado...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/AppleRGB.java
released/MyBox/src/main/java/mara/mybox/color/AppleRGB.java
package mara.mybox.color; import static mara.mybox.color.RGBColorSpace.gamma18; import static mara.mybox.color.RGBColorSpace.linear18; /** * @Author Mara * @CreateDate 2019-5-21 12:17:46 * @Version 1.0 * @Description * @License Apache License Version 2.0 */ public class AppleRGB { public static double line...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/IccTags.java
released/MyBox/src/main/java/mara/mybox/color/IccTags.java
package mara.mybox.color; import java.awt.color.ICC_Profile; import java.util.ArrayList; import java.util.List; import static mara.mybox.color.IccProfile.toBytes; import static mara.mybox.color.IccXML.iccTagsXml; import static mara.mybox.tools.ByteTools.bytesToInt; import static mara.mybox.tools.ByteTools.intToBytes; ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/RGB2RGBConversionMatrix.java
released/MyBox/src/main/java/mara/mybox/color/RGB2RGBConversionMatrix.java
package mara.mybox.color; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import mara.mybox.color.ChromaticAdaptation.ChromaticAdaptationAlgorithm; import mara.mybox.color.RGBColorSpace.ColorSpaceType; import static mara.mybox.color.RGBColorSp...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/IccXML.java
released/MyBox/src/main/java/mara/mybox/color/IccXML.java
package mara.mybox.color; import java.awt.color.ICC_Profile; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import static mara.mybox.color.IccHeader.renderingIntent; import static mara.mybox.tools.ByteTools.subBytes; import mara.mybox.dev.MyBoxLog; import mara.mybox.value.AppValues; /**...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/IccProfile.java
released/MyBox/src/main/java/mara/mybox/color/IccProfile.java
package mara.mybox.color; import java.awt.color.ColorSpace; import java.awt.color.ICC_ColorSpace; import java.awt.color.ICC_Profile; import java.io.File; import java.nio.charset.StandardCharsets; import static mara.mybox.color.IccXML.iccXML; import mara.mybox.tools.StringTools; import mara.mybox.dev.MyBoxLog; import m...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/RGB2XYZConversionMatrix.java
released/MyBox/src/main/java/mara/mybox/color/RGB2XYZConversionMatrix.java
package mara.mybox.color; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import mara.mybox.color.ChromaticAdaptation.ChromaticAdaptationAlgorithm; import static mara.mybox.color.ChromaticAdaptation.matrix; import mara.mybox.color.Illuminant.I...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/CIEColorSpace.java
released/MyBox/src/main/java/mara/mybox/color/CIEColorSpace.java
package mara.mybox.color; import java.util.ArrayList; import java.util.List; import static mara.mybox.color.AdobeRGB.gammaAdobeRGB; import static mara.mybox.color.AppleRGB.gammaAppleRGB; import static mara.mybox.color.ColorBase.clipRGB; import static mara.mybox.color.SRGB.gammaSRGB; import mara.mybox.tools.DoubleMatri...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/released/MyBox/src/main/java/mara/mybox/color/ColorStatistic.java
released/MyBox/src/main/java/mara/mybox/color/ColorStatistic.java
package mara.mybox.color; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.List; import java.util.Map; import javafx.scene.paint.Color; import mara.mybox.tools.FloatTools; /** * @Author Mara * @CreateDate 2019-2-11 12:53:19 * @Version...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
quux00/merkle-tree
https://github.com/quux00/merkle-tree/blob/34ebaf73fd520aaa886b44e53c00a324b875c053/src/test/java/net/quux00/MerkleTreeTest.java
src/test/java/net/quux00/MerkleTreeTest.java
package net.quux00; import static java.nio.charset.StandardCharsets.UTF_8; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotEquals; import static org.junit.Assert.assertNull; import static ...
java
MIT
34ebaf73fd520aaa886b44e53c00a324b875c053
2026-01-05T02:41:23.860799Z
false
quux00/merkle-tree
https://github.com/quux00/merkle-tree/blob/34ebaf73fd520aaa886b44e53c00a324b875c053/src/main/java/net/quux00/MerkleTree.java
src/main/java/net/quux00/MerkleTree.java
package net.quux00; import java.nio.ByteBuffer; import java.nio.charset.StandardCharsets; import java.util.ArrayDeque; import java.util.ArrayList; import java.util.List; import java.util.Queue; import java.util.zip.Adler32; /** * MerkleTree is an implementation of a Merkle binary hash tree where the leaves * are si...
java
MIT
34ebaf73fd520aaa886b44e53c00a324b875c053
2026-01-05T02:41:23.860799Z
false
quux00/merkle-tree
https://github.com/quux00/merkle-tree/blob/34ebaf73fd520aaa886b44e53c00a324b875c053/src/main/java/net/quux00/MerkleDeserializer.java
src/main/java/net/quux00/MerkleDeserializer.java
package net.quux00; import static net.quux00.MerkleTree.LEAF_SIG_TYPE; import java.nio.ByteBuffer; import java.nio.charset.StandardCharsets; import java.util.ArrayDeque; import java.util.ArrayList; import java.util.List; import java.util.Queue; import net.quux00.MerkleTree.Node; /** * The Deserialization code was ...
java
MIT
34ebaf73fd520aaa886b44e53c00a324b875c053
2026-01-05T02:41:23.860799Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/SimpleNet_Demo/src/com/example/simplenet_demo/MainActivity.java
SimpleNet_Demo/src/com/example/simplenet_demo/MainActivity.java
package com.example.simplenet_demo; import android.app.Activity; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.os.Bundle; import android.text.Html; import android.widget.TextView; import org.simple.net.base.Request.HttpMethod; import org.simple.net.base.Request.RequestListener...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/requests/JsonRequest.java
src/org/simple/net/requests/JsonRequest.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/requests/StringRequest.java
src/org/simple/net/requests/StringRequest.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/requests/MultipartRequest.java
src/org/simple/net/requests/MultipartRequest.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/base/Response.java
src/org/simple/net/base/Response.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/base/Request.java
src/org/simple/net/base/Request.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/cache/LruMemCache.java
src/org/simple/net/cache/LruMemCache.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/cache/Cache.java
src/org/simple/net/cache/Cache.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/httpstacks/HttpStack.java
src/org/simple/net/httpstacks/HttpStack.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/httpstacks/HttpStackFactory.java
src/org/simple/net/httpstacks/HttpStackFactory.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/httpstacks/HttpClientStack.java
src/org/simple/net/httpstacks/HttpClientStack.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/httpstacks/HttpUrlConnStack.java
src/org/simple/net/httpstacks/HttpUrlConnStack.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/entity/MultipartEntity.java
src/org/simple/net/entity/MultipartEntity.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/core/SimpleNet.java
src/org/simple/net/core/SimpleNet.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the right...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/core/ResponseDelivery.java
src/org/simple/net/core/ResponseDelivery.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/core/RequestQueue.java
src/org/simple/net/core/RequestQueue.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/core/NetworkExecutor.java
src/org/simple/net/core/NetworkExecutor.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the right...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/config/HttpConfig.java
src/org/simple/net/config/HttpConfig.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/config/HttpClientConfig.java
src/org/simple/net/config/HttpClientConfig.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/src/org/simple/net/config/HttpUrlConnConfig.java
src/org/simple/net/config/HttpUrlConnConfig.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 bboyfeiyu@gmail.com, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/simple_net_framework_test/src/com/umeng/network/test/RequestQueueTest.java
simple_net_framework_test/src/com/umeng/network/test/RequestQueueTest.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 Umeng, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to u...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
hehonghui/simple_net_framework
https://github.com/hehonghui/simple_net_framework/blob/403b5b83ea2b42014ac5085b7bf1bb7a5e030e73/simple_net_framework_test/src/com/umeng/network/test/LURCacheTest.java
simple_net_framework_test/src/com/umeng/network/test/LURCacheTest.java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 Umeng, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to u...
java
MIT
403b5b83ea2b42014ac5085b7bf1bb7a5e030e73
2026-01-05T02:41:17.874060Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/.mvn/wrapper/MavenWrapperDownloader.java
.mvn/wrapper/MavenWrapperDownloader.java
/* * Copyright 2012-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/Application.java
src/test/java/com/yannbriancon/Application.java
package com.yannbriancon; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/utils/repository/UserRepository.java
src/test/java/com/yannbriancon/utils/repository/UserRepository.java
package com.yannbriancon.utils.repository; import com.yannbriancon.utils.entity.User; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface UserRepository extends JpaRepository<User, Long> { }
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/utils/repository/AvatarRepository.java
src/test/java/com/yannbriancon/utils/repository/AvatarRepository.java
package com.yannbriancon.utils.repository; import com.yannbriancon.utils.entity.Avatar; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface AvatarRepository extends JpaRepository<Avatar, Long> { }
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/utils/repository/MessageRepository.java
src/test/java/com/yannbriancon/utils/repository/MessageRepository.java
package com.yannbriancon.utils.repository; import com.yannbriancon.utils.entity.Message; import org.springframework.data.jpa.repository.EntityGraph; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface Mess...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/utils/repository/PostRepository.java
src/test/java/com/yannbriancon/utils/repository/PostRepository.java
package com.yannbriancon.utils.repository; import com.yannbriancon.utils.entity.Post; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface PostRepository extends JpaRepository<Post, Long> { }
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/utils/entity/Avatar.java
src/test/java/com/yannbriancon/utils/entity/Avatar.java
package com.yannbriancon.utils.entity; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Ta...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/utils/entity/Post.java
src/test/java/com/yannbriancon/utils/entity/Post.java
package com.yannbriancon.utils.entity; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; @Entity @Table(name = "posts")...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/utils/entity/Message.java
src/test/java/com/yannbriancon/utils/entity/Message.java
package com.yannbriancon.utils.entity; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyT...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/utils/entity/User.java
src/test/java/com/yannbriancon/utils/entity/User.java
package com.yannbriancon.utils.entity; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; import java.io.Serializable; @Entity @Table(name = "users") public cla...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/interceptor/NPlusOneQueriesLoggingTest.java
src/test/java/com/yannbriancon/interceptor/NPlusOneQueriesLoggingTest.java
package com.yannbriancon.interceptor; import ch.qos.logback.classic.Level; import ch.qos.logback.classic.Logger; import ch.qos.logback.classic.spi.LoggingEvent; import ch.qos.logback.core.Appender; import com.yannbriancon.utils.entity.Message; import com.yannbriancon.utils.entity.Post; import com.yannbriancon.utils.re...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/interceptor/NPlusOneQueriesExceptionTest.java
src/test/java/com/yannbriancon/interceptor/NPlusOneQueriesExceptionTest.java
package com.yannbriancon.interceptor; import com.yannbriancon.exception.NPlusOneQueriesException; import com.yannbriancon.utils.entity.Message; import com.yannbriancon.utils.entity.User; import com.yannbriancon.utils.repository.AvatarRepository; import com.yannbriancon.utils.repository.MessageRepository; import com.ya...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/interceptor/QueryCountTest.java
src/test/java/com/yannbriancon/interceptor/QueryCountTest.java
package com.yannbriancon.interceptor; import com.yannbriancon.utils.entity.User; import com.yannbriancon.utils.repository.MessageRepository; import com.yannbriancon.utils.repository.UserRepository; import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.A...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/test/java/com/yannbriancon/interceptor/NPlusOneQueriesDisabledTest.java
src/test/java/com/yannbriancon/interceptor/NPlusOneQueriesDisabledTest.java
package com.yannbriancon.interceptor; import com.yannbriancon.utils.entity.Message; import com.yannbriancon.utils.repository.MessageRepository; import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/main/java/com/yannbriancon/exception/NPlusOneQueriesException.java
src/main/java/com/yannbriancon/exception/NPlusOneQueriesException.java
package com.yannbriancon.exception; /** * Exception triggered when detecting N+1 queries */ public class NPlusOneQueriesException extends RuntimeException { public NPlusOneQueriesException(String message) { super(message); } }
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/main/java/com/yannbriancon/interceptor/HibernateQueryInterceptor.java
src/main/java/com/yannbriancon/interceptor/HibernateQueryInterceptor.java
package com.yannbriancon.interceptor; import com.yannbriancon.config.NPlusOneQueriesDetectionProperties; import com.yannbriancon.exception.NPlusOneQueriesException; import org.hibernate.EmptyInterceptor; import org.hibernate.Transaction; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframewo...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/main/java/com/yannbriancon/interceptor/SelectQueriesInfo.java
src/main/java/com/yannbriancon/interceptor/SelectQueriesInfo.java
package com.yannbriancon.interceptor; class SelectQueriesInfo { private final String initialSelectQuery; private Integer selectQueriesCount = 1; public SelectQueriesInfo(String initialSelectQuery) { this.initialSelectQuery = initialSelectQuery; } public String getInitialSelectQuery() { ...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/main/java/com/yannbriancon/config/NPlusOneQueriesDetectionProperties.java
src/main/java/com/yannbriancon/config/NPlusOneQueriesDetectionProperties.java
package com.yannbriancon.config; import org.springframework.boot.context.properties.ConfigurationProperties; import java.io.Serializable; @ConfigurationProperties("spring-hibernate-query-utils.n-plus-one-queries-detection") public class NPlusOneQueriesDetectionProperties implements Serializable { public enum Err...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
yannbriancon/spring-hibernate-query-utils
https://github.com/yannbriancon/spring-hibernate-query-utils/blob/c5eae0d811625d1a212b7c86e716b52c414d3e6f/src/main/java/com/yannbriancon/config/HibernatePropertiesConfig.java
src/main/java/com/yannbriancon/config/HibernatePropertiesConfig.java
package com.yannbriancon.config; import com.yannbriancon.interceptor.HibernateQueryInterceptor; import org.springframework.boot.autoconfigure.orm.jpa.HibernatePropertiesCustomizer; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import java.uti...
java
MIT
c5eae0d811625d1a212b7c86e716b52c414d3e6f
2026-01-05T02:41:28.211339Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/test/java/org/zuinnote/hadoop/namecoin/hive/udf/NamecoinUDFTest.java
hiveudf/src/test/java/org/zuinnote/hadoop/namecoin/hive/udf/NamecoinUDFTest.java
/** * Copyright 2017 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/TestBitcoinTransaction.java
hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/TestBitcoinTransaction.java
/** * Copyright 2016 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/BitcoinUDFTest.java
hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/BitcoinUDFTest.java
/** * Copyright 2016 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/TestBitcoinScriptWitnessItem.java
hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/TestBitcoinScriptWitnessItem.java
/** * Copyright 2017 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/TestBitcoinScriptWitness.java
hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/TestBitcoinScriptWitness.java
/** * Copyright 2017 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/TestBitcoinTransactionOutput.java
hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/TestBitcoinTransactionOutput.java
/** * Copyright 2016 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/TestBitcoinTransactionInput.java
hiveudf/src/test/java/org/zuinnote/hadoop/bitcoin/hive/udf/TestBitcoinTransactionInput.java
/** * Copyright 2016 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/test/java/org/zuinnote/hadoop/ethereum/hive/udf/TestEthereumTransaction.java
hiveudf/src/test/java/org/zuinnote/hadoop/ethereum/hive/udf/TestEthereumTransaction.java
/** * Copyright 2017 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/test/java/org/zuinnote/hadoop/ethereum/hive/udf/EthereumUDFTest.java
hiveudf/src/test/java/org/zuinnote/hadoop/ethereum/hive/udf/EthereumUDFTest.java
/** * Copyright 2017 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
true
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/main/java/org/zuinnote/hadoop/namecoin/hive/udf/NamecoinExtractFieldUDF.java
hiveudf/src/main/java/org/zuinnote/hadoop/namecoin/hive/udf/NamecoinExtractFieldUDF.java
/** * Copyright 2017 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/main/java/org/zuinnote/hadoop/namecoin/hive/udf/NamecoinGetNameOperationUDF.java
hiveudf/src/main/java/org/zuinnote/hadoop/namecoin/hive/udf/NamecoinGetNameOperationUDF.java
/** * Copyright 2017 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/main/java/org/zuinnote/hadoop/bitcoin/hive/udf/BitcoinTransactionHashSegwitUDF.java
hiveudf/src/main/java/org/zuinnote/hadoop/bitcoin/hive/udf/BitcoinTransactionHashSegwitUDF.java
/** * Copyright 2016 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/main/java/org/zuinnote/hadoop/bitcoin/hive/udf/BitcoinUDFUtil.java
hiveudf/src/main/java/org/zuinnote/hadoop/bitcoin/hive/udf/BitcoinUDFUtil.java
/** * Copyright 2018 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/main/java/org/zuinnote/hadoop/bitcoin/hive/udf/BitcoinTransactionHashUDF.java
hiveudf/src/main/java/org/zuinnote/hadoop/bitcoin/hive/udf/BitcoinTransactionHashUDF.java
/** * Copyright 2016 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/main/java/org/zuinnote/hadoop/bitcoin/hive/udf/BitcoinScriptPaymentPatternAnalyzerUDF.java
hiveudf/src/main/java/org/zuinnote/hadoop/bitcoin/hive/udf/BitcoinScriptPaymentPatternAnalyzerUDF.java
/** * Copyright 2016 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/main/java/org/zuinnote/hadoop/ethereum/hive/udf/EthereumUDFUtil.java
hiveudf/src/main/java/org/zuinnote/hadoop/ethereum/hive/udf/EthereumUDFUtil.java
/** * Copyright 2017 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/main/java/org/zuinnote/hadoop/ethereum/hive/udf/EthereumGetSendAddressUDF.java
hiveudf/src/main/java/org/zuinnote/hadoop/ethereum/hive/udf/EthereumGetSendAddressUDF.java
/** * Copyright 2017 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false
ZuInnoTe/hadoopcryptoledger
https://github.com/ZuInnoTe/hadoopcryptoledger/blob/b2df90b216a6024b3179c3afaa6f2bcfc975784c/hiveudf/src/main/java/org/zuinnote/hadoop/ethereum/hive/udf/EthereumGetTransactionHashUDF.java
hiveudf/src/main/java/org/zuinnote/hadoop/ethereum/hive/udf/EthereumGetTransactionHashUDF.java
/** * Copyright 2017 ZuInnoTe (Jörn Franke) <zuinnote@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
java
Apache-2.0
b2df90b216a6024b3179c3afaa6f2bcfc975784c
2026-01-05T02:40:55.994732Z
false