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
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/item/ItemInfo.java
src/main/java/org/automation/goofish/item/ItemInfo.java
package org.automation.goofish.item; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import lombok.Data; import java.util.List; @Data @JsonIgnoreProperties(ignoreUnknown = true) public class ItemInfo { private ItemDO itemDO; private SellerDO sellerDO; @Data @JsonIgnoreProperties(ignor...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/GoofishClient.java
src/main/java/org/automation/goofish/core/GoofishClient.java
package org.automation.goofish.core; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.node.ObjectNode; import lombok.Getter; import lombok.SneakyThrows; import org.apache.tika.Tika; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.In...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/ConnectionProperties.java
src/main/java/org/automation/goofish/core/ConnectionProperties.java
package org.automation.goofish.core; import com.github.curiousoddman.rgxgen.RgxGen; import lombok.Data; import lombok.Getter; import org.springframework.beans.factory.InitializingBean; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.context.properties.ConfigurationProperties;...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/GoofishSocket.java
src/main/java/org/automation/goofish/core/socket/GoofishSocket.java
package org.automation.goofish.core.socket; import com.fasterxml.jackson.databind.node.ArrayNode; import com.fasterxml.jackson.databind.node.ObjectNode; import io.netty.handler.codec.http.HttpHeaderNames; import lombok.SneakyThrows; import org.automation.goofish.core.ConnectionProperties; import org.automation.goofish...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/Message.java
src/main/java/org/automation/goofish/core/socket/msg/Message.java
package org.automation.goofish.core.socket.msg; import lombok.SneakyThrows; import org.automation.goofish.utils.JsonUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.reactive.socket.WebSocketSession; import reactor.core.publisher.Mono; import java.time.Instant; import java...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/MsgReplyQ.java
src/main/java/org/automation/goofish/core/socket/msg/MsgReplyQ.java
package org.automation.goofish.core.socket.msg; import lombok.AllArgsConstructor; import lombok.Data; import lombok.ToString; import org.springframework.stereotype.Component; import java.util.LinkedList; import java.util.Objects; import java.util.Optional; @Component public class MsgReplyQ { @Data @ToString...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/MsgDispatcher.java
src/main/java/org/automation/goofish/core/socket/msg/MsgDispatcher.java
package org.automation.goofish.core.socket.msg; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.node.ObjectNode; import lombok.Data; import lombok.Getter; import lombok.SneakyThrows; import lombok.ToString; import org.apache.commons.lang3.StringUtils; import org.automation.goofis...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/receive/ReceiveMsg.java
src/main/java/org/automation/goofish/core/socket/msg/receive/ReceiveMsg.java
package org.automation.goofish.core.socket.msg.receive; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.databind.ObjectMapper; import lombok.Data; import lombok.SneakyThr...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/send/RegMsg.java
src/main/java/org/automation/goofish/core/socket/msg/send/RegMsg.java
package org.automation.goofish.core.socket.msg.send; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import org.automation.goofish.core.socket.msg.Message; @Data @NoArgsConstructor @JsonInclude(JsonInclude....
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/send/ReplyTextMsg.java
src/main/java/org/automation/goofish/core/socket/msg/send/ReplyTextMsg.java
package org.automation.goofish.core.socket.msg.send; import com.fasterxml.jackson.annotation.JsonInclude; import lombok.Data; import org.automation.goofish.core.socket.msg.Message; import java.util.ArrayList; import java.util.Base64; import java.util.List; @Data @JsonInclude(JsonInclude.Include.NON_NULL) public clas...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/send/AckDiffMsg.java
src/main/java/org/automation/goofish/core/socket/msg/send/AckDiffMsg.java
package org.automation.goofish.core.socket.msg.send; import com.fasterxml.jackson.annotation.JsonInclude; import lombok.Data; import org.automation.goofish.core.socket.msg.Message; import java.util.ArrayList; import java.util.List; @Data @JsonInclude(JsonInclude.Include.NON_NULL) public class AckDiffMsg implements M...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/send/GetStatMsg.java
src/main/java/org/automation/goofish/core/socket/msg/send/GetStatMsg.java
package org.automation.goofish.core.socket.msg.send; import com.fasterxml.jackson.annotation.JsonInclude; import lombok.Data; import org.automation.goofish.core.socket.msg.Message; import java.util.ArrayList; import java.util.List; @Data @JsonInclude(JsonInclude.Include.NON_NULL) public class GetStatMsg implements M...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/send/ReplyPictureMsg.java
src/main/java/org/automation/goofish/core/socket/msg/send/ReplyPictureMsg.java
package org.automation.goofish.core.socket.msg.send; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.databind.JsonNode; import lombok.AllArgsConstructor; import lombok.Data; import org.automation.goofish.core.socket.msg.Message; import org.automation.goofish.utils.JsonUtils; import j...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/send/HeartbeatMsg.java
src/main/java/org/automation/goofish/core/socket/msg/send/HeartbeatMsg.java
package org.automation.goofish.core.socket.msg.send; import com.fasterxml.jackson.annotation.JsonInclude; import lombok.Data; import org.automation.goofish.core.socket.msg.Message; @Data @JsonInclude(JsonInclude.Include.NON_NULL) public class HeartbeatMsg implements Message { private String lwp = "/!"; privat...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/send/ListUserMessageMsg.java
src/main/java/org/automation/goofish/core/socket/msg/send/ListUserMessageMsg.java
package org.automation.goofish.core.socket.msg.send; import com.fasterxml.jackson.annotation.JsonInclude; import lombok.Data; import org.automation.goofish.core.socket.msg.Message; import java.util.List; @Data @JsonInclude(JsonInclude.Include.NON_NULL) public class ListUserMessageMsg implements Message { private...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/send/AckMsg.java
src/main/java/org/automation/goofish/core/socket/msg/send/AckMsg.java
package org.automation.goofish.core.socket.msg.send; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import org.automation.goofish.core.socket.msg.Message; import org.automation.goofish.core.socket.msg.receive.ReceiveMsg; @Data @JsonInclud...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/core/socket/msg/send/ReadMsg.java
src/main/java/org/automation/goofish/core/socket/msg/send/ReadMsg.java
package org.automation.goofish.core.socket.msg.send; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.databind.node.ArrayNode; import lombok.Data; import org.automation.goofish.core.socket.msg.Message; import java.util.List; import static org.automation.goofish.utils.JsonUtils.OBJECT...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/data/ChatContext.java
src/main/java/org/automation/goofish/data/ChatContext.java
package org.automation.goofish.data; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import lombok.ToString; import org.springframework.data.annotation.Id; import org.springframework.data.relational.core.mapping.Table; @Data @AllArgsConstructor @NoArgsConstructor @ToString @Tabl...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/data/ItemRepository.java
src/main/java/org/automation/goofish/data/ItemRepository.java
package org.automation.goofish.data; import org.springframework.data.r2dbc.repository.Query; import org.springframework.data.r2dbc.repository.R2dbcRepository; import org.springframework.data.repository.query.Param; import org.springframework.stereotype.Repository; import reactor.core.publisher.Mono; @Repository publi...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/data/ChatRepository.java
src/main/java/org/automation/goofish/data/ChatRepository.java
package org.automation.goofish.data; import org.springframework.data.r2dbc.repository.Query; import org.springframework.data.r2dbc.repository.R2dbcRepository; import org.springframework.data.repository.query.Param; import org.springframework.stereotype.Repository; import reactor.core.publisher.Mono; @Repository publi...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
qOeOp/XianyuAutoAgent
https://github.com/qOeOp/XianyuAutoAgent/blob/6768912b9d9676bc115be44ba4067f331ba16f03/src/main/java/org/automation/goofish/data/ItemContext.java
src/main/java/org/automation/goofish/data/ItemContext.java
package org.automation.goofish.data; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import lombok.ToString; import org.springframework.data.annotation.Id; import org.springframework.data.relational.core.mapping.Table; @Data @AllArgsConstructor @NoArgsConstructor @ToString @Tabl...
java
MIT
6768912b9d9676bc115be44ba4067f331ba16f03
2026-01-05T02:40:14.461932Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/json/JsonToken.java
src/test/java/com/southernstorm/json/JsonToken.java
/* * Copyright (C) 2013 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/json/MalformedJsonException.java
src/test/java/com/southernstorm/json/MalformedJsonException.java
/* * Copyright (C) 2013 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/json/JsonReader.java
src/test/java/com/southernstorm/json/JsonReader.java
/* * Copyright (C) 2013 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/noise/tests/GHASHTests.java
src/test/java/com/southernstorm/noise/tests/GHASHTests.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/noise/tests/Poly1305Tests.java
src/test/java/com/southernstorm/noise/tests/Poly1305Tests.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/noise/tests/HashTests.java
src/test/java/com/southernstorm/noise/tests/HashTests.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/noise/tests/Curve448Tests.java
src/test/java/com/southernstorm/noise/tests/Curve448Tests.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/noise/tests/TestUtils.java
src/test/java/com/southernstorm/noise/tests/TestUtils.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/noise/tests/CipherStateTests.java
src/test/java/com/southernstorm/noise/tests/CipherStateTests.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/noise/tests/VectorTests.java
src/test/java/com/southernstorm/noise/tests/VectorTests.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/noise/tests/RijndaelAESTests.java
src/test/java/com/southernstorm/noise/tests/RijndaelAESTests.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/noise/tests/Curve25519Tests.java
src/test/java/com/southernstorm/noise/tests/Curve25519Tests.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/test/java/com/southernstorm/noise/tests/UnitVectorTests.java
src/test/java/com/southernstorm/noise/tests/UnitVectorTests.java
package com.southernstorm.noise.tests; import java.io.InputStream; import java.net.URL; import org.junit.Assert; import org.junit.Test; public class UnitVectorTests { private static final String testVectorsCommit = "5d0a74760320e5486ced302e36ccad91606aac43"; @Test public void testBasicVector() throws Exceptio...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/RijndaelAES.java
src/main/java/com/southernstorm/noise/crypto/RijndaelAES.java
// This implementation is a straight C-to-Java port of the // public domain code from the original Rijndael authors: // http://web.cs.ucdavis.edu/~rogaway/ocb/ocb-ref/ // The original license declaration follows (all modifications // are released under the same terms): /* * rijndael-alg-fst.c * * @version 3.0 (Dece...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
true
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/Blake2sMessageDigest.java
src/main/java/com/southernstorm/noise/crypto/Blake2sMessageDigest.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/package-info.java
src/main/java/com/southernstorm/noise/crypto/package-info.java
/** * Fallback implementations of cryptographic primitives. * * This package provides plain Java implementations of the * cryptographic primitives that Noise requires which do not * normally come with standard JDK's. * * Applications that use Noise won't normally use these classes * directly. */ package com.s...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/NewHope.java
src/main/java/com/southernstorm/noise/crypto/NewHope.java
/* * Based on the public domain C reference code for New Hope. * This Java version is also placed into the public domain. * * Original authors: Erdem Alkim, Léo Ducas, Thomas Pöppelmann, Peter Schwabe * Java port: Rhys Weatherley */ package com.southernstorm.noise.crypto; import java.security.SecureRandom; imp...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
true
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/SHA256MessageDigest.java
src/main/java/com/southernstorm/noise/crypto/SHA256MessageDigest.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/SHA512MessageDigest.java
src/main/java/com/southernstorm/noise/crypto/SHA512MessageDigest.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/ChaChaCore.java
src/main/java/com/southernstorm/noise/crypto/ChaChaCore.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/GHASH.java
src/main/java/com/southernstorm/noise/crypto/GHASH.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/NewHopeTor.java
src/main/java/com/southernstorm/noise/crypto/NewHopeTor.java
/* * Based on the public domain C reference code for New Hope. * This Java version is also placed into the public domain. * * Original authors: Erdem Alkim, Léo Ducas, Thomas Pöppelmann, Peter Schwabe * Java port: Rhys Weatherley */ package com.southernstorm.noise.crypto; import java.util.Arrays; /** * New H...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
true
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/Curve448.java
src/main/java/com/southernstorm/noise/crypto/Curve448.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/Curve25519.java
src/main/java/com/southernstorm/noise/crypto/Curve25519.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/Poly1305.java
src/main/java/com/southernstorm/noise/crypto/Poly1305.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/crypto/Blake2bMessageDigest.java
src/main/java/com/southernstorm/noise/crypto/Blake2bMessageDigest.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/DHState.java
src/main/java/com/southernstorm/noise/protocol/DHState.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/ChaChaPolyCipherState.java
src/main/java/com/southernstorm/noise/protocol/ChaChaPolyCipherState.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/package-info.java
src/main/java/com/southernstorm/noise/protocol/package-info.java
/** * Provides classes for communicating via the Noise protocol. * * Reference: http://noiseprotocol.org */ package com.southernstorm.noise.protocol;
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/CipherState.java
src/main/java/com/southernstorm/noise/protocol/CipherState.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/CipherStatePair.java
src/main/java/com/southernstorm/noise/protocol/CipherStatePair.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/DHStateHybrid.java
src/main/java/com/southernstorm/noise/protocol/DHStateHybrid.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/Curve25519DHState.java
src/main/java/com/southernstorm/noise/protocol/Curve25519DHState.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/SymmetricState.java
src/main/java/com/southernstorm/noise/protocol/SymmetricState.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/HandshakeState.java
src/main/java/com/southernstorm/noise/protocol/HandshakeState.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
true
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/NewHopeDHState.java
src/main/java/com/southernstorm/noise/protocol/NewHopeDHState.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/AESGCMOnCtrCipherState.java
src/main/java/com/southernstorm/noise/protocol/AESGCMOnCtrCipherState.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/Destroyable.java
src/main/java/com/southernstorm/noise/protocol/Destroyable.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/AESGCMFallbackCipherState.java
src/main/java/com/southernstorm/noise/protocol/AESGCMFallbackCipherState.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/Pattern.java
src/main/java/com/southernstorm/noise/protocol/Pattern.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/Curve448DHState.java
src/main/java/com/southernstorm/noise/protocol/Curve448DHState.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
rweather/noise-java
https://github.com/rweather/noise-java/blob/49377b6dfc6a1e75740bce2318118291a57c0d6e/src/main/java/com/southernstorm/noise/protocol/Noise.java
src/main/java/com/southernstorm/noise/protocol/Noise.java
/* * Copyright (C) 2016 Southern Storm Software, Pty Ltd. * * 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 use, copy, ...
java
MIT
49377b6dfc6a1e75740bce2318118291a57c0d6e
2026-01-05T02:40:17.807960Z
false
ICIJ/node-tika
https://github.com/ICIJ/node-tika/blob/3181772cffc817c1e10b5e0206dd6fcd89bd3ba6/src/main/java/org/icij/nodetika/NodeTika.java
src/main/java/org/icij/nodetika/NodeTika.java
/* * Copyright (c) 2013 The Center for Public Integrity®. See LICENSE. */ package org.icij.nodetika; import java.util.Map; import java.util.HashMap; import java.util.Set; import java.io.IOException; import java.io.FileNotFoundException; import java.io.File; import java.io.InputStream; import java.io.FileInputStrea...
java
MIT
3181772cffc817c1e10b5e0206dd6fcd89bd3ba6
2026-01-05T02:37:55.757690Z
false
wolearn/SmartTool
https://github.com/wolearn/SmartTool/blob/ae158732df78f72cfbf0d749bc421cb933c15968/app/src/test/java/cn/etransfar/stt/smarttooltest/ExampleUnitTest.java
app/src/test/java/cn/etransfar/stt/smarttooltest/ExampleUnitTest.java
package cn.etransfar.stt.smarttooltest; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test pub...
java
Apache-2.0
ae158732df78f72cfbf0d749bc421cb933c15968
2026-01-05T02:40:23.846136Z
false
wolearn/SmartTool
https://github.com/wolearn/SmartTool/blob/ae158732df78f72cfbf0d749bc421cb933c15968/app/src/main/java/cn/etransfar/stt/smarttooltest/FullActivity.java
app/src/main/java/cn/etransfar/stt/smarttooltest/FullActivity.java
package cn.etransfar.stt.smarttooltest; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; public class FullActivity extends AppCompatActivity { private Button mButtonGoToHome; @Override protected void onCreate(Bundle savedIns...
java
Apache-2.0
ae158732df78f72cfbf0d749bc421cb933c15968
2026-01-05T02:40:23.846136Z
false
wolearn/SmartTool
https://github.com/wolearn/SmartTool/blob/ae158732df78f72cfbf0d749bc421cb933c15968/app/src/main/java/cn/etransfar/stt/smarttooltest/MainActivity.java
app/src/main/java/cn/etransfar/stt/smarttooltest/MainActivity.java
package cn.etransfar.stt.smarttooltest; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.TextView; import com.transfar.smarttoolui.main.FloatWindowService; import com.transfar.tda.cor...
java
Apache-2.0
ae158732df78f72cfbf0d749bc421cb933c15968
2026-01-05T02:40:23.846136Z
false
wolearn/SmartTool
https://github.com/wolearn/SmartTool/blob/ae158732df78f72cfbf0d749bc421cb933c15968/app/src/main/java/cn/etransfar/stt/smarttooltest/MyApplication.java
app/src/main/java/cn/etransfar/stt/smarttooltest/MyApplication.java
package cn.etransfar.stt.smarttooltest; import android.app.Application; import com.transfar.smarttoolui.core.SmartToolCore; /** * Title: MyApplication <br> * Description: <br> * Copyright (c) 传化物流版权所有 2017 <br> * Created DateTime: 2017-1-13 12:19 * Created by Wentao.Shi. */ public class MyApplication extends A...
java
Apache-2.0
ae158732df78f72cfbf0d749bc421cb933c15968
2026-01-05T02:40:23.846136Z
false
wolearn/SmartTool
https://github.com/wolearn/SmartTool/blob/ae158732df78f72cfbf0d749bc421cb933c15968/app/src/main/java/cn/etransfar/stt/smarttooltest/HalfActivity.java
app/src/main/java/cn/etransfar/stt/smarttooltest/HalfActivity.java
package cn.etransfar.stt.smarttooltest; import android.app.Activity; import android.os.Bundle; public class HalfActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_half); } @Ov...
java
Apache-2.0
ae158732df78f72cfbf0d749bc421cb933c15968
2026-01-05T02:40:23.846136Z
false
wolearn/SmartTool
https://github.com/wolearn/SmartTool/blob/ae158732df78f72cfbf0d749bc421cb933c15968/app/src/main/java/cn/etransfar/stt/smarttooltest/ExceptionActivity.java
app/src/main/java/cn/etransfar/stt/smarttooltest/ExceptionActivity.java
package cn.etransfar.stt.smarttooltest; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; public class ExceptionActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.lay...
java
Apache-2.0
ae158732df78f72cfbf0d749bc421cb933c15968
2026-01-05T02:40:23.846136Z
false
wolearn/SmartTool
https://github.com/wolearn/SmartTool/blob/ae158732df78f72cfbf0d749bc421cb933c15968/app/src/androidTest/java/cn/etransfar/stt/smarttooltest/ExampleInstrumentedTest.java
app/src/androidTest/java/cn/etransfar/stt/smarttooltest/ExampleInstrumentedTest.java
package cn.etransfar.stt.smarttooltest; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumentation test, which will execute on ...
java
Apache-2.0
ae158732df78f72cfbf0d749bc421cb933c15968
2026-01-05T02:40:23.846136Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/MPConstants.java
src/app/src/main/java/com/atul/musicplayer/MPConstants.java
package com.atul.musicplayer; import com.atul.musicplayer.listener.MusicSelectListener; import java.util.Arrays; import java.util.List; public class MPConstants { public static final String PACKAGE_NAME = "com.atul.musicplayerlite"; public static final String DEBUG_TAG = "MPLite_debug"; public static fin...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/MainActivity.java
src/app/src/main/java/com/atul/musicplayer/MainActivity.java
package com.atul.musicplayer; import android.app.Activity; import android.content.pm.PackageManager; import android.os.Bundle; import android.os.CountDownTimer; import android.os.Handler; import android.view.View; import android.widget.ImageButton; import android.widget.ImageView; import android.widget.RelativeLayout;...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/MPPreferences.java
src/app/src/main/java/com/atul/musicplayer/MPPreferences.java
package com.atul.musicplayer; import android.content.Context; import android.content.SharedPreferences; import androidx.appcompat.app.AppCompatDelegate; import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class MPPreferences { private static SharedPreferences.Editor getEditor(Cont...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/App.java
src/app/src/main/java/com/atul/musicplayer/App.java
package com.atul.musicplayer; import android.annotation.SuppressLint; import android.app.Application; import android.content.Context; public class App extends Application { @SuppressLint("StaticFieldLeak") private static Context context; public static Context getContext() { return App.context; ...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/model/Artist.java
src/app/src/main/java/com/atul/musicplayer/model/Artist.java
package com.atul.musicplayer.model; import android.os.Parcel; import android.os.Parcelable; import com.atul.musicplayer.helper.ListHelper; import java.util.List; public class Artist implements Parcelable { public static final Creator<Artist> CREATOR = new Creator<Artist>() { @Override public Art...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/model/Album.java
src/app/src/main/java/com/atul/musicplayer/model/Album.java
package com.atul.musicplayer.model; import android.os.Parcel; import android.os.Parcelable; import androidx.annotation.NonNull; import com.atul.musicplayer.helper.ListHelper; import java.util.ArrayList; import java.util.List; public class Album implements Parcelable { public static final Creator<Album> CREATO...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/model/Music.java
src/app/src/main/java/com/atul/musicplayer/model/Music.java
package com.atul.musicplayer.model; import android.net.Uri; import android.os.Parcel; import android.os.Parcelable; import androidx.annotation.NonNull; import com.atul.musicplayer.helper.ListHelper; public class Music implements Parcelable { public static final Creator<Music> CREATOR = new Creator<Music>() { ...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/model/Folder.java
src/app/src/main/java/com/atul/musicplayer/model/Folder.java
package com.atul.musicplayer.model; import com.atul.musicplayer.helper.ListHelper; public class Folder { public int songsCount; public String name; public Folder(int songsCount, String name) { this.songsCount = songsCount; this.name = ListHelper.ifNull(name); } }
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/viewmodel/MainViewModel.java
src/app/src/main/java/com/atul/musicplayer/viewmodel/MainViewModel.java
package com.atul.musicplayer.viewmodel; import androidx.lifecycle.MutableLiveData; import androidx.lifecycle.ViewModel; import com.atul.musicplayer.App; import com.atul.musicplayer.MPPreferences; import com.atul.musicplayer.model.Album; import com.atul.musicplayer.model.Artist; import com.atul.musicplayer.model.Folde...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/activities/FolderDialog.java
src/app/src/main/java/com/atul/musicplayer/activities/FolderDialog.java
package com.atul.musicplayer.activities; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.CheckBox; import androidx.annotation.NonNull; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclervie...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/activities/SelectedAlbumActivity.java
src/app/src/main/java/com/atul/musicplayer/activities/SelectedAlbumActivity.java
package com.atul.musicplayer.activities; import android.os.Bundle; import android.widget.ImageView; import android.widget.TextView; import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.app.AppCompatDelegate; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.wi...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/activities/SelectedArtistActivity.java
src/app/src/main/java/com/atul/musicplayer/activities/SelectedArtistActivity.java
package com.atul.musicplayer.activities; import android.os.Bundle; import android.widget.TextView; import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.app.AppCompatDelegate; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import com.at...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/activities/PlayerDialog.java
src/app/src/main/java/com/atul/musicplayer/activities/PlayerDialog.java
package com.atul.musicplayer.activities; import android.content.Context; import android.view.View; import android.widget.ImageButton; import android.widget.ImageView; import android.widget.SeekBar; import android.widget.TextView; import androidx.annotation.NonNull; import com.atul.musicplayer.R; import com.atul.musi...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/activities/QueueDialog.java
src/app/src/main/java/com/atul/musicplayer/activities/QueueDialog.java
package com.atul.musicplayer.activities; import android.content.Context; import androidx.annotation.NonNull; import androidx.recyclerview.widget.ItemTouchHelper; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import com.atul.musicplayer.R; import com.atul.m...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/activities/queue/QueueItemCallback.java
src/app/src/main/java/com/atul/musicplayer/activities/queue/QueueItemCallback.java
package com.atul.musicplayer.activities.queue; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.recyclerview.widget.ItemTouchHelper; import androidx.recyclerview.widget.RecyclerView; import com.atul.musicplayer.adapter.QueueAdapter; public class QueueItemCallback extends ItemT...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/dialogs/SleepTimerDisplayDialog.java
src/app/src/main/java/com/atul/musicplayer/dialogs/SleepTimerDisplayDialog.java
package com.atul.musicplayer.dialogs; import android.content.Context; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.lifecycle.LifecycleOwner; import com.atul.musicplayer.R; import com.atul.musicplayer.listener.SleepTimerSetListener; import com.google.android.material.bottomsheet...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/dialogs/SleepTimerDialog.java
src/app/src/main/java/com/atul/musicplayer/dialogs/SleepTimerDialog.java
package com.atul.musicplayer.dialogs; import android.content.Context; import android.text.Editable; import android.text.TextWatcher; import androidx.annotation.NonNull; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import com.atul.musicplayer.R; import com...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/fragments/AlbumsFragment.java
src/app/src/main/java/com/atul/musicplayer/fragments/AlbumsFragment.java
package com.atul.musicplayer.fragments; import android.content.Intent; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import androidx.appcompat.widget.SearchView; import androidx.fragment.app.Fragment; import androidx.lifecycle.ViewModelProvider;...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/fragments/SongsFragment.java
src/app/src/main/java/com/atul/musicplayer/fragments/SongsFragment.java
package com.atul.musicplayer.fragments; import android.annotation.SuppressLint; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import androidx.appcompat.widget.SearchView; import androidx.fragment.app.Fragment; import androidx.lifecycle.ViewModel...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/fragments/ArtistsFragment.java
src/app/src/main/java/com/atul/musicplayer/fragments/ArtistsFragment.java
package com.atul.musicplayer.fragments; import android.content.Intent; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import androidx.appcompat.widget.SearchView; import androidx.fragment.app.Fragment; import androidx.lifecycle.ViewModelProvider;...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/fragments/SettingsFragment.java
src/app/src/main/java/com/atul/musicplayer/fragments/SettingsFragment.java
package com.atul.musicplayer.fragments; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.Toast; import...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/helper/ThemeHelper.java
src/app/src/main/java/com/atul/musicplayer/helper/ThemeHelper.java
package com.atul.musicplayer.helper; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.util.TypedValue; import androidx.core.content.ContextCompat; import com.atul.musicplayer.MainActivity; import com.atul.musicplayer.R; import java.util.HashMap; public cla...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/helper/MusicLibraryHelper.java
src/app/src/main/java/com/atul/musicplayer/helper/MusicLibraryHelper.java
package com.atul.musicplayer.helper; import android.content.ContentUris; import android.content.Context; import android.database.Cursor; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Color; import android.media.MediaExtractor; import android.media.MediaFormat; import an...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/helper/PermissionHelper.java
src/app/src/main/java/com/atul/musicplayer/helper/PermissionHelper.java
package com.atul.musicplayer.helper; import android.Manifest; import android.app.Activity; import android.content.pm.PackageManager; import android.os.Build; import androidx.core.app.ActivityCompat; import androidx.core.content.ContextCompat; import com.atul.musicplayer.MPConstants; public class PermissionHelper { ...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/helper/VersioningHelper.java
src/app/src/main/java/com/atul/musicplayer/helper/VersioningHelper.java
package com.atul.musicplayer.helper; import android.os.Build; public class VersioningHelper { public static boolean isVersionQ() { return Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q; } }
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/helper/ListHelper.java
src/app/src/main/java/com/atul/musicplayer/helper/ListHelper.java
package com.atul.musicplayer.helper; import com.atul.musicplayer.MPConstants; import com.atul.musicplayer.model.Album; import com.atul.musicplayer.model.Artist; import com.atul.musicplayer.model.Music; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; publi...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/adapter/QueueAdapter.java
src/app/src/main/java/com/atul/musicplayer/adapter/QueueAdapter.java
package com.atul.musicplayer.adapter; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageButton; import android.widget.TextView; import androidx.annotation.ColorInt; import androidx.annotation.NonNull; import androidx...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/adapter/MainPagerAdapter.java
src/app/src/main/java/com/atul/musicplayer/adapter/MainPagerAdapter.java
package com.atul.musicplayer.adapter; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentManager; import androidx.fragment.app.FragmentPagerAdapter; import com.atul.musicplayer.fragments.AlbumsFragment; import com.atul.m...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false
ap-atul/music_player_lite
https://github.com/ap-atul/music_player_lite/blob/46d714451b83ebad1f810d43df31a679b9ec85b4/src/app/src/main/java/com/atul/musicplayer/adapter/AlbumsAdapter.java
src/app/src/main/java/com/atul/musicplayer/adapter/AlbumsAdapter.java
package com.atul.musicplayer.adapter; import android.annotation.SuppressLint; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.recyclerview.widget.RecyclerVi...
java
Unlicense
46d714451b83ebad1f810d43df31a679b9ec85b4
2026-01-05T02:39:08.858591Z
false