Uses of Class
dev.dokimos.server.entity.ItemResult
Packages that use ItemResult
Package
Description
-
Uses of ItemResult in dev.dokimos.server.entity
Methods in dev.dokimos.server.entity that return ItemResultMethods in dev.dokimos.server.entity that return types with arguments of type ItemResultConstructors in dev.dokimos.server.entity with parameters of type ItemResult -
Uses of ItemResult in dev.dokimos.server.repository
Methods in dev.dokimos.server.repository that return types with arguments of type ItemResultModifier and TypeMethodDescriptionItemResultRepository.findAllWithEvalsByIdIn(Collection<UUID> ids) Loads the given items with their eval results fetch-joined, used to initialize the lazyevalResultscollection on a page of items in one query rather than per row.ItemResultRepository.findByRunIdWithEvals(UUID runId) Loads all item results for a run with their eval results fetch-joined in one query.org.springframework.data.domain.Page<ItemResult> ItemResultRepository.findByRunOrderByCreatedAtAsc(ExperimentRun run, org.springframework.data.domain.Pageable pageable) ItemResultRepository.findByRunWithEvals(ExperimentRun run) Loads all item results for a run with their eval results and dataset-item link fetch-joined in one query, avoiding the N+1 the lazyevalResultscollection would otherwise trigger when building a coreRunResultfor the gate comparison.org.springframework.data.domain.Page<ItemResult> ItemResultRepository.findItemsNeedingReview(String projectName, UUID experimentId, UUID runId, boolean restricted, String tenantId, org.springframework.data.domain.Pageable pageable) Page of items still awaiting a human verdict, optionally scoped to a project, experiment, or run.ItemResultRepository.findItemsNotYetEvaluated(UUID runId, String evaluatorName, UUID afterId, org.springframework.data.domain.Pageable pageable) Seek-based page of run items that carry no eval result for the given evaluator yet. -
Uses of ItemResult in dev.dokimos.server.service
Methods in dev.dokimos.server.service that return types with arguments of type ItemResultModifier and TypeMethodDescriptionComparisonSupport.ComparisonOutcome.baselineItems()Returns the value of thebaselineItemsrecord component.ComparisonSupport.ComparisonOutcome.candidateItems()Returns the value of thecandidateItemsrecord component.Method parameters in dev.dokimos.server.service with type arguments of type ItemResultModifier and TypeMethodDescriptionComparisonSupport.toRunResult(List<ItemResult> items) Converts already-loaded item entities into a coreRunResultat run index 0, preserving their order so positional pairing keys line up with the source list.Constructor parameters in dev.dokimos.server.service with type arguments of type ItemResultModifierConstructorDescriptionComparisonOutcome(RunComparisonResult result, String pairing, List<ItemResult> baselineItems, List<ItemResult> candidateItems) Creates an instance of aComparisonOutcomerecord class.