Home
last modified time | relevance | path

Searched +full:cache +full:- +full:dependency +full:- +full:path (Results 1 – 25 of 389) sorted by relevance

12345678910>>...16

/third_party/nghttp2/.github/workflows/
Dbuild.yml5 permissions: read-all
15 WOLFSSL_VERSION: v5.7.2-stable
18 build-cache:
21 os: [ubuntu-24.04, macos-13, macos-14]
23 runs-on: ${{ matrix.os }}
26 - name: Checkout
28 - name: Restore libbpf cache
29 id: cache-libbpf
30 uses: actions/cache@v4
33 path: libbpf/build
[all …]
/third_party/mindspore/mindspore-src/source/tests/st/compile_cache/
Dtest_compile_cache.py1 # Copyright 2021-2024 Huawei Technologies Co., Ltd
7 # http://www.apache.org/licenses/LICENSE-2.0
29 ret = os.system('sed -i "/{0}/{1}" {2}'.format(regex, context, file_name))
31 raise ValueError('exec `sed -i "/{0}/{1}" {2}` failed.'.format(regex, context, file_name))
43 ret = os.system("cp -af {0} {1}".format(src, dst))
45 raise ValueError("cp -af {0} {1}".format(src, dst))
54 cmd = "ps -ef | grep python | grep train.py | grep -v grep"
59 log_file = os.path.join(cur_model_path, "scripts/train_parallel{}/log")
66 loss_list.append(loss[-1])
76 # Clear compile cache folder and log files
[all …]
/third_party/rust/rust/compiler/rustc_incremental/
Dmessages.ftl2 …we asserted that an existing incremental cache directory should be successfully loaded, but it was…
5 we asserted that the incremental cache should not be loaded, but it was loaded
14 incremental_canonicalize_path = incremental compilation: error canonicalizing path `{$path}`: {$err}
17 …y setting the environment variable CARGO_INCREMENTAL=0 (see https://doc.rust-lang.org/cargo/refere…
19 …iable CARGO_TARGET_DIR to a different path (see https://doc.rust-lang.org/cargo/reference/config.h…
24 incremental_create_dep_graph = failed to create dependency graph at `{$path}`: {$err}
27 could not create incremental compilation {$tag} directory `{$path}`: {$err}
31 incremental_create_new = failed to create {$name} at `{$path}`: {$err}
33 incremental_decode_incr_cache = could not decode incremental cache: {$err}
35 incremental_delete_full = error deleting incremental compilation session directory `{$path}`: {$err}
[all …]
/third_party/grpc/src/csharp/Grpc.Tools/
DDepFileUtil.cs9 // http://www.apache.org/licenses/LICENSE-2.0
31 Sample dependency files. Notable features we have to deal with:
53 /// Read file names from the dependency file to the right of ':'
55 /// <param name="protoDepDir">Relative path to the dependency cache, e. g. "out"</param>
56 /// <param name="proto">Relative path to the proto item, e. g. "foo/file.proto"</param>
60 /// array if the dependency file does not exist or cannot be parsed.
76 // Start at the only line separating dependency outputs from inputs. in ReadDependencyInputs()
77 int ix = skip ? FindLineSeparator(line) : -1; in ReadDependencyInputs()
84 $"Skipping unparsable dependency file {depFilename}.\nLine with error: '{line}'"); in ReadDependencyInputs()
100 /// Read file names from the dependency file to the left of ':'
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/pipeline/jit/ps/
Dcompile_cache_manager.cc8 * http://www.apache.org/licenses/LICENSE-2.0
46 std::vector<AnfNodePtr> graph_params = func_graph->parameters(); in BuildLayout()
47 mind_ir::ParallelProto *parallel_proto = model->mutable_parallel(); in BuildLayout()
49 std::string name = std::static_pointer_cast<Parameter>(para)->name(); in BuildLayout()
50 auto tensor_layout = para->user_data<parallel::TensorLayout>(); in BuildLayout()
54 mind_ir::LayoutProto *layoutProto = parallel_proto->add_layout(); in BuildLayout()
57 auto device_arrangement = tensor_layout->device_arrangement().array(); in BuildLayout()
58 auto tensor_map = tensor_layout->tensor_map().array(); in BuildLayout()
59 auto slice_shape = tensor_layout->slice_shape().array(); in BuildLayout()
60 int64_t field_size = tensor_layout->get_field_size(); in BuildLayout()
[all …]
/third_party/rust/rust/compiler/rustc_incremental/src/persist/
Dsave.rs19 /// This function saves both the dep-graph and the query result cache,
20 /// and drops the result cache.
23 /// Trying to execute a query afterwards would attempt to read the result cache we just dropped.
55 file_format::save_in(sess, query_cache_path, "query cache", |e| { in save_dep_graph()
63 sess.emit_err(errors::WriteDepGraph { path: &staging_dep_graph_path, err }); in save_dep_graph()
94 let path = work_products_path(sess); in save_work_product_index() localVariable
95 file_format::save_in(sess, path, "work product index", |mut e| { in save_work_product_index()
100 // We also need to clean out old work-products, as not all of them are in save_work_product_index()
108 !wp.saved_files.items().all(|(_, path)| in_incr_comp_dir_sess(sess, path).exists()) in save_work_product_index()
113 // Check that we did not delete one of the current work-products: in save_work_product_index()
[all …]
Dload.rs1 //! Code to save/load the dep-graph from files.
12 use std::path::{Path, PathBuf};
33 /// Decoding loaded incremental cache failed.
39 pub fn open(self, sess: &Session) -> T { in open()
40 // Check for errors when using `-Zassert-incremental-state` in open()
57 LoadResult::LoadDepGraph(path, err) => { in open()
58 sess.emit_warning(errors::LoadDepGraph { path, err }); in open()
67 sess.emit_err(errors::DeleteIncompatible { path: dep_graph_path(sess), err }); in open()
76 fn load_data(path: &Path, sess: &Session) -> LoadResult<(Mmap, usize)> { in load_data() argument
78 path, in load_data()
[all …]
Dfile_format.rs3 //! compiler version. This file format is used for the on-disk version of the
4 //! dependency graph and the exported metadata hashes.
8 //! Since we can always just ignore the incremental compilation cache and
21 use std::path::{Path, PathBuf};
42 F: FnOnce(FileEncoder) -> FileEncodeResult, in save_in()
48 // truncate and overwrite it, since it might be a shared hard-link, the in save_in()
59 sess.emit_err(errors::DeleteOld { name, path: path_buf, err }); in save_in()
67 sess.emit_err(errors::CreateNew { name, path: path_buf, err }); in save_in()
84 sess.emit_err(errors::WriteNew { name, path: path_buf, err }); in save_in()
91 /// - Returns `Ok(Some(data, pos))` if the file existed and was generated by a
[all …]
/third_party/rust/crates/regex/
DCargo.toml5 license = "MIT OR Apache-2.0"
7 repository = "https://github.com/rust-lang/regex"
9 homepage = "https://github.com/rust-lang/regex"
14 categories = ["text-processing"]
21 "bench", "regex-capi", "regex-debug", "regex-syntax",
29 # with `cargo test --doc`.
33 # https://docs.rs/regex/*/#crate-features
35 default = ["std", "perf", "unicode", "regex-syntax/default"]
53 perf = ["perf-cache", "perf-dfa", "perf-inline", "perf-literal"]
56 # dependency and use a slower internal cache, but now the default cache has
[all …]
/third_party/jinja2/.github/workflows/
Dtests.yaml5 - main
6 - '*.x'
7 paths-ignore:
8 - 'docs/**'
9 - '*.md'
10 - '*.rst'
13 - main
14 - '*.x'
15 paths-ignore:
16 - 'docs/**'
[all …]
Dpublish.yaml5 - '*'
8 runs-on: ubuntu-latest
12 - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
13 - uses: actions/setup-python@5ccb29d8773c3f3f653e1705f474dfaa8a06a912
15 python-version: '3.x'
16 cache: 'pip'
17 cache-dependency-path: 'requirements/*.txt'
18 - run: pip install -r requirements/build.txt
20 - run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
21 - run: python -m build
[all …]
/third_party/mesa3d/docs/relnotes/
D21.3.7.rst1 Mesa 21.3.7 Release Notes / 2022-02-23
18 ---------------
22 b4fa9db7aa61bf209ef0b40bef83080999d86ad98df8b8b4fada7c128a1efc3d mesa-21.3.7.tar.xz
26 ------------
28 - None
32 ---------
34 - lavapipe: dEQP-VK.spirv_assembly.instruction.compute.float16.arithmetic_3.step fails
35 - ANV: Bad output from TransformFeedback . Regression from Mesa 21. Something to do with VB+XFB -> …
39 -------
43 - pan/bi: Avoid \*FADD.v2f16 hazard in optimizer
[all …]
/third_party/rust/rust/src/bootstrap/
Dmetadata.rs1 use std::path::PathBuf;
6 use crate::cache::INTERNER;
11 /// <https://doc.rust-lang.org/nightly/cargo/commands/cargo-metadata.html>
18 /// <https://doc.rust-lang.org/nightly/cargo/commands/cargo-metadata.html>
24 dependencies: Vec<Dependency>,
29 /// <https://doc.rust-lang.org/nightly/cargo/commands/cargo-metadata.html>
31 struct Dependency { struct
47 let mut path = PathBuf::from(package.manifest_path); in build() localVariable
48 path.pop(); in build()
56 let krate = Crate { name, deps, path, has_lib }; in build()
[all …]
/third_party/icu/tools/cldr/lib/
Dpom.xml1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- © 2020 and later: Unicode, Inc. and others.
5 -->
7 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8 …xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11 <!-- This POM file acts as a parent POM file for any tool which is built
14 task of including the Ant-built CLDR JAR file in Maven projects. -->
16 <!-- Declares this to be a POM that's included by other POM files. -->
19 <!-- This must match any child POM file's <parent> declaration. -->
21 <artifactId>cldr-lib</artifactId>
[all …]
/third_party/nghttp2/
DDockerfile.android4 # $ sudo docker build -t nghttp2-android - < Dockerfile.android
9 # /path/to/dest, do this:
11 # $ sudo docker run -v /path/to/dest:/out nghttp2-android cp /root/build/nghttp2/src/nghttpx /out
14 # Only use standalone-toolchain for reduce size
19 ENV NDK /root/android-ndk-$NDK_VERSION
20 ENV TOOLCHAIN $NDK/toolchains/llvm/prebuilt/linux-x86_64
21 ENV TARGET aarch64-linux-android
23 ENV AR $TOOLCHAIN/bin/llvm-ar
24 ENV CC $TOOLCHAIN/bin/$TARGET$API-clang
25 ENV CXX $TOOLCHAIN/bin/$TARGET$API-clang++
[all …]
/third_party/icu/
D.travis.yml7 - name: "c: docs"
14 - doxygen
16 - cd icu4c/source
17 - ./runConfigureICU Linux --disable-renaming
20 # The Doxygen version from Travis is down-rev, and doesn't recognize some options
23- set +o pipefail && make doc 2>&1 | tee doxygen.log && ( ! grep -P 'warning:(?! .* file Doxyfile)…
26 - name: "j"
31 - ant
32 - ant-optional
35 - cd icu4j
[all …]
/third_party/skia/m133/infra/bots/gen_tasks_logic/
Dtask_builder.go2 // Use of this source code is governed by a BSD-style license that can be
47 // cache adds the given caches to the task.
48 func (b *taskBuilder) cache(caches ...*specs.Cache) { func
54 log.Fatalf("Already have cache %s with a different definition!", c.Name)
116 // addToPATH adds the given locations to PATH for the task.
118 b.envPrefixes("PATH", loc...)
124 for _, path := range paths {
125 if !In(path, b.Spec.Outputs) {
126 b.Spec.Outputs = append(b.Spec.Outputs, path)
177 // Note: the DEPS parser normalizes dependency IDs, which includes
[all …]
/third_party/skia/third_party/externals/dawn/
DCMakeLists.txt7 # http://www.apache.org/licenses/LICENSE-2.0
17 # When upgrading to CMake 3.11 we can remove DAWN_DUMMY_FILE because source-less add_library
20 # case any of the generator files changes. We should also remove the CACHE "" FORCE stuff to
34 set(CMAKE_BUILD_TYPE "Debug" CACHE STRING
55 # Simplifies customization by projects that use Dawn as a dependency.
64 # set(${name} ${value} CACHE STRING ${description})
67 # Simplifies customization by projects that use Dawn as a dependency.
70 set(${name} ${value} CACHE STRING ${description})
74 # Default values for the backend-enabling options
120 option_if_not_defined(DAWN_ENABLE_PIC "Build with Position-Independent-Code enabled" OFF)
[all …]
/third_party/skia/third_party/externals/tint/
DCMakeLists.txt7 # http://www.apache.org/licenses/LICENSE-2.0
49 # Simplifies customization by projects that use Dawn as a dependency.
58 # set(${name} ${value} CACHE STRING ${description})
61 # Simplifies customization by projects that use Dawn as a dependency.
64 set(${name} ${value} CACHE STRING ${description})
68 …_PARTY_DIR "${tint_SOURCE_DIR}/third_party" "Directory in which to find third-party dependencies.")
73 option_if_not_defined(TINT_BUILD_SPV_READER "Build the SPIR-V input reader" ON)
78 option_if_not_defined(TINT_BUILD_SPV_WRITER "Build the SPIR-V output writer" ON)
81 option_if_not_defined(TINT_BUILD_SPIRV_TOOLS_FUZZER "Build SPIRV-Tools fuzzer" OFF)
86 option_if_not_defined(TINT_BUILD_REMOTE_COMPILE "Build the remote-compile tool for validating shade…
[all …]
/third_party/tex-hyphen/hyph-utf8/source/generic/hyph-utf8/lib/tex/hyphen/texlive/
Dpackage.rb60 @@metadata.dig(name, 'dependency')
65 "depend hyphen-base",
66 "depend hyph-utf8",
70 if dependency = has_dependency?
71 dependencies << sprintf("depend %s", dependency)
78 # Cache directory contents
79 (@dirlist ||= { })[type] ||= Dir.glob(sprintf(PATH::SUPPORT, type)).select do |file|
86 sprintf("%s/generic/hyph-utf8/languages/%s", type, bcp47)
98 files << "tex/generic/hyph-utf8/patterns/tex/hyph-no.tex" if name == "norwegian"
107 if ['la-x-classic', 'mk'].include? language.bcp47 # FIXME. Yes, fix it ;-)
[all …]
/third_party/rust/rust/compiler/rustc_session/src/
Dcstore.rs19 use std::path::{Path, PathBuf};
24 /// must be non-None.
34 pub fn paths(&self) -> impl Iterator<Item = &PathBuf> { in paths()
42 /// A dependency that is only used for its macros.
44 /// A dependency that is always injected into the dependency list and so
47 /// A dependency that is required by an rlib version of this crate.
54 pub fn macros_only(self) -> bool { in macros_only()
81 pub fn has_modifiers(&self) -> bool { in has_modifiers()
85 pub fn wasm_import_module(&self) -> Option<Symbol> { in wasm_import_module()
91 /// From <https://docs.microsoft.com/en-us/windows/win32/debug/pe-format#import-name-type>
[all …]
/third_party/mindspore/mindspore-src/source/scripts/build/
Dusage.sh2 # Copyright 2021-2022 Huawei Technologies Co., Ltd
8 # http://www.apache.org/licenses/LICENSE-2.0
17 set -e
22 …echo "bash build.sh [-d] [-r] [-v] [-c on|off] [-t ut|st] [-g on|off] [-h] [-b ge] [-m infer|train…
23 …echo " [-a on|off] [-p on|off] [-i] [-R] [-D on|off] [-j[n]] [-e gpu|ascend|d|cpu] \\"
24 …echo " [-P on|off] [-z [on|off]] [-M on|off] [-V 10.1|11.1|310|910|910b] [-I arm64|ar…
25 echo " [-B on|off] [-E] [-l on|off] [-n full|lite|off] [-H on|off] \\"
26 echo " [-A on|off] [-S on|off] [-k on|off] [-W sse|neon|avx|avx512|off] \\"
27 echo " [-L Tensor-RT path] [-y on|off] [-F on|off] [-G common|auto|ptx] [-o]\\"
30 echo " -d Debug mode"
[all …]
/third_party/vulkan-loader/scripts/
DCMakeLists.txt8 # http://www.apache.org/licenses/LICENSE-2.0
27 list(APPEND update_dep_command "--generator")
31 list(APPEND update_dep_command "--arch")
36 list(APPEND update_dep_command "--osx-archs")
44 message(WARNING "CMAKE_BUILD_TYPE not set. Using Debug for dependency build type")
49 list(APPEND update_dep_command "--config")
51 list(APPEND update_dep_command "--api")
69 …set(UPDATE_DEPS_DIR "${PROJECT_SOURCE_DIR}/external/${UPDATE_DEPS_DIR_SUFFIX}" CACHE PATH "Locatio…
70 list(APPEND update_dep_command "--dir" )
74 list(APPEND update_dep_command "--optional=tests")
[all …]
/third_party/grpc/templates/
DCMakeLists.txt.template2 --- |
16 # http://www.apache.org/licenses/LICENSE-2.0
37 def third_party_proto_import_path(path):
38 """Removes third_party prefix to match ProtoBuf's relative import path."""
40 if path.startswith(prefix):
41 return path[len(prefix):]
42 return path
57 # The "cmake_target" field originates from src/abseil-cpp/preprocessed_builds.yaml.gen.py
71 # its non-abseil transitive dependencies depend on.
120 # TODO(jtattermusch): add better way of excluding explicit protobuf dependency.
[all …]
/third_party/gn/src/gn/
Dheader_checker.h2 // Use of this source code is governed by a BSD-style license that can be
34 // Represents a dependency chain.
41 // True when the dependency on this target is public.
101 using PathExistsCallback = std::function<bool(const base::FilePath& path)>;
131 // |no_depeency_cache| is used to cache or check whether there is no
132 // dependency from |from_target| to target having |include_file|.
141 // Returns true if the given search_for target is a dependency of
145 // dependency chain from the dest target (chain[0] = search_for) to the src
146 // target (chain[chain.size() - 1] = search_from).
150 // indirect, non-public dependencies will only be considered if there are no
[all …]

12345678910>>...16