Home
last modified time | relevance | path

Searched full:artifact (Results 1 – 25 of 360) sorted by relevance

12345678910>>...15

/external/wycheproof/
DWORKSPACE3 artifact = "org.bouncycastle:bcprov-jdk15on:1.46",
8 artifact = "org.bouncycastle:bcprov-jdk15on:1.47",
13 artifact = "org.bouncycastle:bcprov-jdk15on:1.48",
18 artifact = "org.bouncycastle:bcprov-jdk15on:1.49",
23 artifact = "org.bouncycastle:bcprov-jdk15on:1.50",
28 artifact = "org.bouncycastle:bcprov-jdk15on:1.51",
33 artifact = "org.bouncycastle:bcprov-jdk15on:1.52",
38 artifact = "org.bouncycastle:bcprov-jdk15on:1.53",
43 artifact = "org.bouncycastle:bcprov-jdk15on:1.54",
48 artifact = "org.bouncycastle:bcprov-jdk15on:1.55",
[all …]
/external/antlr/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
DGUnitExecuteMojo.java21 import org.apache.maven.artifact.Artifact;
22 import org.apache.maven.artifact.DependencyResolutionRequiredException;
23 import org.apache.maven.artifact.versioning.ArtifactVersion;
24 import org.apache.maven.artifact.versioning.DefaultArtifactVersion;
25 import org.apache.maven.artifact.versioning.OverConstrainedVersionException;
72 private List<Artifact> pluginArtifacts;
132 Artifact pluginAntlrArtifact = determinePluginAntlrArtifact(); in execute()
139 private Artifact determinePluginAntlrArtifact() throws MojoExecutionException { in determinePluginAntlrArtifact()
140 for ( Artifact artifact : pluginArtifacts ) { in determinePluginAntlrArtifact()
141 boolean match = ANTLR_GROUP_ID.equals( artifact.getGroupId() ) in determinePluginAntlrArtifact()
[all …]
/external/grpc-grpc-java/
Drepositories.bzl114 artifact = "com.google.api.grpc:proto-google-common-protos:1.0.0",
121 artifact = "com.google.auth:google-auth-library-credentials:0.9.0",
128 artifact = "com.google.auth:google-auth-library-oauth2-http:0.9.0",
135 artifact = "com.google.code.findbugs:jsr305:3.0.0",
142 artifact = "com.google.code.gson:gson:jar:2.7",
149 artifact = "com.google.errorprone:error_prone_annotations:2.2.0",
156 artifact = "com.google.guava:guava:20.0",
183 artifact = "com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-5",
190 artifact = "com.google.re2j:re2j:1.2",
197 artifact = "com.google.truth:truth:0.42",
[all …]
/external/opencensus-java/examples/
Dopencensus_workspace.bzl3artifact=com.google.guava:guava-jdk5:23.0 --artifact=com.google.guava:guava:23.0 --artifact=io.grp…
14 artifact = "com.google.code.findbugs:jsr305:2.0.2",
23 artifact = "io.grpc:grpc-protobuf-lite:1.9.0",
31 artifact = "io.opencensus:opencensus-exporter-stats-prometheus:0.16.1",
41 artifact = "com.google.auth:google-auth-library-oauth2-http:0.10.0",
52 artifact = "io.netty:netty-transport:4.1.17.Final",
61 artifact = "io.netty:netty-handler-proxy:4.1.17.Final",
70 artifact = "io.grpc:grpc-protobuf-nano:1.9.0",
79 artifact = "com.google.cloud:google-cloud-trace:0.58.0-beta",
88 artifact = "commons-codec:commons-codec:1.9",
[all …]
/external/ImageMagick/MagickCore/
Dartifact.c13 % MagickCore Artifact Methods %
44 #include "MagickCore/artifact.h"
136 % "key=value" with per-image artifact. It is equivelent to
142 % const char *artifact)
148 % o artifact: the image artifact.
152 const char *artifact) in DefineImageArtifact() argument
162 assert(artifact != (const char *) NULL); in DefineImageArtifact()
163 (void) CopyMagickString(key,artifact,MagickPathExtent-1); in DefineImageArtifact()
185 % DeleteImageArtifact() deletes an image artifact.
189 % MagickBooleanType DeleteImageArtifact(Image *image,const char *artifact)
[all …]
Dpaint.c43 #include "MagickCore/artifact.h"
409 *artifact; in GradientImage() local
434 artifact=GetImageArtifact(image,"gradient:bounding-box"); in GradientImage()
435 if (artifact != (const char *) NULL) in GradientImage()
436 (void) ParseAbsoluteGeometry(artifact,&gradient->bounding_box); in GradientImage()
439 artifact=GetImageArtifact(image,"gradient:direction"); in GradientImage()
440 if (artifact != (const char *) NULL) in GradientImage()
446 MagickFalse,artifact); in GradientImage()
517 artifact=GetImageArtifact(image,"gradient:angle"); in GradientImage()
518 if (artifact != (const char *) NULL) in GradientImage()
[all …]
Dvision.c40 #include "MagickCore/artifact.h"
147 *artifact; in ConnectedComponentsImage() local
455 artifact=GetImageArtifact(image,"connected-components:area-threshold"); in ConnectedComponentsImage()
457 if (artifact != (const char *) NULL) in ConnectedComponentsImage()
458 area_threshold=StringToDouble(artifact,(char **) NULL); in ConnectedComponentsImage()
550 artifact=GetImageArtifact(image,"connected-components:mean-color"); in ConnectedComponentsImage()
551 if (IsStringTrue(artifact) != MagickFalse) in ConnectedComponentsImage()
559 artifact=GetImageArtifact(image,"connected-components:keep"); in ConnectedComponentsImage()
560 if (artifact != (const char *) NULL) in ConnectedComponentsImage()
567 for (c=(char *) artifact; *c != '\0';) in ConnectedComponentsImage()
[all …]
/external/doclava/src/com/google/doclava/
DArtifactTagger.java50 * Specifies the apicheck XML file associated with an artifact.
52 * This method should only be called once per artifact.
55 * @param mavenSpec the Maven spec for the artifact to which the XML file belongs
62 * Tags the specified docs with artifact information.
67 // Read through the XML files in order, applying their artifact information in tagAll()
80 "Failed to parse " + xmlFile + " for " + artifactName + " artifact data.\n" in tagAll()
94 * Returns {@code true} if any artifact mappings are specified.
101 * Writes an index of the artifact names to {@code data}.
105 for (String artifact : xmlToArtifact.values()) { in writeArtifactNames()
106 data.setValue("artifact." + index + ".name", artifact); in writeArtifactNames()
[all …]
DDocInfo.java111 * Sets the artifact in which the class resides.
116 * @param artifact the artifact in which the class resides
119 public void setArtifact(String artifact) { in setArtifact() argument
120 mArtifact = artifact; in setArtifact()
124 * Returns the artifact in which the class resides.
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DCalcSpillWeights.h70 /// Compute future expected spill weight of a split artifact of li
73 /// \param start The expected begining of the split artifact. Instructions
75 /// \param end The expected end of the split artifact. Instructions
77 /// \return The expected spill weight of the split artifact. Returns
84 /// artifact of li that will span between start and end slot indexes.
86 /// \param start The expected begining of the split artifact. Instructions
88 /// weight calculation of future split artifact.
89 /// \param end The expected end of the split artifact. Instructions
91 /// weight calculation of future split artifact.
/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
DReportAggregateMojo.java21 import org.apache.maven.artifact.Artifact;
108 Artifact.SCOPE_COMPILE, Artifact.SCOPE_RUNTIME, in loadExecutionData()
109 Artifact.SCOPE_PROVIDED, Artifact.SCOPE_TEST)) { in loadExecutionData()
133 Artifact.SCOPE_COMPILE, Artifact.SCOPE_RUNTIME, in createReport()
134 Artifact.SCOPE_PROVIDED)) { in createReport()
/external/protobuf/protoc-artifacts/
DREADME.md6 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
11 The version of the ``protoc`` artifact must be the same as the version of the
14 ## Artifact name
15 The name of a published ``protoc`` artifact is in the following format:
26 The following command will install the ``protoc`` artifact to your local Maven repository.
83 A 32-bit artifact can be deployed from a 64-bit host with
/external/opencensus-java/
DRELEASING.md250 --artifact=com.google.guava:guava-jdk5:23.0
251 --artifact=com.google.guava:guava:23.0 \
252 --artifact=io.grpc:grpc-all:1.9.0 \
253 --artifact=io.opencensus:opencensus-api:$MAJOR.$MINOR.$PATCH \
254 --artifact=io.opencensus:opencensus-contrib-grpc-metrics:$MAJOR.$MINOR.$PATCH \
255 --artifact=io.opencensus:opencensus-contrib-zpages:$MAJOR.$MINOR.$PATCH \
256 --artifact=io.opencensus:opencensus-exporter-stats-prometheus:$MAJOR.$MINOR.$PATCH \
257 --artifact=io.opencensus:opencensus-exporter-stats-stackdriver:$MAJOR.$MINOR.$PATCH \
258 --artifact=io.opencensus:opencensus-exporter-trace-logging:$MAJOR.$MINOR.$PATCH \
259 --artifact=io.opencensus:opencensus-exporter-trace-stackdriver:$MAJOR.$MINOR.$PATCH \
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/dependency/
DDependencyJarTest.java13 assertThat(new DependencyJar("com.group", "artifact", "1.3", null).getShortName()) in testGetShortName()
14 .isEqualTo("com.group:artifact:1.3"); in testGetShortName()
15 assertThat(new DependencyJar("com.group", "artifact", "1.3", "dll").getShortName()) in testGetShortName()
16 .isEqualTo("com.group:artifact:1.3:dll"); in testGetShortName()
/external/antlr/antlr-complete/
Dpom.xml72 <artifact>org.antlr:antlr-complete</artifact>
97 <artifact>antlr:antlr</artifact>
103 <artifact>org.antlr:stringtemplate</artifact>
/external/jarjar/
Dbuild.xml2 <project name="Jar Jar Links" default="jar" xmlns:artifact="antlib:org.apache.maven.artifact.ant">
130 <!-- sign and deploy the main artifact -->
131 <artifact:mvn>
138 </artifact:mvn>
140 <!-- sign and deploy the sources artifact -->
141 <artifact:mvn>
149 </artifact:mvn>
151 <!-- sign and deploy the javadoc artifact -->
152 <artifact:mvn>
160 </artifact:mvn>
/external/autotest/server/site_tests/platform_StageAndRecover/
Dplatform_StageAndRecover.py43 def stage_copy_recover_with(self, artifact): argument
46 @param artifact: image type - recovery_image or test_image
51 artifact=artifact)
52 logging.info('%s staged at %s' % (artifact, image_path))
/external/tensorflow/tensorflow/java/maven/tensorflow-android/
Dupdate.py31 '--version', required=True, help='Version for the artifact.')
35 help='Directory where the pom and aar artifact will be written.')
64 """Given the json build info, find the URL to the tensorflow.aar artifact."""
75 raise ValueError('Missing aar artifact: %s' % build_info)
76 return '%s/artifact/%s' % (base_url, aar_info.get('relativePath'))
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/dependency/
DMavenDependencyResolver.java11 import org.apache.maven.artifact.ant.Authentication;
12 import org.apache.maven.artifact.ant.DependenciesTask;
13 import org.apache.maven.artifact.ant.RemoteRepository;
43 …* Get an array of local artifact URLs for the given dependencies. The order of the URLs is guarant…
44 …* same as the input order of dependencies, i.e., urls[i] is the local artifact URL for dependencie…
/external/grpc-grpc/tools/package_hosting/
Dbuild-201807.xsl56 <xsl:apply-templates select="artifact[@type='protoc']">
63 <xsl:apply-templates select="artifact[@type='csharp']">
70 <xsl:apply-templates select="artifact[@type='php']">
88 <xsl:apply-templates select="artifact[@type='python']">
95 <xsl:apply-templates select="artifact[@type='ruby']">
102 <xsl:template match="artifact">
/external/dexmaker/dexmaker-mockito-inline/
Dbuild.gradle67 artifact sourcesJar
68 artifact javadocJar
74 artifact sourcesJar
75 artifact javadocJar
/external/droiddriver/
Dartifactory.gradle10 artifact "${project.buildDir}/outputs/aar/${project.name}-release.aar"
11 artifact sourcesJar
12 artifact javadocJar
/external/dexmaker/dexmaker-mockito-inline-extended/
Dbuild.gradle73 artifact sourcesJar
74 artifact javadocJar
80 artifact sourcesJar
81 artifact javadocJar
/external/grpc-grpc-java/examples/android/routeguide/app/
Dbuild.gradle29 protoc { artifact = 'com.google.protobuf:protoc:3.5.1-1' }
31 javalite { artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0" }
32 grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.16.0-SNAPSHOT' // CURRENT_GRPC_VERSION
/external/grpc-grpc-java/examples/android/helloworld/app/
Dbuild.gradle30 protoc { artifact = 'com.google.protobuf:protoc:3.5.1-1' }
32 javalite { artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0" }
33 grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.16.0-SNAPSHOT' // CURRENT_GRPC_VERSION

12345678910>>...15