- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 9,701 for Versions (0.12 sec)
-
NOTICE
-------------------------------------------------------------------------------- https://fess.codelibs.org/ Copyright 2018 CodeLibs Project. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jan 15 23:53:08 UTC 2020 - 2.2K bytes - Viewed (0) -
samples/slack/src/main/java/okhttp3/slack/OAuthSessionFactory.java
/** * Runs a MockWebServer on localhost and uses it as the backend to receive an OAuth session. * * <p>Clients should call {@link #start}, {@link #newAuthorizeUrl} and {@link #close} in that order. * Clients may request multiple sessions. */ public final class OAuthSessionFactory extends Dispatcher implements Closeable { private final SecureRandom secureRandom = new SecureRandom(); private final SlackApi slackApi;
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Aug 12 07:26:27 UTC 2021 - 3.8K bytes - Viewed (0) -
cmd/erasure-metadata.go
} // TierFreeVersionID returns the free-version's version id. func (fi *FileInfo) TierFreeVersionID() string { return fi.Metadata[ReservedMetadataPrefixLower+tierFVID] } // SetTierFreeVersion sets fi as a free-version. This method is used by // lower layers to indicate a free-version. func (fi *FileInfo) SetTierFreeVersion() { if fi.Metadata == nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 21.3K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/projects/scope/project-with-scoped-dependencies.xml
<name>Maven</name> <version>1.0-beta-9</version> <dependencies> <dependency> <groupId>maven-test</groupId> <artifactId>scope-default</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>scope-test</artifactId> <version>1.0</version> <scope>test</scope> </dependency>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java
*/ public UnresolvableModelException(String message, String groupId, String artifactId, String version) { super(message); this.groupId = (groupId != null) ? groupId : ""; this.artifactId = (artifactId != null) ? artifactId : ""; this.version = (version != null) ? version : ""; } /** * Creates a new exception with specified cause
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t05/p0/p1/pom.xml
<version>1.0</version> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>t05-d</artifactId> <version>1.0</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>maven-test</groupId> <artifactId>t05-a</artifactId> <version>1.0</version> <scope>runtime</scope>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t07/p0/p1/pom.xml
<project> <parent> <artifactId>p0</artifactId> <groupId>maven-t07</groupId> <version>1.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>maven-t07</groupId> <artifactId>p1</artifactId> <packaging>pom</packaging> <name>p1</name> <version>1.0</version> <scm> <url>scm-url</url> </scm> <dependencyManagement> <dependencies> <dependency>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t08/p0/pom.xml
<version>1.1</version> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>t08-c</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>t08-d</artifactId> <version>1.2</version> <scope>test</scope> <optional>false</optional> </dependency>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 992 bytes - Viewed (0) -
.github/workflows/build.yml
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Aug 17 10:05:29 UTC 2024 - 17.2K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java
return Artifact.VERSION_FILE_PATTERN.matcher(version).matches(); } } return false; } public static String toSnapshotVersion(String version) { notBlank(version, "version can neither be null, empty nor blank"); int lastHyphen = version.lastIndexOf('-'); if (lastHyphen > 0) { int prevHyphen = version.lastIndexOf('-', lastHyphen - 1);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0)