Home
last modified time | relevance | path

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

12345678910>>...22

/external/toolchain-utils/binary_search_tool/
Dbisect_driver.py1 # -*- coding: utf-8 -*-
3 # Use of this source code is governed by a BSD-style license that can be
16 …m/a/google.com/chromeos-toolchain-team-home2/home/team-tools-and-scripts/bisecting-chromeos-compil…
19 https://docs.google.com/document/d/1yDgaUIa2O5w6dc3sSTe1ry-1ehKajTGJGQCbyn0fcEM
35 LIST_FILE = os.path.join(GOOD_CACHE, "_LIST")
49 def lock_file(path, mode): argument
64 path: path to file being locked
67 with open(path, mode) as f:
88 def log_to_file(path, execargs, link_from=None, link_to=None): argument
91 Log current working directory, current execargs, and a from-to relationship
[all …]
/external/clang/test/Modules/
Ddependency-gen.modulemap2 // RUN: rm -rf %t
4-I. -x c++ -fmodule-name=test -fmodules -emit-module -fno-validate-pch -fmodules-strict-decluse %s…
6-I. -x c++ -fmodule-name=test-base -fmodules -emit-module -fno-validate-pch -fmodules-strict-declu…
7-I. -x c++ -fmodule-name=test -fmodules -emit-module -fno-validate-pch -fmodules-strict-decluse -f…
9-I. -x c++ -fmodules -include Inputs/dependency-gen.h -x c++ /dev/null -fmodule-file=%t/explicit.p…
12 header "Inputs/dependency-gen.h"
13 use "test-base"
14 use "test-base2"
17 // For implicit use of a module via the module cache, the input files
20 // IMPLICIT-DAG: {{[/\\]}}dependency-gen.modulemap
[all …]
Ddependency-gen.m1 // RUN: rm -rf %t-mcp
2 // RUN: mkdir -p %t-mcp
4-x objective-c -isystem %S/Inputs/System/usr/include -dependency-file %t.d.1 -MT %s.o -I %S/Inputs…
6 // CHECK: dependency-gen.m
9 // CHECK-NOT: usr{{.}}include{{.}}module.map
10 // CHECK-NOT: stdint.h
13-x objective-c -isystem %S/Inputs/System/usr/include -dependency-file %t.d.2 -MT %s.o -I %S/Inputs…
14 // RUN: FileCheck %s -check-prefix=CHECK-SYS < %t.d.2
15 // CHECK-SYS: dependency-gen.m
16 // CHECK-SYS: Inputs{{.}}module.map
[all …]
Ddependency-dump-dependent-module.m1 // When a module depends on another, check that we dump the dependency header
4 // RUN: rm -rf %t
5 …RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/cache -module-dependency-
6 // expected-no-diagnostics
8 // RUN: FileCheck %s -check-prefix=VFS < %t/vfs/vfs.yaml
20 // We should make Win32/Path.inc capable of long pathnames with '\\?\'.
Ddependency-gen-pch.m1 // RUN: rm -rf %t-mcp
2 // RUN: mkdir -p %t-mcp
3 // REQUIRES: x86-registered-target
5-isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -module-file-deps -dependency-file %t.d -
7 // CHECK: dependency-gen-pch.m.o
8 // CHECK-NEXT: dependency-gen-pch.m
9 // CHECK-NEXT: Inputs{{.}}module.map
10 // CHECK-NEXT: diamond_top.pcm
11 // CHECK-NEXT: Inputs{{.}}diamond_top.h
Drecursive.c1 // RUN: rm -rf %t
2 // RUN: not %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -fmodules-cache-path=%t -I %…
5 // RUN: rm -rf %t
6 // RUN: not %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -fmodules-cache-path=%t -emi…
9 // CHECK-NEXT: While building module 'recursive2' imported from {{.*Inputs[/\]}}recursive1.h:1:
10 // CHECK-NEXT: In file included from <module-includes>:1:
11 // CHECK-NEXT: recursive2.h:1:10: fatal error: cyclic dependency in module 'recursive1': recursive1…
Ddependency-gen-inferred-map.m1 // Test that the virtual file "__inferred_module.map" doesn't show up as dependency.
3 // REQUIRES: x86-registered-target
4 // RUN: rm -rf %t-mcp
5-isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -dependency-file %t.d -MT %s.o -F %S/Inpu…
7 // CHECK-NOT: __inferred_module
Ddependency-dump.m4 // RUN: rm -rf %t
5 …RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/cache -module-dependency-
6 // expected-no-diagnostics
8 // RUN: FileCheck %s -check-prefix=VFS -input-file %t/vfs/vfs.yaml
/external/dagger2/java/dagger/internal/codegen/validation/
DDiagnosticMessageGenerator.java8 * http://www.apache.org/licenses/LICENSE-2.0
39 import com.google.common.cache.CacheBuilder;
40 import com.google.common.cache.CacheLoader;
41 import com.google.common.cache.LoadingCache;
96 /** A cached function from type to all of its supertypes in breadth-first order. */
99 /** The shortest path (value) from an entry point (column) to a binding (row). */
104 // If Android Guava is on the processor path, then c.g.c.b.Function (which LoadingCache in memoize()
107 // processor path. in memoize()
113 LoadingCache<K, V> cache = in memoize() local
118 Function<K, V> memoized = cache::apply; in memoize()
[all …]
/external/clang/test/PCH/
Dmodified-module-dependency.m1 // RUN: rm -rf %t-dir
2 // RUN: mkdir -p %t-dir
3 // RUN: echo '@import test;' > %t-dir/prefix.h
4 // RUN: echo 'void foo(void);' > %t-dir/test.h
5 // RUN: cp %S/modified-module-dependency.module.map %t-dir/module.map
8 …c1 -x objective-c -I %t-dir -fmodules -fimplicit-module-maps -fmodules-cache-path=%t-dir/cache -fd…
10 // Modify the dependency.
11 // RUN: echo ' ' >> %t-dir/test.h
14-x objective-c -I %t-dir -include-pch %t-dir/prefix.pch -fmodules -fimplicit-module-maps -fmodules
15 // RUN: FileCheck %s < %t-dir/log
/external/rust/crates/regex/
DCargo.toml.orig5 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 …]
/external/pigweed/pw_build/
Ddocs.rst1 .. _module-pw_build:
3 --------
5 --------
14 .. _Ninja: https://ninja-build.org/
30 Pigweed development, and is the most tested and feature-rich build system
34 declarations that are used by upstream Pigweed to set some architecture-agnostic
41 -------------------------
46 * Only rely on pre-compiled tools provided by CIPD (or some other versioned,
47 pre-compiled binary distribution mechanism). This eliminates build artifact
51 using ``rebase_path("//path/to/my_script.py")``. Most of the time, Ninja
[all …]
/external/clang/test/VFS/
Dreal-path-found-first.m1 // This test is for cases where we lookup a file by its 'real' path before we
2 // use its VFS-mapped path. If we accidentally use the real path in header
5 // the dependency files by real path.
8 // RUN: rm -rf %t %t-cache %t.pch
9 // RUN: mkdir -p %t/SomeFramework.framework/Modules
11 // RUN: sed -e "s:INPUT_DIR:%S/Inputs:g" -e "s:OUT_DIR:%t:g" %S/Inputs/vfsoverlay.yaml > %t.yaml
14 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t-cache -F %t \
15 // RUN: -ivfsoverlay %t.yaml -fsyntax-only %s -verify -Wauto-import \
16 // RUN: -Werror=non-modular-include-in-framework-module
20 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t-cache -F %t \
[all …]
/external/auto/.github/workflows/
Dci.yml6 - master
9 - master
17 runs-on: ubuntu-latest
20 - name: 'Cancel previous runs'
21 uses: styfle/cancel-workflow-action@0.9.1
24 - name: 'Check out repository'
26 - name: 'Cache local Maven repository'
27 uses: actions/cache@v2.1.7
29 path: ~/.m2/repository
30 key: maven-${{ hashFiles('**/pom.xml') }}
[all …]
/external/python/typing/.github/workflows/
Dci.yml15 fail-fast: false
20 # https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
21 … python-version: ["3.7", "3.7.1", "3.8", "3.8.0", "3.9", "3.9.0", "3.10", "3.10.0", "3.11-dev"]
23 runs-on: ubuntu-latest
26 - uses: actions/checkout@v2
28 - name: Set up Python
29 uses: actions/setup-python@v2
31 python-version: ${{ matrix.python-version }}
33 - name: Test typing_extensions
34 continue-on-error: ${{ matrix.python-version == '3.11-dev' }}
[all …]
/external/python/pyfakefs/.github/workflows/
Dpythonpackage.yml8 runs-on: ${{ matrix.os }}
11 os: [ubuntu-latest]
12 python-version: [3.8]
14 - uses: actions/checkout@v2
15 - name: Set up Python ${{ matrix.python-version }}
16 uses: actions/setup-python@v2
18 python-version: ${{ matrix.python-version }}
19 - name: Install linter
21 uname -a
22 python -m pip install flake8 mypy
[all …]
/external/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 …]
/external/rust/crates/walkdir/
DREADME.md11 Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/).
19 To use this crate, add `walkdir` as a dependency to your project's
30 the path for each entry:
37 println!("{}", entry.path().display());
49 println!("{}", entry.path().display());
62 println!("{}", entry.path().display());
74 fn is_hidden(entry: &DirEntry) -> bool {
84 println!("{}", entry.path().display());
104 `nftw` on both a warm and cold file cache. In fact, I cannot observe any
117 # If you want to observe perf on a cold file cache, run this before *each*
[all …]
/external/guice/core/src/com/google/inject/internal/
DSingletonScope.java15 import com.google.inject.spi.Dependency;
39 * dependency cycles spanning several threads. This is significantly harder as all the dependencies
41 * have more complex dependency trees. 5) Guice has a pretty strong contract regarding Garbage
45 * and memory. Happy path should be almost as fast as in a single threaded solution and should not
73 * Provides singleton scope with the following properties: - creates no more than one instance per
74 * Key as a creator is used no more than once, - result is cached and returned quickly on
75 * subsequent calls, - exception in a creator is not treated as instance creation and is not
76 * cached, - creates singletons in parallel whenever possible, - waits for dependent singletons to
78 * dependencies are detected, - returns circular proxy only when circular dependencies are
79 * detected, - aside from that, blocking synchronization is only used for proxy creation and
[all …]
/external/robolectric/
Dbuild.gradle38 ideaProject.ipr.withXml { provider ->
43 configAnnotationProcessing.each { Project subProject ->
51 configAnnotationProcessing.each { Project subProject ->
60 processorRuntimeCfg.allArtifacts.each { artifact ->
63 processorRuntimeCfg.files.each { file ->
74 apply plugin: 'nebula-aggregate-javadocs'
81 …def headerHtml = "<ul class=\"navList\" style=\"font-size: 1.5em;\"><li>Robolectric $thisVersion |…
83 "<img src=\"http://robolectric.org/images/logo-with-bubbles-down.png\"" +
84 " style=\"max-height: 18pt; vertical-align: sub;\"/></a></li></ul>"
85 project.allprojects { p ->
[all …]
/external/okhttp/mockwebserver/
DREADME.md16 awkward-to-reproduce situations like 500 errors or slow-loading responses.
90 .addHeader("Content-Type", "application/json; charset=utf-8")
91 .addHeader("Cache-Control", "no-cache")
105 Verify requests by their method, path, HTTP version, body, and headers.
110 assertEquals("application/json; charset=utf-8", request.getHeader("Content-Type"));
118 dispatch on the request path.
145 <dependency>
150 </dependency>
164 http://www.apache.org/licenses/LICENSE-2.0
/external/tensorflow/tensorflow/lite/tools/cmake/modules/
Dflatbuffers.cmake8 # https://www.apache.org/licenses/LICENSE-2.0
40 add_definitions(-DNOMINMAX=1)
45 remove_definitions(-DNOMINMAX)
53 # The host-side flatc binary
61 # In case of a standalone (native) build of flatc for unit test cross-compilation
62 # purposes the FLATC_INSTALL_PREFIX is already in cache and is just used in this module.
63 # In case of standard flatbuffers build (as a dependency) the variable needs to be set.
65 set(FLATC_INSTALL_PREFIX <INSTALL_DIR> CACHE PATH "Flatc installation directory")
68 ExternalProject_Add(flatbuffers-flatc
69 PREFIX ${CMAKE_BINARY_DIR}/flatbuffers-flatc
[all …]
/external/dagger2/java/dagger/internal/codegen/binding/
DBindingGraphConverter.java8 * http://www.apache.org/licenses/LICENSE-2.0
85 // multibindings or optional bindings, the parent-owned binding is still there. If that in convert()
86 // parent-owned binding is not reachable from its component, it doesn't need to be in the graph in convert()
109 node -> node instanceof ComponentNode && node.componentPath().atRoot()); in rootComponentNode()
113 * Used as a cache key to make sure resolved bindings are cached per component path.
115 * graph since the ResolvedBindings class only contains the component and not the path.
130 /** The path from the root graph to the currently visited graph. */
209 childFactoryMethod -> in visitComponent()
251 * Returns an immutable snapshot of the path from the root component to the currently visited
270 "%s is not in the current path: %s", ancestor.getQualifiedName(), componentPath())); in pathFromRootToAncestor()
[all …]
/external/jemalloc_new/
DINSTALL.md17 would create a dependency on xsltproc in packaged releases, hence the
28 * `--help`
32 * `--prefix=<install-root-dir>`
36 ./configure --prefix=/usr/local
41 * `--with-version=(<major>.<minor>.<bugfix>-<nrev>-g<gid>|VERSION)`
45 1) If --with-version=<major>.<minor>.<bugfix>-<nrev>-g<gid> is specified,
47 2) If --with-version is not specified in either form and the source
49 describe' invocations that pattern-match release tags.
51 0.0.0-0-g0000000000000000000000000000000000000000
53 Note that --with-version=VERSION bypasses (1) and (2), which simplifies
[all …]
/external/nanopb-c/extra/
DFindNanopb.cmake7 # PROTOBUF_SRC_ROOT_FOLDER - When compiling with MSVC, if this cache variable is set
8 # the protobuf-default VS project build locations
12 # NANOPB_IMPORT_DIRS - List of additional directories to be searched for
15 # NANOPB_OPTIONS - List of options passed to nanopb.
17 # NANOPB_DEPENDS - List of files to be used as dependencies
22 # NANOPB_GENERATE_CPP_APPEND_PATH - By default -I will be passed to protoc
28 # NANOPB_FOUND - Found the nanopb library (source&header files, generator tool, protoc compiler t…
29 # NANOPB_INCLUDE_DIRS - Include directories for Google Protocol Buffers
31 # The following cache variables are also available to set or use:
32 # PROTOBUF_PROTOC_EXECUTABLE - The protoc compiler
[all …]

12345678910>>...22