Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for Pipes (0.02 seconds)

  1. apache-maven/src/assembly/maven/bin/JvmConfigParser.java

    import java.nio.file.Paths;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Parses .mvn/jvm.config file for Windows batch/Unix shell scripts.
     * This avoids the complexity of parsing special characters (pipes, quotes, etc.) in scripts.
     *
     * Usage: java JvmConfigParser.java <jvm.config-path> <maven-project-basedir> [output-file]
     *
     * If output-file is provided, writes result to that file (avoids Windows file locking issues).
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Dec 10 16:40:06 GMT 2025
    - 6.4K bytes
    - Click Count (0)
  2. apache-maven/src/assembly/maven/bin/mvn

        fi
      done
      echo "$basedir"
    )
    }
    
    # concatenates all lines of a file and replaces variables
    # Uses Java-based parser to handle all special characters correctly
    # This avoids shell parsing issues with pipes, quotes, @, and other special characters
    # and ensures POSIX compliance (no xargs -0, awk, or complex sed needed)
    # Set MAVEN_DEBUG_SCRIPT=1 to enable debug logging
    concat_lines() {
      if [ -f "$1" ]; then
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Dec 10 16:40:06 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  3. apache-maven/src/assembly/maven/bin/mvn.cmd

    if not exist "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadJvmConfig
    
    rem Use Java source-launch mode (JDK 11+) to parse jvm.config
    rem This avoids batch script parsing issues with special characters (pipes, quotes, @, etc.)
    rem Use temp file approach with cmd /c to ensure proper file handle release
    
    set "JVM_CONFIG_TEMP=%TEMP%\mvn-jvm-config-%RANDOM%-%RANDOM%.txt"
    
    rem Debug logging (set MAVEN_DEBUG_SCRIPT=1 to enable)
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Dec 10 16:40:06 GMT 2025
    - 10.7K bytes
    - Click Count (3)
  4. android/guava/src/com/google/common/io/Files.java

        if (file1 == file2 || file1.equals(file2)) {
          return true;
        }
    
        /*
         * Some operating systems may return zero as the length for files denoting system-dependent
         * entities such as devices or pipes, in which case we must fall back on comparing the bytes
         * directly.
         */
        long len1 = file1.length();
        long len2 = file2.length();
        if (len1 != 0 && len2 != 0 && len1 != len2) {
          return false;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jan 05 22:13:21 GMT 2026
    - 32.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/curl/io/IOIntegrationTest.java

        @Test
        public void test_UrlWithSpecialCharacters_ThroughRealConnectPath() throws Exception {
            // ## Arrange ##
            // URLs with special characters (spaces, curly braces, pipes) must be accepted
            // by the real connect() path using new URL()
            String[] specialUrls = { "http://localhost:9200/{index}/_search", "http://example.com/path?q=a|b",
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Sat Mar 21 12:00:34 GMT 2026
    - 44.1K bytes
    - Click Count (0)
Back to Top