Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for bom (0.03 sec)

  1. apache-maven/pom.xml

            <artifactId>bom-builder3</artifactId>
            <version>1.3.1</version>
            <executions>
              <execution>
                <id>skinny-bom</id>
                <goals>
                  <goal>build-bom</goal>
                </goals>
                <configuration>
                  <bomClassifier>skinny</bomClassifier>
                  <bomName>Maven Dependencies Skinny BOM</bomName>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Nov 10 03:14:05 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

            String packaging = model.getPackaging();
            String originalPackaging = project.getOriginalModel().getPackaging();
    
            // Check if this is a BOM (original packaging is "bom")
            boolean isBom = BOM_PACKAGING.equals(originalPackaging);
    
            // Check if mixins are present without flattening enabled
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Nov 27 07:40:26 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

            final byte[] xmlBytes = xml.getBytes();
            final byte[] dataWithBOM = new byte[bom.length + xmlBytes.length];
            System.arraycopy(bom, 0, dataWithBOM, 0, bom.length);
            System.arraycopy(xmlBytes, 0, dataWithBOM, bom.length, xmlBytes.length);
    
            final InputStream in = new ByteArrayInputStream(dataWithBOM);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

            for (MavenProject p : projectsInRequestScope) {
                if ("bom".equals(p.getPackaging())) {
                    LOGGER.info(
                            "The packaging attribute of the '{}' project is configured as 'bom' and changed to 'pom'",
                            p.getName());
                    p.setPackaging("pom");
                }
            }
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 11 16:38:19 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  5. 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 used
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue May 27 14:51:25 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. docs/pt/docs/async.md

    <img src="/img/async/concurrent-burgers/concurrent-burgers-04.png" class="illustration">
    
    Enquanto você espera, você vai com seu _crush_ e pega uma mesa, senta e conversa com seu _crush_ por um bom tempo (já que seus hambúrgueres são muito saborosos, e leva um tempo para serem preparados).
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  10. CLAUDE.md

    **RobotsTxtHelper**: RFC 9309 parsing, user-agent matching, crawl-delay, sitemaps
    **SitemapsHelper**: Sitemap XML parsing, index handling
    **MimeTypeHelper**: MIME detection via Tika
    **EncodingHelper**: Charset detection with BOM
    **UrlConvertHelper**: URL normalization
    
    ---
    
    ## Development Workflow
    
    ### Build Commands
    
    ```bash
    mvn clean install              # Build all
    mvn clean install -DskipTests  # Skip tests
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 28 17:31:34 UTC 2025
    - 10.7K bytes
    - Viewed (0)
Back to top