- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 5,890 for goversion (0.06 sec)
-
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java
final RESULT entity = createEntity(source, entityType); final DocMeta docMeta = ((EsAbstractEntity) entity).asDocMeta(); docMeta.id(hit.getId()); docMeta.version(hit.getVersion()); docMeta.seqNo(hit.getSeqNo()); docMeta.primaryTerm(hit.getPrimaryTerm()); list.add(entity); }); list.setPageSize(size);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 26.4K bytes - Viewed (0) -
docs/en/docs/tutorial/header-params.md
``` //// //// tab | Python 3.10+ non-Annotated /// tip Prefer to use the `Annotated` version if possible. /// ```Python hl_lines="1" {!> ../../docs_src/header_params/tutorial001_py310.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// tip Prefer to use the `Annotated` version if possible. /// ```Python hl_lines="3" {!> ../../docs_src/header_params/tutorial001.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
final Map<String, String> item = new HashMap<>(); item.put("type", artifact.getType().getId()); item.put("id", artifact.getName() + ":" + artifact.getVersion()); item.put("name", artifact.getName()); item.put("version", artifact.getVersion()); item.put("url", artifact.getUrl()); return item; } private Artifact getArtifactFromInstallForm(final InstallForm form) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/VersionRange.java
* Returns a string representation of this version range * @return the string representation of this version range */ @Nonnull String asString(); /** * Represents range boundary. */ interface Boundary { /** * The bounding version. */ Version getVersion(); /** * Returns {@code true} if version is included of the range. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 2.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java
// We can do this by calling isChildOfRootNode on the current node. if ((artifact.getVersion() != null) && (!node.isChildOfRootNode() || node.getArtifact().getVersion() == null)) { fireEvent(ResolutionListener.MANAGE_ARTIFACT_VERSION, listeners, node, artifact); node.getArtifact().setVersion(artifact.getVersion()); } if ((artifact.getScope() != null)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 36.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactoryRequest.java
this.artifactId = artifactId; return this; } public ArtifactFactoryRequestBuilder version(String version) { this.version = version; return this; } public ArtifactFactoryRequestBuilder classifier(String classifier) { this.classifier = classifier; return this;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 7.5K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
} public void setGoalPrefix(String goalPrefix) { this.goalPrefix = goalPrefix; } public void setVersion(String version) { this.version = version; } public String getVersion() { return version; } public void setSource(String source) { this.source = source; } public String getSource() { return source;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java
System.out.println("Artifact: " + artifact.getDependencyConflictId() + " " + artifact.getVersion() + " Optional=" + (artifact.isOptional() ? "true" : "false")); assertTrue( artifact.getVersion().equals("1.0"), "Incorrect version for " + artifact.getDependencyConflictId()); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t05/ProjectInheritanceTest.java
Artifact artifact = (Artifact) aSet; System.out.println("Artifact: " + artifact.getDependencyConflictId() + " " + artifact.getVersion() + " Scope: " + artifact.getScope()); assertTrue( artifact.getVersion().equals("1.0"), "Incorrect version for " + artifact.getDependencyConflictId()); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
String version = artifact.getBaseVersion(); String classifier = artifact.getClassifier(); String extension = artifact.getExtension(); return getArtifactPath(groupId, artifactId, version, classifier, extension); } private Path getArtifactPath( String groupId, String artifactId, String version, String classifier, String extension) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.3K bytes - Viewed (0)