Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 130 for echo (0.02 seconds)

  1. src/main/assemblies/files/generate-thumbnail

    output_file=$3
    mimetype=${4:-}
    image_size=100x100
    target_file=$(echo "$url" | sed -e "s#^file:/*#/#g")
    
    check_command() {
      cmd=$1
      cmd_path=$(command -v "${cmd}")
      if [[ ! -e "${cmd_path}" ]] ; then
        echo "${cmd} does not exist."
        exit 1
      fi
    }
    
    # Get ImageMagick command (magick for v7, convert for v6)
    get_imagemagick_cmd() {
      if command -v magick >/dev/null 2>&1; then
        echo "magick"
    Created: 2026-03-31 13:07
    - Last Modified: 2025-12-04 08:02
    - 3.9K bytes
    - Click Count (0)
  2. lib/time/update.bash

    fi
    
    if [ "$1" = "-work" ]; then
    	echo Left workspace behind in work/.
    	shift
    else
    	rm -rf work
    fi
    
    if ! $modified; then
    	echo No updates needed.
    	exit 0
    fi
    
    echo Updated for $CODE/$DATA: $files
    
    commitmsg="lib/time: update to $CODE/$DATA
    
    Commit generated by update.bash.
    
    For #22487.
    "
    
    if [ "$1" = "-commit" ]; then
    	echo "Creating commit. Run 'git reset HEAD^' to undo commit."
    Created: 2026-04-07 11:13
    - Last Modified: 2025-12-11 16:47
    - 2.1K bytes
    - Click Count (0)
  3. src/test/resources/thumbnail/test_generate_thumbnail.sh

    else
        echo -e "${RED}FAILED${NC}"
        ((TESTS_FAILED++))
    fi
    
    echo ""
    echo "=========================================="
    echo "Test Summary"
    echo "=========================================="
    echo -e "Passed: ${GREEN}${TESTS_PASSED}${NC}"
    echo -e "Failed: ${RED}${TESTS_FAILED}${NC}"
    echo ""
    
    if [[ ${TESTS_FAILED} -eq 0 ]]; then
        echo -e "${GREEN}All tests passed!${NC}"
        exit 0
    else
    Created: 2026-03-31 13:07
    - Last Modified: 2025-12-04 08:02
    - 7.9K bytes
    - Click Count (0)
  4. .github/workflows/smokeshow.yml

          - name: Upload coverage to Smokeshow
            run: |
              for i in 1 2 3 4 5; do
                if uv run smokeshow upload htmlcov; then
                    echo "Smokeshow upload success!"
                    break
                fi
                echo "Smokeshow upload error, sleep 1 sec and try again."
                sleep 1
              done
            env:
              SMOKESHOW_GITHUB_STATUS_DESCRIPTION: Coverage {coverage-percentage}
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-03 00:12
    - 1.6K bytes
    - Click Count (0)
  5. ci/official/containers/ml_build/Dockerfile

    COPY ${NVIDIA_PACKAGES_FILE} /nvidia.packages.txt
    
    RUN if [ "${INSTALL_NVIDIA_PACKAGES}" = "true" ]; then \
          echo "Installing Nvidia packages"; \
          /setup.sources.cudnn.sh && /setup.packages.sh /nvidia.packages.txt; \
        else \
          echo "Nvidia packages are not installed"; \
        fi
    
    # Setup links for TensorFlow to compile.
    # Referenced in devel.usertools/*.bazelrc.
    Created: 2026-04-07 12:39
    - Last Modified: 2026-03-20 15:35
    - 4.5K bytes
    - Click Count (0)
  6. apache-maven/src/assembly/maven/bin/mvn

        if [ -n "$MAVEN_DEBUG_SCRIPT" ]; then
          echo "[DEBUG] JvmConfigParser exit code: $parser_exit" >&2
          echo "[DEBUG] JvmConfigParser output: $parser_output" >&2
        fi
    
        if [ $parser_exit -ne 0 ]; then
          # Parser failed - print comprehensive error information
          echo "ERROR: JvmConfigParser failed with exit code $parser_exit" >&2
          echo "  jvm.config path: $1" >&2
          echo "  Maven basedir: $MAVEN_PROJECTBASEDIR" >&2
    Created: 2026-04-05 03:35
    - Last Modified: 2025-12-10 16:40
    - 9.2K bytes
    - Click Count (0)
  7. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

                    }
                    scriptContent =
                        """
                        echo "marking this build as successful because the retry build succeeded"
                        echo "##teamcity[buildStatus status='SUCCESS']"
                        echo "##teamcity[addBuildTag 'BuildRetrySuccess']"
                        """.trimIndent()
                }
            }
        }
    }
    
    Created: 2026-04-01 11:36
    - Last Modified: 2026-03-13 05:03
    - 8.5K bytes
    - Click Count (0)
  8. apache-maven/src/assembly/maven/bin/mvn.cmd

    rem Debug logging (set MAVEN_DEBUG_SCRIPT=1 to enable)
    if defined MAVEN_DEBUG_SCRIPT (
      echo [DEBUG] Found .mvn\jvm.config file at: %MAVEN_PROJECTBASEDIR%\.mvn\jvm.config
      echo [DEBUG] Using temp file: %JVM_CONFIG_TEMP%
      echo [DEBUG] Running JvmConfigParser with Java: %JAVACMD%
    Created: 2026-04-05 03:35
    - Last Modified: 2025-12-10 16:40
    - 10.7K bytes
    - Click Count (3)
  9. .github/workflows/cleanup-stale-performance-data.yml

              echo "DB_HOST=$(echo ${PERFORMANCE_DB_URL} | cut -d/ -f3 | cut -d: -f1)" >> $GITHUB_ENV
          
          - name: Clean up stale data and verify results
            run: |
              echo "Cleaning up stale data from both databases..."
              docker run --rm mysql:latest mysql \
    Created: 2026-04-01 11:36
    - Last Modified: 2026-03-24 22:05
    - 2.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java

                assertNotNull(jobProcess1);
                assertNotNull(jobProcess2);
                // Since echo command completes quickly, processes might already be finished
                // So we just verify that processes were created without errors
    
                Set<String> sessionIds = processHelper.getRunningSessionIdSet();
                // Since echo commands complete quickly, we may not catch them running
                // Just verify no exceptions occurred
    Created: 2026-03-31 13:07
    - Last Modified: 2026-01-14 14:29
    - 16K bytes
    - Click Count (0)
Back to Top