- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 48 for bom (0.42 sec)
-
apache-maven/src/assembly/maven/conf/maven-user.properties
# DefaultVersionResolverRequest - Version resolution results (session/soft, less critical than artifacts) # RgavCacheKey - BOM import caching (session/soft, typically resolved once) # DefaultModelBuilderRequest - Model building operations (none, ensures fresh dynamic builds)
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 2.8K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/depmgmt/junit-0.2.xml
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.junit</groupId> <artifactId>bom</artifactId> <version>0.2</version> <packaging>pom</packaging> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 724 bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/depmgmt/distant-import.xml
<artifactId>other</artifactId> <version>0.1-SNAPSHOT</version> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>bom</artifactId> <version>0.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 768 bytes - Viewed (0) -
maven-tests/pom.xml
<maven.compiler.target>17</maven.compiler.target> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp-bom</artifactId> <version>[5.2.0-SNAPSHOT,6.0.0-SNAPSHOT)</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies>
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Jul 13 08:32:01 UTC 2025 - 1.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/ResponseBody.kt
} return bytes } /** * Returns the response as a character stream. * * If the response starts with a * [Byte Order Mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark), it is consumed and * used to determine the charset of the response bytes. * * Otherwise if the response has a `Content-Type` header that specifies a charset, that is usedRegistered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue May 27 14:51:25 UTC 2025 - 11.6K bytes - Viewed (0) -
docs/changelogs/changelog_4x.md
* New: Publish a [bill of materials (BOM)][bom] for OkHttp. Depend on this from Gradle or Maven to keep all of your OkHttp artifacts on the same version, even if they're declared via transitive dependencies. You can even omit versions when declaring other OkHttp dependencies. ```kotlin dependencies { api(platform("com.squareup.okhttp3:okhttp-bom:4.4.0"))
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Apr 17 13:25:31 UTC 2024 - 25.2K bytes - Viewed (0) -
build.gradle.kts
val testJavaVersion = System.getProperty("test.java.version", "21").toInt() /** Configure building for Java+Kotlin projects. */ subprojects { val project = this@subprojects if (project.name == "okhttp-bom") return@subprojects if (project.name == "okhttp-android") return@subprojects if (project.name == "android-test") return@subprojects if (project.name == "regression-test") return@subprojects
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Nov 01 12:18:11 UTC 2025 - 11.5K bytes - Viewed (1) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultTypeProvider.java
public Collection<DefaultType> types() { return Arrays.asList( // Maven types new DefaultType(Type.POM, Language.NONE, "pom", null, false), new DefaultType(Type.BOM, Language.NONE, "pom", null, false), new DefaultType(Type.MAVEN_PLUGIN, Language.JAVA_FAMILY, "jar", null, false, JavaPathType.CLASSES), // Java types new DefaultType(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java
ByteOrderMark.UTF_32BE, ByteOrderMark.UTF_32LE, BOM_UTF_7); if (bomIn.hasBOM()) { if (logger.isDebugEnabled()) { logger.debug("BOM: {}", bomIn.getBOMCharsetName()); } return bomIn.getBOMCharsetName(); } final int c = bomIn.read(b); if (c == -1) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 8.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java
module-a module-b (depends on module-a) module-c └─── module-c-1 module-c-2 (depends on module-b) module-d (packaging is bom) */ private static final String GROUP_ID = "unittest"; private static final String PARENT_MODULE = "module-parent"; private static final String INDEPENDENT_MODULE = "module-independent";Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 20:39:03 UTC 2025 - 28K bytes - Viewed (0)