/third_party/flutter/flutter/packages/flutter_tools/lib/src/ |
D | artifacts.dart | 16 enum Artifact { 61 String _artifactToFileName(Artifact artifact, [ TargetPlatform platform, BuildMode mode ]) { 62 switch (artifact) { 63 case Artifact.genSnapshot: 65 case Artifact.flutterTester: 70 case Artifact.snapshotDart: 72 case Artifact.flutterFramework: 74 case Artifact.flutterMacOSFramework: 76 case Artifact.vmSnapshotData: 78 case Artifact.isolateSnapshotData: [all …]
|
D | cache.dart | 24 /// The name of the artifact. 29 /// Whether this artifact should be unavailable on stable branches. 149 printError('Failed to open or create the artifact cache lockfile: "$e"'); 231 /// Return the top-level directory for artifact downloads. 237 /// Get a named directory from with the cache's artifact directory; for example, 248 for (CachedArtifact artifact in _artifacts) { 249 final String currentPath = artifact.dyLdLibPath; 292 bool isUpToDate() => _artifacts.every((CachedArtifact artifact) => artifact.isUpToDate()); 309 throwToolExit('Failed to fetch third-party artifact $url: $e'); 322 for (CachedArtifact artifact in _artifacts) { [all …]
|
/third_party/protobuf/protoc-artifacts/ |
D | pom.xml | 44 <goal>attach-artifact</goal> 48 <artifact> 52 </artifact> 53 <artifact> 57 </artifact> 58 <artifact> 62 </artifact> 63 <artifact> 67 </artifact> 68 <artifact> [all …]
|
D | README.md | 6 build and publish a ``protoc`` executable (a.k.a. artifact) to Maven 7 repositories. The artifact can be used by build automation tools so that users 10 If you would like us to publish protoc artifact for a new platform, please send 26 The version of the ``protoc`` artifact must be the same as the version of the 29 ## Artifact name 30 The name of a published ``protoc`` artifact is in the following format: 55 ### Build the artifact for each platform 58 artifact for each platform. For example:
|
/third_party/libabigail/tools/ |
D | abilint.cc | 109 /// A tree node representing the "use" relation between an artifact A 113 /// So the node contains the artifact A and a vector children nodes 121 /// The artifact contained in this node. 122 type_or_decl_base* artifact = nullptr; member 124 /// actually use the 'artifact' above. In other words, the 125 /// 'artifact" data member above is a sub-type of each artifact 135 /// @param the artifact to consider. 137 : artifact (t) in artifact_use_relation_tree() 143 /// Add a user artifact node for the artifact carried by this node. 145 /// The artifact carried by the current node is a sub-type of the [all …]
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/build_system/targets/ |
D | dart.dart | 70 Source.artifact(Artifact.platformKernelDill), 71 Source.artifact(Artifact.engineDartBinary), 72 Source.artifact(Artifact.frontendServerSnapshotForEngineDartSdk), 98 sdkRoot: artifacts.getArtifactPath(Artifact.flutterPatchedSdkPath, mode: buildMode), 157 Source.artifact(Artifact.engineDartBinary), 158 Source.artifact(Artifact.skyEnginePath), 159 Source.artifact(Artifact.genSnapshot, 188 Source.artifact(Artifact.engineDartBinary), 189 Source.artifact(Artifact.skyEnginePath), 190 Source.artifact(Artifact.genSnapshot,
|
D | ios.dart | 101 Source.artifact(Artifact.engineDartBinary), 102 Source.artifact(Artifact.skyEnginePath), 103 Source.artifact(Artifact.genSnapshot, 133 Source.artifact(Artifact.engineDartBinary), 134 Source.artifact(Artifact.skyEnginePath), 135 Source.artifact(Artifact.genSnapshot,
|
D | macos.dart | 81 Source.artifact(Artifact.flutterMacOSFramework), 111 final String basePath = artifacts.getArtifactPath(Artifact.flutterMacOSFramework); 239 final String vmSnapshotData = artifacts.getArtifactPath(Artifact.vmSnapshotData, 241 final String isolateSnapshotData = artifacts.getArtifactPath(Artifact.isolateSnapshotData, 264 …Source.artifact(Artifact.isolateSnapshotData, platform: TargetPlatform.darwin_x64, mode: BuildMode… 265 …Source.artifact(Artifact.vmSnapshotData, platform: TargetPlatform.darwin_x64, mode: BuildMode.debu…
|
/third_party/ninja/.github/workflows/ |
D | windows.yml | 32 mkdir artifact 33 7z a artifact/ninja-win.zip ./build/Release/ninja.exe 35 # Upload ninja binary archive as an artifact 36 - name: Upload artifact 37 uses: actions/upload-artifact@v1 40 path: artifact 49 asset_path: ./artifact/ninja-win.zip
|
D | macos.yml | 34 mkdir artifact 35 7z a artifact/ninja-mac.zip ./build/ninja 37 # Upload ninja binary archive as an artifact 38 - name: Upload artifact 39 uses: actions/upload-artifact@v1 42 path: artifact 51 asset_path: ./artifact/ninja-mac.zip
|
D | linux.yml | 40 mkdir artifact 41 7z a artifact/ninja-linux.zip ./build/ninja 43 # Upload ninja binary archive as an artifact 44 - name: Upload artifact 45 uses: actions/upload-artifact@v1 48 path: artifact 57 asset_path: ./artifact/ninja-linux.zip
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/build_system/ |
D | source.dart | 126 /// Visit a [Source] which is defined by an [Artifact] from the flutter cache. 128 /// If the [Artifact] points to a directory then all child files are included. 129 void visitArtifact(Artifact artifact, TargetPlatform platform, BuildMode mode) { 130 final String path = artifacts.getArtifactPath(artifact, platform: platform, mode: mode); 155 /// The source is provided by an [Artifact]. 157 /// If [artifact] points to a directory then all child files are included. 158 const factory Source.artifact(Artifact artifact, {TargetPlatform platform, 224 const _ArtifactSource(this.artifact, { this.platform, this.mode }); 226 final Artifact artifact; 231 void accept(SourceVisitor visitor) => visitor.visitArtifact(artifact, platform, mode);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | CalcSpillWeights.h | 69 /// Compute future expected spill weight of a split artifact of li 72 /// \param start The expected begining of the split artifact. Instructions 74 /// \param end The expected end of the split artifact. Instructions 76 /// \return The expected spill weight of the split artifact. Returns 83 /// artifact of li that will span between start and end slot indexes. 85 /// \param start The expected begining of the split artifact. Instructions 87 /// weight calculation of future split artifact. 88 /// \param end The expected end of the split artifact. Instructions 90 /// weight calculation of future split artifact.
|
/third_party/openssl/.github/workflows/ |
D | fips-checksums.yml | 28 mkdir ./artifact 67 …run: make diff-fips-checksums && touch ../artifact/fips_unchanged || ( touch ../artifact/fips_chan… 70 run: echo ${{ github.event.number }} > ./artifact/pr_num 71 - name: save artifact 72 uses: actions/upload-artifact@v2 75 path: artifact/
|
D | fips-label.yml | 26 - name: 'Download artifact' 36 var matchArtifact = artifacts.data.artifacts.filter((artifact) => { 37 return artifact.name == "fips_checksum" 46 fs.writeFileSync('${{github.workspace}}/artifact.zip', Buffer.from(download.data)); 47 - run: unzip artifact.zip 49 - name: 'Check artifact and apply'
|
/third_party/libphonenumber/metadata/ |
D | pom.xml | 93 <!-- https://mvnrepository.com/artifact/com.google.guava/guava --> 100 <!-- https://mvnrepository.com/artifact/com.ibm.icu/icu4j --> 107 <!-- https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java --> 114 <!-- https://mvnrepository.com/artifact/com.google.auto.value/auto-value --> 122 <!-- https://mvnrepository.com/artifact/com.google.auto.value/auto-value-annotations --> 129 <!-- https://mvnrepository.com/artifact/com.github.os72/protoc-jar-maven-plugin --> 136 <!-- https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305 --> 143 <!-- https://mvnrepository.com/artifact/com.google.truth/truth --> 151 <!-- https://mvnrepository.com/artifact/com.google.truth.extensions/truth-java8-extension -->
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | .travis.yml | 17 - ARTIFACT=gcc-trusty-64bit 23 - ARTIFACT=clang-trusty-64bit 29 - ARTIFACT=clang-macos-64bit 36 - ARTIFACT=vs2017-32bit 43 - ARTIFACT=vs2017-64bit 61 - REV=${ARTIFACT}-$(git rev-parse --short=10 HEAD)
|
/third_party/typescript/scripts/ |
D | post-vsts-artifact-comment.js | 15 …ipelines API does _not_ make getting the direct URL to a specific file _within_ an artifact trivial 18 const artifact = await build.getArtifact("typescript", +process.env.BUILD_BUILDID, "tgz"); 19 const updatedUrl = new URL(artifact.resource.url); 20 updatedUrl.search = `artifactName=tgz&fileId=${artifact.resource.data}&fileName=manifest`; 23 const tgzUrl = new URL(artifact.resource.url); 65 …s.env.REQUESTING_USER}, something went wrong when looking for the build artifact. ([You can check …
|
/third_party/libabigail/.github/workflows/ |
D | libabigail.yaml | 20 # uses: actions/upload-artifact@v3 43 uses: actions/upload-artifact@v3 76 uses: actions/upload-artifact@v3 98 # Artifact pairs (named) for comparison) 104 uses: actions/download-artifact@v2 110 uses: actions/download-artifact@v2
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ |
D | artifacts_test.dart | 38 …artifacts.getArtifactPath(Artifact.flutterFramework, platform: TargetPlatform.ios, mode: BuildMode… 42 artifacts.getArtifactPath(Artifact.flutterTester), 83 …artifacts.getArtifactPath(Artifact.flutterFramework, platform: TargetPlatform.ios, mode: BuildMode… 87 artifacts.getArtifactPath(Artifact.flutterTester), 91 artifacts.getArtifactPath(Artifact.engineDartSdkPath),
|
/third_party/libphonenumber/debian/ |
D | libphonenumber7-java.poms | 5 # --ignore: ignore this POM and its artifact if any 10 # and its artifact 15 # --artifact=<path>: path to the build artifact associated with this POM,
|
D | maven.cleanIgnoreRules | 4 # [group] [artifact] [type] [version] [classifier] [scope] 11 # position of the artifact field will match any artifact id
|
D | maven.publishedRules | 4 # [group] [artifact] [type] [version] [classifier] [scope] 11 # position of the artifact field will match any artifact id
|
D | maven.ignoreRules | 3 # [group] [artifact] [type] [version] [classifier] [scope] 10 # position of the artifact field will match any artifact id
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/ |
D | precache.dart | 53 for (DevelopmentArtifact artifact in DevelopmentArtifact.values) { 55 if (!FlutterVersion.instance.isMaster && artifact.unstable) { 58 if (argResults[artifact.name]) { 59 requiredArtifacts.add(artifact);
|