Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 98 for echo (0.03 seconds)

  1. .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)
  2. 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)
  3. .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)
  4. .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)
  5. .github/workflows/translate.yml

            run: uv sync --locked --no-dev --group github-actions --group translations
          - name: Export Language Codes
            id: show-langs
            run: |
              echo "langs=$(uv run ./scripts/translate.py llm-translatable-json)" >> $GITHUB_OUTPUT
              echo "commands=$(uv run ./scripts/translate.py commands-json)" >> $GITHUB_OUTPUT
            env:
              LANGUAGE: ${{ github.event.inputs.language }}
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-18 15:36
    - 4K bytes
    - Click Count (0)
  6. .github/workflows/test.yml

          UV_RESOLUTION: ${{ matrix.uv-resolution }}
          STARLETTE_SRC: ${{ matrix.starlette-src }}
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v6
          - name: Set up Python
            uses: actions/setup-python@v6
            with:
              python-version: ${{ matrix.python-version }}
          - name: Setup uv
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-23 12:36
    - 6.4K bytes
    - Click Count (0)
  7. .github/workflows/tests.yml

                then
                  echo "Creating database gorm..."
                  sql_file='/tmp/create_database.sql'
                  echo "CREATE DATABASE gorm DBCOMPATIBILITY 'PG';" > ${sql_file}
                  docker cp "${sql_file}" "${container_name}":"${sql_file}"
                  docker exec -i ${TTY_FLAG} "${container_name}" bash -c "su - omm -c 'gsql -U omm -f ${sql_file}'"
                  echo "Database initialization completed."
    Created: 2026-04-05 09:35
    - Last Modified: 2026-03-23 10:05
    - 9K bytes
    - Click Count (0)
  8. .github/workflows/build.yml

            run: |
              echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
              sudo udevadm control --reload-rules
              sudo udevadm trigger --name-match=kvm
    
          - name: Verify KVM
            run: |
              sudo apt-get install -y cpu-checker
              kvm-ok || echo "KVM is not accelerated"
              kvm-ok || exit 1
    
    Created: 2026-04-03 11:42
    - Last Modified: 2026-03-10 16:19
    - 11.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            // Test with commands containing special characters
            final List<String> specialCommands = Arrays.asList("echo \"test with quotes\"", "echo 'test with single quotes'",
                    "echo test with spaces", "echo test&with&ampersand", "echo test|with|pipe");
    
            generator.setCommandList(specialCommands);
            assertTrue("Special character commands should be settable", true);
    
    Created: 2026-03-31 13:07
    - Last Modified: 2026-03-13 23:01
    - 27.8K bytes
    - Click Count (0)
  10. .github/workflows/update-test-buckets.yml

            id: check-changes
            run: |
              cd ${GITHUB_WORKSPACE}
              if [ -n "$(git status --porcelain)" ]; then
                echo "changes=true" >> $GITHUB_OUTPUT
              else
                echo "changes=false" >> $GITHUB_OUTPUT
              fi
          - name: Create Pull Request
            if: steps.check-changes.outputs.changes == 'true'
            uses: peter-evans/create-pull-request@v8
    Created: 2026-04-01 11:36
    - Last Modified: 2026-03-24 22:05
    - 2.4K bytes
    - Click Count (0)
Back to Top