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
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/dto/FeAnalysisDemographicCriteriaDTO.java
src/main/java/org/ohdsi/webapi/feanalysis/dto/FeAnalysisDemographicCriteriaDTO.java
package org.ohdsi.webapi.feanalysis.dto; import com.fasterxml.jackson.annotation.JsonProperty; import org.ohdsi.circe.cohortdefinition.DemographicCriteria; public class FeAnalysisDemographicCriteriaDTO extends BaseFeAnalysisCriteriaDTO { @JsonProperty("expression") private DemographicCriteria expression; publ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/dto/FeAnalysisDTO.java
src/main/java/org/ohdsi/webapi/feanalysis/dto/FeAnalysisDTO.java
package org.ohdsi.webapi.feanalysis.dto; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; import org.ohdsi.analysis.cohortcharacterization.design.FeatureAnalysis; import org.ohdsi.webapi.feanalysis.FeAnalysisDeserializer; @JsonDeserialize(using = ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithDistributionCriteriaEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithDistributionCriteriaEntity.java
package org.ohdsi.webapi.feanalysis.domain; import javax.persistence.DiscriminatorValue; import javax.persistence.Entity; @Entity @DiscriminatorValue("CRITERIA_SET_DISTRIBUTION") public class FeAnalysisWithDistributionCriteriaEntity extends FeAnalysisWithCriteriaEntity<FeAnalysisDistributionCriteriaEntity> { publi...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWindowedCriteriaEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWindowedCriteriaEntity.java
package org.ohdsi.webapi.feanalysis.domain; import org.ohdsi.analysis.Utils; import org.ohdsi.analysis.cohortcharacterization.design.WindowedCriteriaFeature; import org.ohdsi.circe.cohortdefinition.WindowedCriteria; import javax.persistence.DiscriminatorValue; import javax.persistence.Entity; @Entity @DiscriminatorV...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithCriteriaEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithCriteriaEntity.java
package org.ohdsi.webapi.feanalysis.domain; import org.ohdsi.analysis.cohortcharacterization.design.FeatureAnalysisWithCriteria; import org.ohdsi.circe.cohortdefinition.ConceptSet; import javax.persistence.*; import java.util.Collections; import java.util.List; import java.util.Objects; @Entity public abstract class...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisDistributionCriteriaEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisDistributionCriteriaEntity.java
package org.ohdsi.webapi.feanalysis.domain; import javax.persistence.Entity; @Entity public abstract class FeAnalysisDistributionCriteriaEntity<T> extends FeAnalysisCriteriaEntity { public abstract T getExpression(); }
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisCriteriaEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisCriteriaEntity.java
package org.ohdsi.webapi.feanalysis.domain; import javax.persistence.Column; import javax.persistence.DiscriminatorColumn; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Inheritance; import javax.persis...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisDemographicCriteriaEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisDemographicCriteriaEntity.java
package org.ohdsi.webapi.feanalysis.domain; import org.ohdsi.analysis.Utils; import org.ohdsi.analysis.cohortcharacterization.design.DemographicCriteriaFeature; import org.ohdsi.circe.cohortdefinition.DemographicCriteria; import javax.persistence.DiscriminatorValue; import javax.persistence.Entity; @Entity @Discrimi...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisEntity.java
package org.ohdsi.webapi.feanalysis.domain; import java.util.HashSet; import java.util.Objects; import java.util.Set; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EnumType; import javax.persistence.Enumerated; import javax.persistence.FetchType; import javax.persistence.Ge...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithPrevalenceCriteriaEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithPrevalenceCriteriaEntity.java
package org.ohdsi.webapi.feanalysis.domain; import javax.persistence.DiscriminatorValue; import javax.persistence.Entity; @Entity @DiscriminatorValue("CRITERIA_SET_PREVALENCE") public class FeAnalysisWithPrevalenceCriteriaEntity extends FeAnalysisWithCriteriaEntity<FeAnalysisCriteriaGroupEntity> { public FeAnalysi...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisConcepsetEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisConcepsetEntity.java
package org.ohdsi.webapi.feanalysis.domain; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.OneToOne; import javax.persistence.Table; import org.hibernate.annotations...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithStringEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisWithStringEntity.java
package org.ohdsi.webapi.feanalysis.domain; import javax.persistence.DiscriminatorValue; import javax.persistence.Entity; import javax.persistence.Lob; import org.hibernate.annotations.Type; import org.ohdsi.analysis.cohortcharacterization.design.FeatureAnalysis; @Entity @DiscriminatorValue("not null") public class F...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisAggregateEntity.java
package org.ohdsi.webapi.feanalysis.domain; import org.apache.commons.lang3.StringUtils; import org.hibernate.annotations.GenericGenerator; import org.hibernate.annotations.Parameter; import org.hibernate.annotations.Type; import org.hibernate.annotations.TypeDef; import org.ohdsi.analysis.TableJoin; import org.ohdsi....
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisCriteriaGroupEntity.java
src/main/java/org/ohdsi/webapi/feanalysis/domain/FeAnalysisCriteriaGroupEntity.java
package org.ohdsi.webapi.feanalysis.domain; import org.ohdsi.analysis.Utils; import org.ohdsi.analysis.cohortcharacterization.design.CriteriaFeature; import org.ohdsi.circe.cohortdefinition.CriteriaGroup; import javax.persistence.DiscriminatorValue; import javax.persistence.Entity; @Entity @DiscriminatorValue("CRITE...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisWithStringEntityRepository.java
src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisWithStringEntityRepository.java
package org.ohdsi.webapi.feanalysis.repository; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisWithStringEntity; import java.util.Collection; import java.util.List; public interface FeAnalysisWithStringEntityRepository extends BaseFeAnalysisEntityRepository<FeAnalysisWithStringEntity> { List<FeAnalysisWithS...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisAggregateRepository.java
src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisAggregateRepository.java
package org.ohdsi.webapi.feanalysis.repository; import org.ohdsi.analysis.cohortcharacterization.design.StandardFeatureAnalysisDomain; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisAggregateEntity; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query;...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisEntityRepository.java
src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisEntityRepository.java
package org.ohdsi.webapi.feanalysis.repository; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisEntity; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.query.Param; import java.util.List; import java.util.Set; public interface FeAnalysisEntityRepository extends Ba...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisWithCriteriaEntityRepository.java
src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisWithCriteriaEntityRepository.java
package org.ohdsi.webapi.feanalysis.repository; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisWithCriteriaEntity; public interface FeAnalysisWithCriteriaEntityRepository extends BaseFeAnalysisEntityRepository<FeAnalysisWithCriteriaEntity> { }
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/repository/BaseFeAnalysisEntityRepository.java
src/main/java/org/ohdsi/webapi/feanalysis/repository/BaseFeAnalysisEntityRepository.java
package org.ohdsi.webapi.feanalysis.repository; import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; import com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphJpaRepository; import java.util.List; import java.util.Optional; import java.util.Set; import org.ohdsi.analysis.cohortcharacterization...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisCriteriaRepository.java
src/main/java/org/ohdsi/webapi/feanalysis/repository/FeAnalysisCriteriaRepository.java
package org.ohdsi.webapi.feanalysis.repository; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisCriteriaEntity; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; import java.util.List; public interface FeAnalysisCriteriaRepository extends JpaRepos...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/converter/BaseFeAnalysisDTOToFeAnalysisConverter.java
src/main/java/org/ohdsi/webapi/feanalysis/converter/BaseFeAnalysisDTOToFeAnalysisConverter.java
package org.ohdsi.webapi.feanalysis.converter; import org.apache.commons.lang3.StringUtils; import org.ohdsi.webapi.converter.BaseConversionServiceAwareConverter; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisEntity; import org.ohdsi.webapi.feanalysis.dto.FeAnalysisShortDTO; public abstract class BaseFeAnalysis...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/converter/FeatureAnalysisAggregateToDTOConverter.java
src/main/java/org/ohdsi/webapi/feanalysis/converter/FeatureAnalysisAggregateToDTOConverter.java
package org.ohdsi.webapi.feanalysis.converter; import com.odysseusinc.arachne.commons.converter.BaseConvertionServiceAwareConverter; import org.ohdsi.analysis.cohortcharacterization.design.FeatureAnalysisAggregate; import org.ohdsi.analysis.cohortcharacterization.design.StandardFeatureAnalysisDomain; import org.ohdsi....
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisDTOToFeAnalysisConverter.java
src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisDTOToFeAnalysisConverter.java
package org.ohdsi.webapi.feanalysis.converter; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisEntity; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisWithCriteriaEntity; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisWithStringEntity; import org.ohdsi.webapi.feanalysis.dto.FeAnalysisDTO; import org.sprin...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/converter/CcFeAnalysisEntityToFeAnalysisShortDTOConverter.java
src/main/java/org/ohdsi/webapi/feanalysis/converter/CcFeAnalysisEntityToFeAnalysisShortDTOConverter.java
package org.ohdsi.webapi.feanalysis.converter; import org.ohdsi.webapi.cohortcharacterization.domain.CcFeAnalysisEntity; import org.ohdsi.webapi.converter.BaseConversionServiceAwareConverter; import org.ohdsi.webapi.feanalysis.dto.FeAnalysisShortDTO; import org.springframework.beans.factory.annotation.Autowired; impor...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisEntityToFeAnalysisDTOConverter.java
src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisEntityToFeAnalysisDTOConverter.java
package org.ohdsi.webapi.feanalysis.converter; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import org.apache.commons.collections4.CollectionUtils; import org.ohdsi.webapi.feanalysis.domain.*; import org.ohdsi.webapi.feanalysis.dto.*; import org.springframework.be...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisAggregateDTOToEntityConverter.java
src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisAggregateDTOToEntityConverter.java
package org.ohdsi.webapi.feanalysis.converter; import com.odysseusinc.arachne.commons.converter.BaseConvertionServiceAwareConverter; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisAggregateEntity; import org.ohdsi.webapi.feanalysis.dto.FeAnalysisAggregateDTO; import org.ohdsi.webapi.feanalysis.repository.FeAnalys...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisDTOToFeAnalysisWithStringConverter.java
src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisDTOToFeAnalysisWithStringConverter.java
package org.ohdsi.webapi.feanalysis.converter; import org.ohdsi.analysis.cohortcharacterization.design.StandardFeatureAnalysisType; import org.ohdsi.webapi.feanalysis.dto.FeAnalysisDTO; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisWithStringEntity; import org.springframework.stereotype.Component; @Component pu...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisShortDTOToFeaAnalysisConverter.java
src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisShortDTOToFeaAnalysisConverter.java
package org.ohdsi.webapi.feanalysis.converter; import org.ohdsi.analysis.cohortcharacterization.design.CcResultType; import org.ohdsi.analysis.cohortcharacterization.design.StandardFeatureAnalysisType; import org.ohdsi.webapi.feanalysis.domain.*; import org.ohdsi.webapi.feanalysis.dto.FeAnalysisShortDTO; import org.sp...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/converter/BaseFeAnalysisEntityToFeAnalysisDTOConverter.java
src/main/java/org/ohdsi/webapi/feanalysis/converter/BaseFeAnalysisEntityToFeAnalysisDTOConverter.java
package org.ohdsi.webapi.feanalysis.converter; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisEntity; import org.ohdsi.webapi.feanalysis.dto.FeAnalysisShortDTO; import org.ohdsi.webapi.service.converters.BaseCommonEntityToDTOConverter; public abstract class BaseFeAnalysisEntityToFeAnalysisDTOConverter<T extends ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisDTOToFeAnalysisWithCriteriasConverter.java
src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisDTOToFeAnalysisWithCriteriasConverter.java
package org.ohdsi.webapi.feanalysis.converter; import org.ohdsi.analysis.Utils; import org.ohdsi.analysis.cohortcharacterization.design.CcResultType; import org.ohdsi.analysis.cohortcharacterization.design.StandardFeatureAnalysisType; import org.ohdsi.webapi.feanalysis.domain.*; import org.ohdsi.webapi.feanalysis.dto....
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisEntityToFeAnalysisShortDTOConverter.java
src/main/java/org/ohdsi/webapi/feanalysis/converter/FeAnalysisEntityToFeAnalysisShortDTOConverter.java
package org.ohdsi.webapi.feanalysis.converter; import org.ohdsi.webapi.feanalysis.dto.FeAnalysisShortDTO; import org.springframework.stereotype.Component; @Component public class FeAnalysisEntityToFeAnalysisShortDTOConverter extends BaseFeAnalysisEntityToFeAnalysisDTOConverter<FeAnalysisShortDTO> { @Override pro...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/feanalysis/event/FeAnalysisChangedEvent.java
src/main/java/org/ohdsi/webapi/feanalysis/event/FeAnalysisChangedEvent.java
package org.ohdsi.webapi.feanalysis.event; import org.ohdsi.webapi.feanalysis.domain.FeAnalysisEntity; public class FeAnalysisChangedEvent { private FeAnalysisEntity feAnalysis; public FeAnalysisChangedEvent(FeAnalysisEntity feAnalysis) { this.feAnalysis = feAnalysis; } public FeAnalysisEnt...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/info/Info.java
src/main/java/org/ohdsi/webapi/info/Info.java
package org.ohdsi.webapi.info; import java.util.Map; public class Info { private final String version; private final BuildInfo buildInfo; private final Map<String, Map<String, Object>> configuration; public Info(String version, BuildInfo buildInfo, Map<String, Map<String, Object>> configuration) { ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/info/RepositoryInfo.java
src/main/java/org/ohdsi/webapi/info/RepositoryInfo.java
package org.ohdsi.webapi.info; public class RepositoryInfo { private Integer milestoneId; private String releaseTag; public RepositoryInfo(Integer milestoneId, String releaseTag) { this.milestoneId = milestoneId; this.releaseTag = releaseTag; } public Integer getMilestoneId() { return milestone...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/info/BuildInfo.java
src/main/java/org/ohdsi/webapi/info/BuildInfo.java
package org.ohdsi.webapi.info; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.info.BuildProperties; import org.springframework.stereotype.Component; import java.util.Optional; @Component public class BuildInfo { private fin...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/info/InfoService.java
src/main/java/org/ohdsi/webapi/info/InfoService.java
/* * Copyright 2019 Observational Health Data Sciences and Informatics [OHDSI.org]. * * 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 ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/achilles/service/AchillesCacheService.java
src/main/java/org/ohdsi/webapi/achilles/service/AchillesCacheService.java
package org.ohdsi.webapi.achilles.service; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.node.ObjectNode; import org.ohdsi.webapi.achilles.domain.AchillesCacheEntity; import org.ohdsi.webapi.achilles.repository.Achil...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/achilles/domain/AchillesCacheEntity.java
src/main/java/org/ohdsi/webapi/achilles/domain/AchillesCacheEntity.java
package org.ohdsi.webapi.achilles.domain; import org.ohdsi.webapi.source.Source; 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...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/achilles/repository/AchillesCacheRepository.java
src/main/java/org/ohdsi/webapi/achilles/repository/AchillesCacheRepository.java
package org.ohdsi.webapi.achilles.repository; import org.ohdsi.webapi.achilles.domain.AchillesCacheEntity; import org.ohdsi.webapi.source.Source; import org.springframework.data.jpa.repository.Modifying; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.CrudRepository; im...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/achilles/aspect/AchillesCache.java
src/main/java/org/ohdsi/webapi/achilles/aspect/AchillesCache.java
package org.ohdsi.webapi.achilles.aspect; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface AchillesCache { String valu...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/achilles/aspect/AchillesCacheAspect.java
src/main/java/org/ohdsi/webapi/achilles/aspect/AchillesCacheAspect.java
package org.ohdsi.webapi.achilles.aspect; import com.fasterxml.jackson.databind.ObjectMapper; import org.apache.commons.lang3.StringUtils; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.Signature; import org.aspectj.lang.annotation.Around; import org.aspectj.lan...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/tool/ToolService.java
src/main/java/org/ohdsi/webapi/tool/ToolService.java
package org.ohdsi.webapi.tool; import org.ohdsi.webapi.tool.dto.ToolDTO; import java.util.List; public interface ToolService { List<ToolDTO> getTools(); ToolDTO saveTool(ToolDTO toolDTO); ToolDTO getById(Integer id); void delete(Integer id); }
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/tool/ToolRepository.java
src/main/java/org/ohdsi/webapi/tool/ToolRepository.java
package org.ohdsi.webapi.tool; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface ToolRepository extends JpaRepository<Tool, Integer> { List<Tool> findAllByEnabled(boolean enabled); }
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/tool/ToolServiceImpl.java
src/main/java/org/ohdsi/webapi/tool/ToolServiceImpl.java
package org.ohdsi.webapi.tool; import java.text.SimpleDateFormat; import java.time.Instant; import java.util.Date; import java.util.List; import java.util.Optional; import java.util.stream.Collectors; import java.util.stream.Stream; import org.apache.shiro.SecurityUtils; import org.ohdsi.webapi.service.AbstractDaoSer...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/tool/ToolController.java
src/main/java/org/ohdsi/webapi/tool/ToolController.java
package org.ohdsi.webapi.tool; import org.ohdsi.webapi.tool.dto.ToolDTO; import org.springframework.stereotype.Controller; import javax.ws.rs.Consumes; import javax.ws.rs.DELETE; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.PUT; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import java...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/tool/Tool.java
src/main/java/org/ohdsi/webapi/tool/Tool.java
package org.ohdsi.webapi.tool; import org.hibernate.annotations.GenericGenerator; import org.hibernate.annotations.Parameter; import org.ohdsi.webapi.model.CommonEntity; import javax.persistence.Entity; import javax.persistence.Table; import javax.persistence.Id; import javax.persistence.GeneratedValue; import javax....
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/tool/dto/ToolDTO.java
src/main/java/org/ohdsi/webapi/tool/dto/ToolDTO.java
package org.ohdsi.webapi.tool.dto; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.ohdsi.webapi.shiro.Entities.UserEntity; import java.util.Objects; @JsonIgnoreProperties(ignoreUnknown = true) public class ToolDTO { private Integer id; private String name; private String url; ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/therapy/TherapyPathReport.java
src/main/java/org/ohdsi/webapi/therapy/TherapyPathReport.java
/* * 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 applicable law or agreed to in writing, software * distribu...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/therapy/TherapyPathVector.java
src/main/java/org/ohdsi/webapi/therapy/TherapyPathVector.java
/* * 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 applicable law or agreed to in writing, software * distribu...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/therapy/TherapySummary.java
src/main/java/org/ohdsi/webapi/therapy/TherapySummary.java
/* * 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 applicable law or agreed to in writing, software * distribu...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/pac4j/oidc/profile/converter/OidcLongTimeConverter.java
src/main/java/org/pac4j/oidc/profile/converter/OidcLongTimeConverter.java
/* * * Copyright 2017 Observational Health Data Sciences and Informatics * 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 r...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/library/src/main/java/com/crossbowffs/remotepreferences/RemoteUtils.java
library/src/main/java/com/crossbowffs/remotepreferences/RemoteUtils.java
package com.crossbowffs.remotepreferences; import java.util.HashSet; import java.util.Set; /** * Common utilities used to serialize and deserialize * preferences between the preference provider and caller. */ /* package */ final class RemoteUtils { private RemoteUtils() {} /** * Casts the parameter t...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferencePath.java
library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferencePath.java
package com.crossbowffs.remotepreferences; /** * A path consists of a preference file name and optionally a key within * the preference file. The key will be set for operations that involve * a single preference (e.g. {@code getInt}), and {@code null} for operations * on an entire preference file (e.g. {@code getA...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/library/src/main/java/com/crossbowffs/remotepreferences/RemoteContract.java
library/src/main/java/com/crossbowffs/remotepreferences/RemoteContract.java
package com.crossbowffs.remotepreferences; /** * Constants used for communicating with the preference provider. */ /* package */ final class RemoteContract { public static final String COLUMN_KEY = "key"; public static final String COLUMN_TYPE = "type"; public static final String COLUMN_VALUE = "value"; ...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferenceUriParser.java
library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferenceUriParser.java
package com.crossbowffs.remotepreferences; import android.content.UriMatcher; import android.net.Uri; import java.util.List; /** * Decodes URIs passed between {@link RemotePreferences} and {@link RemotePreferenceProvider}. */ /* package */ class RemotePreferenceUriParser { private static final int PREFERENCES_...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferenceFile.java
library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferenceFile.java
package com.crossbowffs.remotepreferences; /** * Represents a single preference file and the information needed to * access that preference file. */ public class RemotePreferenceFile { private final String mFileName; private final boolean mIsDeviceProtected; /** * Initializes the preference file i...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferences.java
library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferences.java
package com.crossbowffs.remotepreferences; import android.annotation.TargetApi; import android.content.ContentValues; import android.content.Context; import android.content.SharedPreferences; import android.database.ContentObserver; import android.database.Cursor; import android.net.Uri; import android.os.Build; impor...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferenceAccessException.java
library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferenceAccessException.java
package com.crossbowffs.remotepreferences; /** * Thrown if the preference provider could not be accessed. * This is commonly thrown under these conditions: * <ul> * <li>Preference provider component is disabled</li> * <li>Preference provider denied access via {@link RemotePreferenceProvider#checkAccess(St...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferenceProvider.java
library/src/main/java/com/crossbowffs/remotepreferences/RemotePreferenceProvider.java
package com.crossbowffs.remotepreferences; import android.content.ContentProvider; import android.content.ContentResolver; import android.content.ContentValues; import android.content.Context; import android.content.SharedPreferences; import android.database.ContentObserver; import android.database.Cursor; import andr...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/testapp/src/main/java/com/crossbowffs/remotepreferences/testapp/TestConstants.java
testapp/src/main/java/com/crossbowffs/remotepreferences/testapp/TestConstants.java
package com.crossbowffs.remotepreferences.testapp; public final class TestConstants { private TestConstants() {} public static final String AUTHORITY = BuildConfig.APPLICATION_ID + ".preferences"; public static final String AUTHORITY_DISABLED = BuildConfig.APPLICATION_ID + ".preferences.disabled"; pub...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/testapp/src/main/java/com/crossbowffs/remotepreferences/testapp/TestPreferenceListener.java
testapp/src/main/java/com/crossbowffs/remotepreferences/testapp/TestPreferenceListener.java
package com.crossbowffs.remotepreferences.testapp; import android.content.SharedPreferences; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; public class TestPreferenceListener implements SharedPreferences.OnSharedPreferenceChangeListener { private boolean mIsCalled; private...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/testapp/src/main/java/com/crossbowffs/remotepreferences/testapp/TestPreferenceProviderDisabled.java
testapp/src/main/java/com/crossbowffs/remotepreferences/testapp/TestPreferenceProviderDisabled.java
package com.crossbowffs.remotepreferences.testapp; import com.crossbowffs.remotepreferences.RemotePreferenceProvider; public class TestPreferenceProviderDisabled extends RemotePreferenceProvider { public TestPreferenceProviderDisabled() { super(TestConstants.AUTHORITY_DISABLED, new String[] {TestConstants...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/testapp/src/main/java/com/crossbowffs/remotepreferences/testapp/TestPreferenceProvider.java
testapp/src/main/java/com/crossbowffs/remotepreferences/testapp/TestPreferenceProvider.java
package com.crossbowffs.remotepreferences.testapp; import com.crossbowffs.remotepreferences.RemotePreferenceProvider; public class TestPreferenceProvider extends RemotePreferenceProvider { public TestPreferenceProvider() { super(TestConstants.AUTHORITY, new String[] {TestConstants.PREF_FILE}); } ...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/testapp/src/androidTest/java/com/crossbowffs/remotepreferences/RemotePreferencesTest.java
testapp/src/androidTest/java/com/crossbowffs/remotepreferences/RemotePreferencesTest.java
package com.crossbowffs.remotepreferences; import android.content.Context; import android.content.SharedPreferences; import android.os.Build; import android.os.Handler; import android.os.HandlerThread; import androidx.test.ext.junit.runners.AndroidJUnit4; import androidx.test.filters.SdkSuppress; import androidx.test...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/testapp/src/androidTest/java/com/crossbowffs/remotepreferences/RemotePreferenceProviderTest.java
testapp/src/androidTest/java/com/crossbowffs/remotepreferences/RemotePreferenceProviderTest.java
package com.crossbowffs.remotepreferences; import android.content.ContentResolver; import android.content.ContentValues; import android.content.Context; import android.content.SharedPreferences; import android.database.Cursor; import android.net.Uri; import androidx.test.ext.junit.runners.AndroidJUnit4; import androi...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
apsun/RemotePreferences
https://github.com/apsun/RemotePreferences/blob/c3e3e59d0b302e2af753f36e54a62c0c6059083b/testapp/src/androidTest/java/com/crossbowffs/remotepreferences/RemoteUtilsTest.java
testapp/src/androidTest/java/com/crossbowffs/remotepreferences/RemoteUtilsTest.java
package com.crossbowffs.remotepreferences; import androidx.test.ext.junit.runners.AndroidJUnit4; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.Set; @RunWith(AndroidJUnit4.class) public class RemoteUtilsTest...
java
MIT
c3e3e59d0b302e2af753f36e54a62c0c6059083b
2026-01-05T02:37:35.218499Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/util/src/main/java/com/tencent/wstt/gt/util/RuntimeHelper.java
util/src/main/java/com/tencent/wstt/gt/util/RuntimeHelper.java
package com.tencent.wstt.gt.util; import android.text.TextUtils; import java.io.BufferedOutputStream; import java.io.IOException; import java.io.PrintStream; import java.util.List; /** * Helper functions for running processes. */ public class RuntimeHelper { /** * Exec the arguments, using root if necessary. ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/util/src/main/java/com/tencent/wstt/gt/util/FileUtil.java
util/src/main/java/com/tencent/wstt/gt/util/FileUtil.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/util/src/main/java/com/tencent/wstt/gt/util/package-info.java
util/src/main/java/com/tencent/wstt/gt/util/package-info.java
/** * @author yoyoqin * GT其他模块依赖的工具包 */ package com.tencent.wstt.gt.util;
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/util/src/main/java/com/tencent/wstt/gt/util/VersionHelper.java
util/src/main/java/com/tencent/wstt/gt/util/VersionHelper.java
package com.tencent.wstt.gt.util; import android.os.Build; import java.lang.reflect.Field; public class VersionHelper { public static final int VERSION_CUPCAKE = 3; public static final int VERSION_DONUT = 4; public static final int VERSION_FROYO = 8; public static final int VERSION_JELLYBEAN = 16; private st...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/util/src/main/java/com/tencent/wstt/gt/util/RootUtil.java
util/src/main/java/com/tencent/wstt/gt/util/RootUtil.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/util/src/main/java/com/tencent/wstt/gt/util/ArrayUtil.java
util/src/main/java/com/tencent/wstt/gt/util/ArrayUtil.java
package com.tencent.wstt.gt.util; import java.lang.reflect.Array; import java.util.List; public class ArrayUtil { public static <T> int indexOf(T[] array, T object) { for (int i = 0; i < array.length; i++) { if (object.equals(array[i])) { return i; } } return -1; } // copied from Java 6 source ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/util/src/main/java/com/tencent/wstt/gt/util/DoubleUtils.java
util/src/main/java/com/tencent/wstt/gt/util/DoubleUtils.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/app/src/main/java/com/tencent/wstt/gt/gttools/MainActivity.java
app/src/main/java/com/tencent/wstt/gt/gttools/MainActivity.java
package com.tencent.wstt.gt.gttools; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.acti...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/util/ProcessCPUUtils.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/util/ProcessCPUUtils.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/util/FileUtil.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/util/FileUtil.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/util/package-info.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/util/package-info.java
/** * @author yoyoqin * 从GT中剥离出的基本性能指标采集实现的工具包 */ package com.tencent.wstt.gt.datasource.util;
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/util/UidNETUtils.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/util/UidNETUtils.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/util/SMUtils.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/util/SMUtils.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/util/CPUUtils.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/util/CPUUtils.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/util/MEMUtils.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/util/MEMUtils.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/util/NETUtils.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/util/NETUtils.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/util/DoubleUtils.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/util/DoubleUtils.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/util/FrameUtils.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/util/FrameUtils.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/NETTimerTask.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/NETTimerTask.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/HeapTimerTask.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/HeapTimerTask.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/MEMTimerTask.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/MEMTimerTask.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/FPSTimerTask.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/FPSTimerTask.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/package-info.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/package-info.java
/** * @author yoyoqin * 性能数据采集引擎,供给使用AndroidJUnit的自动化脚本直接使用或进一步封装 */ package com.tencent.wstt.gt.datasource.engine;
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/CPUTimerTask.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/CPUTimerTask.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/SMTimerTask.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/SMTimerTask.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/PrivateDirtyTimerTask.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/PrivateDirtyTimerTask.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/TargetChangeable.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/TargetChangeable.java
package com.tencent.wstt.gt.datasource.engine; /** *采集目标可变的接口。 * 比如pid,在测试过程中被测目标的进程号经常有改变的情况,如果想延续原来的采集任务,可以中途改变它。 */ public interface TargetChangeable<T> { T getTarget(); void setTarget(T t); }
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/DataRefreshListener.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/DataRefreshListener.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/UidNETTimerTask.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/UidNETTimerTask.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/PssTimerTask.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/PssTimerTask.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/IDataRefreshListener.java
datasource/src/main/java/com/tencent/wstt/gt/datasource/engine/IDataRefreshListener.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/androidTest/java/com/tencent/wstt/gt/datasource/AllTest.java
datasource/src/androidTest/java/com/tencent/wstt/gt/datasource/AllTest.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/androidTest/java/com/tencent/wstt/gt/datasource/SMTest.java
datasource/src/androidTest/java/com/tencent/wstt/gt/datasource/SMTest.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false
r551/GTTools
https://github.com/r551/GTTools/blob/e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5/datasource/src/androidTest/java/com/tencent/wstt/gt/datasource/NETTest.java
datasource/src/androidTest/java/com/tencent/wstt/gt/datasource/NETTest.java
/* * Tencent is pleased to support the open source community by making * Tencent GT (Version 2.4 and subsequent versions) available. * * Notwithstanding anything to the contrary herein, any previous version * of Tencent GT shall not be subject to the license hereunder. * All right, title, and interest, including ...
java
MIT
e52c7da61b6af25c3c2d4b47b6ac8828b0e4cbf5
2026-01-05T02:37:34.026955Z
false