Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for eventName (0.15 seconds)

  1. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

                    logger.warn("Failed to publish event: eventName={}, status={}", eventName, response.getHttpStatusCode());
                }
            } catch (final Exception e) {
                logger.warn("Failed to publish event: eventName={}", eventName, e);
            }
        }
    
        /**
         * Registers an event handler for the specified event name.
         *
         * @param eventName the event name to handle.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  2. .github/workflows/ci.yml

          - name: 'Integration Test'
            if: matrix.java == 11
            shell: bash
            run: util/gradle_integration_tests.sh
    
      publish_snapshot:
        name: 'Publish snapshot'
        needs: test
        if: github.event_name == 'push' && github.repository == 'google/guava'
        runs-on: ubuntu-latest
        steps:
          - name: 'Check out repository'
            uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 22:02:44 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  3. .github/workflows/translate.yml

            run: uv sync --locked --no-dev --group github-actions --group translations
          # Allow debugging with tmate
          - name: Setup tmate session
            uses: mxschmitt/action-tmate@v3
            if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
            with:
              limit-access-to-actor: true
            env:
              GITHUB_TOKEN: ${{ secrets.FASTAPI_TRANSLATIONS }}
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Mar 18 15:36:56 GMT 2026
    - 4K bytes
    - Click Count (0)
  4. .github/workflows/maven.yml

              pattern: 'cache-${{ runner.os }}*'
              path: ${{ env.MIMIR_LOCAL }}
          - name: Publish cache
            uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
            if: ${{ github.event_name != 'pull_request' && !cancelled() && !failure() }}
            with:
              path: ${{ env.MIMIR_LOCAL }}
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Mar 24 08:21:28 GMT 2026
    - 12.2K bytes
    - Click Count (0)
Back to Top