- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 654 for compat (0.14 sec)
-
compat/pom.xml
<modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.maven</groupId> <artifactId>maven</artifactId> <version>4.0.0-beta-6-SNAPSHOT</version> </parent> <artifactId>maven-compat-modules</artifactId> <packaging>pom</packaging> <name>Maven Compatibility Modules</name> <modules> <module>maven-plugin-api</module> <module>maven-builder-support</module>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
compat/maven-compat/pom.xml
<groupId>org.apache.maven</groupId> <artifactId>maven</artifactId> <version>4.0.0-beta-6-SNAPSHOT</version> <relativePath>../../</relativePath> </parent> <artifactId>maven-compat</artifactId> <name>Maven Compat (deprecated)</name> <description>Deprecated Maven2 classes maintained as compatibility layer.</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
tensorflow/api_template_v1.__init__.py
elif _tf_api_dir not in __path__: __path__.append(_tf_api_dir) # Hook external TensorFlow modules. # Import compat before trying to import summary from tensorboard, so that # reexport_tf_summary can get compat from sys.modules. Only needed if using # lazy loading. _current_module.compat.v2 # pylint: disable=pointless-statement # Load tensorflow-io-gcs-filesystem if enabled
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 7.5K bytes - Viewed (0) -
cmd/main.go
// Deprecated flag, so its hidden now, existing deployments will keep working. cli.BoolFlag{ Name: "compat", Usage: "enable strict S3 compatibility by turning off certain performance optimizations", Hidden: true, }, // This flag is hidden and to be used only during certain performance testing. cli.BoolFlag{ Name: "no-compat", Usage: "disable strict S3 compatibility by turning on certain performance optimizations", Hidden: true,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 30 22:59:48 UTC 2024 - 6.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/net/InetAddressesTest.java
() -> InetAddresses.getCompatIPv4Address((Inet6Address) ip)); } ImmutableSet<String> validCompatAddresses = ImmutableSet.of("::1.2.3.4", "::102:304"); String compatStr = "1.2.3.4"; InetAddress compat = InetAddresses.forString(compatStr); for (String validCompatAddress : validCompatAddresses) { InetAddress ip = InetAddresses.forString(validCompatAddress);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 24 16:44:05 UTC 2024 - 35.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/normalization/DefaultModelNormalizer.java
} } /* * NOTE: This is primarily to keep backward-compat with Maven 2.x which did not validate that dependencies are * unique within a single POM. Upon multiple declarations, 2.x just kept the last one but retained the order of * the first occurrence. So when we're in lenient/compat mode, we have to deal with such broken POMs and mimic
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.9K bytes - Viewed (0) -
compat/maven-compat/src/site/apt/index.apt
~~ specific language governing permissions and limitations ~~ under the License. ----- Introduction ----- Hervé Boutemy ----- 2016-05-29 ----- Maven Compat Maven2 classes maintained as compatibility layer for plugins that need to keep Maven2 compatibility. Plugins should avoid these classes and be updated to use only Maven3 dependencies (and require Maven3): see
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/main/java/org/apache/maven/artifact/installer/DefaultArtifactInstaller.java
} catch (InstallationException e) { throw new ArtifactInstallationException(e.getMessage(), e); } /* * NOTE: Not used by Maven core, only here to provide backward-compat with plugins like the Install Plugin. */ if (artifact.isSnapshot()) { Snapshot snapshot = new Snapshot(); snapshot.setLocalCopy(true);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java
} } RemoteRepository remoteRepo = RepositoryUtils.toRepo(deploymentRepository); /* * NOTE: This provides backward-compat with maven-deploy-plugin:2.4 which bypasses the repository factory when * using an alternative deployment location. */ if (deploymentRepository instanceof DefaultArtifactRepository
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMetadataSource.java
import org.apache.maven.bridge.MavenRepositorySystem; import org.apache.maven.plugin.LegacySupport; import org.apache.maven.project.ProjectBuilder; /** * This realizes the metadata source via the default hint to provide backward-compat with Maven 2.x whose Plexus version * registered component descriptors twice: once keyed by role+roleHint and once keyed by role only. This effectively
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0)