/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/precompile_utils.jl
46 строк
1 KB
Jameson Nash
docs: fix grammar and clarity in comments and docstrings (#62083)
17 июн 2026, 05:57
Не верифицирован
17 июн 2026, 05:57
27858bb
Код
Авторство
О чём код?
# This file is a part of Julia. License is MIT: https://julialang.org/license include("tempdepot.jl") function precompile_test_harness(@nospecialize(f), testset::String) @testset "$testset" precompile_test_harness(f, true) end function precompile_test_harness(@nospecialize(f), separate::Bool=true) load_path = mkdepottempdir() load_cache_path = separate ? mkdepottempdir() : load_path try pushfirst!(LOAD_PATH, load_path) pushfirst!(DEPOT_PATH, load_cache_path) f(load_path) finally filter!((≠)(load_path), LOAD_PATH) separate && filter!((≠)(load_cache_path), DEPOT_PATH) end return nothing end let original_depot_path = copy(Base.DEPOT_PATH) original_load_path = copy(Base.LOAD_PATH) global function finish_precompile_test!() empty!(Base.DEPOT_PATH) append!(Base.DEPOT_PATH, original_depot_path) empty!(Base.LOAD_PATH) append!(Base.LOAD_PATH, original_load_path) end end function check_presence(mi, token) ci = isdefined(mi, :cache) ? mi.cache : nothing while ci !== nothing # CI should have been validated @test ci.max_world != Base.ReinferUtils.WORLD_AGE_REVALIDATION_SENTINEL @test ci.min_world != ~zero(UInt) # Choose a CI with the right owner and current validity. if ci.owner === token && ci.max_world == typemax(UInt) return ci end ci = isdefined(ci, :next) ? ci.next : nothing end return nothing end