Home
last modified time | relevance | path

Searched refs:artifacts (Results 1 – 25 of 339) sorted by relevance

12345678910>>...14

/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/
Dartifacts_test.dart6 import 'package:flutter_tools/src/artifacts.dart';
30 CachedArtifacts artifacts;
33 artifacts = CachedArtifacts();
38artifacts.getArtifactPath(Artifact.flutterFramework, platform: TargetPlatform.ios, mode: BuildMode…
39 …fs.path.join(tempDir.path, 'bin', 'cache', 'artifacts', 'engine', 'ios-release', 'Flutter.framewor…
42 artifacts.getArtifactPath(Artifact.flutterTester),
43 … fs.path.join(tempDir.path, 'bin', 'cache', 'artifacts', 'engine', 'linux-x64', 'flutter_tester'),
53 artifacts.getEngineType(TargetPlatform.android_arm, BuildMode.debug),
57 artifacts.getEngineType(TargetPlatform.ios, BuildMode.release),
61 artifacts.getEngineType(TargetPlatform.darwin_x64),
[all …]
Dcache_test.dart94 …fs.file(fs.path.join(directory.path, 'artifacts', 'gradle_wrapper', 'gradle', 'wrapper', 'gradle-w…
95 …he.getCacheDir(fs.path.join('artifacts', 'gradle_wrapper'))).thenReturn(fs.directory(fs.path.join(…
106 …fs.file(fs.path.join(directory.path, 'artifacts', 'gradle_wrapper', 'gradle', 'wrapper', 'gradle-w…
107 …fs.file(fs.path.join(directory.path, 'artifacts', 'gradle_wrapper', 'gradlew')).createSync(recursi…
108 …fs.file(fs.path.join(directory.path, 'artifacts', 'gradle_wrapper', 'gradlew.bat')).createSync(rec…
110 …he.getCacheDir(fs.path.join('artifacts', 'gradle_wrapper'))).thenReturn(fs.directory(fs.path.join(…
122 final Cache cache = Cache(artifacts: <CachedArtifact>[artifact1, artifact2]);
125 test('should be up to date, if all cached artifacts are', () {
130 final Cache cache = Cache(artifacts: <CachedArtifact>[artifact1, artifact2]);
133 test('should update cached artifacts which are not up to date', () async {
[all …]
/third_party/grpc/src/csharp/
Dbuild_nuget.sh20 mkdir -p ../../artifacts
40 dotnet pack --configuration Release Grpc.Core.Api --output ../../../artifacts
41 dotnet pack --configuration Release Grpc.Core --output ../../../artifacts
42 dotnet pack --configuration Release Grpc.Core.Testing --output ../../../artifacts
43 dotnet pack --configuration Release Grpc.Auth --output ../../../artifacts
44 dotnet pack --configuration Release Grpc.HealthCheck --output ../../../artifacts
45 dotnet pack --configuration Release Grpc.Reflection --output ../../../artifacts
46 dotnet pack --configuration Release Grpc.Tools --output ../../../artifacts
48 dotnet pack --configuration Release Grpc --output ../../../artifacts
49 dotnet pack --configuration Release Grpc.Core.NativeDebug --output ../../../artifacts
[all …]
Dbuild_packages_dotnetcli.bat17 mkdir ..\..\artifacts
19 @rem Collect the artifacts built by the previous build step
23 @rem Collect protoc artifacts built by the previous build step
35 %DOTNET% pack --configuration Release Grpc.Core.Api --output ..\..\..\artifacts || goto :error
36 %DOTNET% pack --configuration Release Grpc.Core --output ..\..\..\artifacts || goto :error
37 %DOTNET% pack --configuration Release Grpc.Core.Testing --output ..\..\..\artifacts || goto :error
38 %DOTNET% pack --configuration Release Grpc.Auth --output ..\..\..\artifacts || goto :error
39 %DOTNET% pack --configuration Release Grpc.HealthCheck --output ..\..\..\artifacts || goto :error
40 %DOTNET% pack --configuration Release Grpc.Reflection --output ..\..\..\artifacts || goto :error
41 %DOTNET% pack --configuration Release Grpc.Tools --output ..\..\..\artifacts || goto :error
[all …]
/third_party/node/deps/npm/node_modules/request/lib/
Dhawk.js57 var artifacts = { variable
70 if (!artifacts.hash && (opts.payload || opts.payload === '')) {
71 artifacts.hash = calculatePayloadHash(opts.payload, credentials.algorithm, opts.contentType)
74 var mac = exports.calculateMac(credentials, artifacts)
76 var hasExt = artifacts.ext !== null && artifacts.ext !== undefined && artifacts.ext !== ''
78 '", ts="' + artifacts.ts +
79 '", nonce="' + artifacts.nonce +
80 (artifacts.hash ? '", hash="' + artifacts.hash : '') +
81 (hasExt ? '", ext="' + artifacts.ext.replace(/\\/g, '\\\\').replace(/"/g, '\\"') : '') +
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/
Dprecache.dart15 help: 'Precache artifacts for all host platforms.');
17 help: 'Force downloading of artifacts.');
19 help: 'Precache artifacts for Android development.');
21 help: 'Precache artifacts for iOS development.');
23 help: 'Precache artifacts for web development.');
25 help: 'Precache artifacts for Linux desktop development.');
27 help: 'Precache artifacts for Windows desktop development.');
29 help: 'Precache artifacts for macOS desktop development.');
31 help: 'Precache artifacts for Fuchsia development.');
33 help: 'Precache artifacts required for any development platform.');
[all …]
Dunpack.dart5 import '../artifacts.dart';
15 /// The directory in the Flutter cache for each platform's artifacts.
52 /// Copies desktop artifacts to local cache directories.
60 help: 'Location to output platform specific artifacts.');
64 String get description => 'unpack desktop artifacts';
103 if (artifacts is LocalEngineArtifacts) {
104 final LocalEngineArtifacts localEngineArtifacts = artifacts;
115 throwToolExit('Failed to unpack desktop artifacts.');
121 /// Manages the copying of cached or locally built Flutter artifacts, including
127 /// The platform to copy artifacts for.
[all …]
Ddoctor.dart18 argParser.addOption('check-for-remote-artifacts',
20 help: 'Used to determine if Flutter engine artifacts for all platforms '
38 // machine can execute the provided artifacts. See `_genSnapshotRuns`
46 if (argResults.wasParsed('check-for-remote-artifacts')) {
47 final String engineRevision = argResults['check-for-remote-artifacts'];
/third_party/protobuf/protoc-artifacts/
DREADME.md1 # Build scripts that publish pre-compiled protoc artifacts
16 * [pom.xml](pom.xml): script to upload artifacts to maven.
17 * [build-zip.sh](build-zip.sh): script to package published maven artifacts in
21 The published protoc artifacts are available on Maven here:
33 Note that artifacts for linux/macos also have the `.exe` suffix but they are
57 Run the build-protoc.sh script under this protoc-artifacts directory to build the protoc
61 $ cd protoc-artifacts
66 protoc-artifacts directory.
69 script. We only use this script to build artifacts on Ubuntu and MacOS (both
80 $ docker build -t protoc-artifacts .
[all …]
/third_party/skia/third_party/externals/imgui/
D.gitignore1 ## OSX artifacts
4 ## Dear ImGui artifacts
7 ## General build artifacts
16 ## Visual Studio artifacts
32 ## Xcode artifacts
36 ## Emscripten artifacts
43 ## JetBrains IDE artifacts
/third_party/protobuf/kokoro/release/protoc/linux/
Dbuild.sh20 protoc-artifacts/build-protoc.sh linux aarch_64 protoc
23 protoc-artifacts/build-protoc.sh linux ppcle_64 protoc
26 protoc-artifacts/build-protoc.sh linux s390x protoc
29 DOCKER_IMAGE_NAME=protobuf/protoc_$(sha1sum protoc-artifacts/Dockerfile | cut -f1 -d " ")
33 bash -l /var/local/protobuf/protoc-artifacts/build-protoc.sh \
40 bash -l /var/local/protobuf/protoc-artifacts/build-protoc.sh \
/third_party/grpc/tools/release/
Dverify_python_release.py70 artifacts = set()
74 artifacts.add(
76 return artifacts
80 artifacts = set()
82 artifacts |= _get_remote_artifacts_for_package(package, version)
83 return artifacts
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/
Dprecache_test.dart18 Set<DevelopmentArtifact> artifacts;
22 artifacts = invocation.positionalArguments.first;
26 testUsingContext('Adds artifact flags to requested artifacts', () async {
32 expect(artifacts, unorderedEquals(<DevelopmentArtifact>{
50 testUsingContext('Adds artifact flags to requested artifacts on stable', () async {
58 expect(artifacts, unorderedEquals(<DevelopmentArtifact>{
68 testUsingContext('Downloads artifacts when --force is provided', () async {
75 expect(artifacts, unorderedEquals(<DevelopmentArtifact>{
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/build_system/targets/
Dwindows_test.dart37 …fs.file(r'C:\bin\cache\artifacts\engine\windows-x64\flutter_export.h').createSync(recursive: true);
38 fs.file(r'C:\bin\cache\artifacts\engine\windows-x64\flutter_messenger.h').createSync();
39 fs.file(r'C:\bin\cache\artifacts\engine\windows-x64\flutter_windows.dll').createSync();
40 fs.file(r'C:\bin\cache\artifacts\engine\windows-x64\flutter_windows.dll.exp').createSync();
41 fs.file(r'C:\bin\cache\artifacts\engine\windows-x64\flutter_windows.dll.lib').createSync();
42 fs.file(r'C:\bin\cache\artifacts\engine\windows-x64\flutter_windows.dll.pdb').createSync();
43 fs.file(r'C:\bin\cache\artifacts\engine\windows-x64\lutter_export.h').createSync();
44 fs.file(r'C:\bin\cache\artifacts\engine\windows-x64\flutter_messenger.h').createSync();
45 fs.file(r'C:\bin\cache\artifacts\engine\windows-x64\flutter_plugin_registrar.h').createSync();
46 fs.file(r'C:\bin\cache\artifacts\engine\windows-x64\flutter_glfw.h').createSync();
[all …]
Dlinux_test.dart36 … fs.file('bin/cache/artifacts/engine/linux-x64/libflutter_linux.so').createSync(recursive: true);
37 fs.file('bin/cache/artifacts/engine/linux-x64/flutter_export.h').createSync();
38 fs.file('bin/cache/artifacts/engine/linux-x64/flutter_messenger.h').createSync();
39 fs.file('bin/cache/artifacts/engine/linux-x64/flutter_plugin_registrar.h').createSync();
40 fs.file('bin/cache/artifacts/engine/linux-x64/flutter_glfw.h').createSync();
41 fs.file('bin/cache/artifacts/engine/linux-x64/icudtl.dat').createSync();
42 …fs.file('bin/cache/artifacts/engine/linux-x64/cpp_client_wrapper/foo').createSync(recursive: true);
76 …fs.file('bin/cache/artifacts/engine/linux-x64/libflutter_linux.so').writeAsStringSync('asd'); // m…
/third_party/protobuf/kokoro/release/
Dcollect_all_artifacts.sh12 mkdir -p artifacts
25 cp -r ${INPUT_ARTIFACTS_DIR}/* artifacts
43 cp ${INPUT_ARTIFACTS_DIR}/protoc-artifacts/target/linux/x86_32/protoc.exe protoc/linux_x86/protoc
44 cp ${INPUT_ARTIFACTS_DIR}/protoc-artifacts/target/linux/x86_64/protoc.exe protoc/linux_x64/protoc
60 cp Google.Protobuf.Tools.*.nupkg ../artifacts
/third_party/mbedtls/
D.gitignore4 # CMake build artifacts:
17 # Test coverage build artifacts:
25 # MSVC build artifacts:
31 # Python build artifacts:
/third_party/node/
D.gitignore40 # === Rules for artifacts of `./configure` ===
46 # === Rules for MSVS artifacts ===
64 # === Rules for GYP artifacts ===
70 # === Rules for other build artifacts ===
89 # === Rules for release artifacts ===
100 # === Rules for test artifacts ===
108 # === Rules for XCode artifacts ===
/third_party/grpc/tools/run_tests/artifacts/
Dbuild_package_python.sh20 mkdir -p artifacts/
24 cp -r "${EXTERNAL_GIT_ROOT}"/input_artifacts/python_*/* artifacts/ || true
44 for wheel in artifacts/*.whl; do
Dbuild_package_php.sh22 mkdir -p artifacts/
23 cp -r "${EXTERNAL_GIT_ROOT}"/input_artifacts/php_*/* artifacts/ || true
/third_party/flutter/flutter/packages/flutter_tools/gradle/
Daar_init_script.gradle11 import org.gradle.api.artifacts.Configuration
12 import org.gradle.api.artifacts.maven.MavenDeployer
30 …erefore, remove the snapshot part, so new runs of `flutter build aar` overrides existing artifacts.
51 …compileOnly project.files("${getFlutterRoot(project)}/bin/cache/artifacts/engine/android-arm-relea…
74 // default build config uses the artifacts produced for the specific build variant.
89 project.configurations["archives"].artifacts.clear()
91 project.artifacts.add("archives", bundle)
92 // Generate the Maven artifacts.
/third_party/protobuf/kokoro/release/python/macos/
Dbuild_artifacts.sh23 rm -rf artifacts/
25 mkdir artifacts
26 export ARTIFACT_DIR=$(pwd)/artifacts
/third_party/protobuf/kokoro/release/python/linux/
Dbuild_artifacts.sh23 rm -rf artifacts/
25 mkdir artifacts
26 export ARTIFACT_DIR=$(pwd)/artifacts
/third_party/protobuf/kokoro/release/ruby/linux/
Dprepare_build.sh11 mkdir artifacts
12 export ARTIFACT_DIR=$(pwd)/artifacts
/third_party/protobuf/kokoro/release/ruby/macos/
Dbuild_artifacts.sh9 mkdir artifacts
10 export ARTIFACT_DIR=$(pwd)/artifacts

12345678910>>...14