Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 51 for reauth (0.05 seconds)

  1. .github/workflows/tests.yml

              MYSQL_RANDOM_ROOT_PASSWORD: "yes"
            ports:
              - 9910:3306
            options: >-
              --health-cmd "mysqladmin ping -ugorm -pgorm"
              --health-interval 10s
              --health-start-period 10s
              --health-timeout 5s
              --health-retries 10
    
        steps:
        - name: Set up Go 1.x
          uses: actions/setup-go@v5
          with:
            go-version: ${{ matrix.go }}
    
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Mon Mar 23 10:05:06 GMT 2026
    - 9K bytes
    - Click Count (0)
  2. .github/workflows/update-test-buckets.yml

            with:
              distribution: temurin
              java-version: 17
          - name: Clone gradle/ci-health repository
            run: |
              git clone https://${{ env.BOT_GRADLE_GITHUB_TOKEN }}@github.com/gradle/ci-health.git /tmp/gradle-ci-health
          - name: Generate test class runtime JSON
            run: |
              cd /tmp/gradle-ci-health
              ./gradlew :run --args "/tmp/test-class-data.json ${GITHUB_WORKSPACE}"
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 24 22:05:21 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  3. cmd/signature-v4-parser.go

    	// to make parsing easier.
    	v4Auth = strings.ReplaceAll(v4Auth, " ", "")
    	if v4Auth == "" {
    		return sv, ErrAuthHeaderEmpty
    	}
    
    	// Verify if the header algorithm is supported or not.
    	if !strings.HasPrefix(v4Auth, signV4Algorithm) {
    		return sv, ErrSignatureVersionNotSupported
    	}
    
    	// Strip off the Algorithm prefix.
    	v4Auth = strings.TrimPrefix(v4Auth, signV4Algorithm)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Oct 10 18:57:35 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/it/search/HealthApiTests.java

    import org.junit.jupiter.api.BeforeAll;
    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    import io.restassured.RestAssured;
    
    /**
     * Integration tests for the Health API (/api/v1/health)
     */
    @Tag("it")
    public class HealthApiTests extends ITBase {
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setSystemProperty("spnego.preauth.username", form.spnegoPreauthUsername);
            if (form.spnegoPreauthPassword != null && StringUtil.isNotBlank(form.spnegoPreauthPassword.replace("*", " "))) {
                fessConfig.setSystemProperty("spnego.preauth.password", form.spnegoPreauthPassword);
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  6. docs/ja/docs/advanced/security/http-basic-auth.md

    # HTTP Basic 認証 { #http-basic-auth }
    
    最もシンプルなケースでは、HTTP Basic 認証を利用できます。
    
    HTTP Basic 認証では、アプリケーションはユーザー名とパスワードを含むヘッダーを期待します。
    
    それを受け取れない場合、HTTP 401 "Unauthorized" エラーを返します。
    
    そして、値が `Basic` のヘッダー `WWW-Authenticate` を、任意の `realm` パラメータとともに返します。
    
    これにより、ブラウザは組み込みのユーザー名とパスワード入力プロンプトを表示します。
    
    その後、そのユーザー名とパスワードを入力すると、ブラウザはそれらをヘッダーに自動的に付与して送信します。
    
    ## シンプルな HTTP Basic 認証 { #simple-http-basic-auth }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  7. docs/pt/docs/advanced/security/http-basic-auth.md

    # HTTP Basic Auth { #http-basic-auth }
    
    Para os casos mais simples, você pode utilizar o HTTP Basic Auth.
    
    No HTTP Basic Auth, a aplicação espera um cabeçalho que contém um usuário e uma senha.
    
    Caso ela não receba, ela retorna um erro HTTP 401 "Unauthorized".
    
    E retorna um cabeçalho `WWW-Authenticate` com o valor `Basic`, e um parâmetro opcional `realm`.
    
    Isso sinaliza ao navegador para mostrar o prompt integrado para um usuário e senha.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  8. docs/zh/docs/advanced/security/http-basic-auth.md

    # HTTP 基础授权 { #http-basic-auth }
    
    最简单的用例是使用 HTTP 基础授权(HTTP Basic Auth)。
    
    在 HTTP 基础授权中,应用需要请求头包含用户名与密码。
    
    如果没有接收到 HTTP 基础授权,就返回 HTTP 401 `"Unauthorized"` 错误。
    
    并返回响应头 `WWW-Authenticate`,其值为 `Basic`,以及可选的 `realm` 参数。
    
    HTTP 基础授权让浏览器显示内置的用户名与密码提示。
    
    输入用户名与密码后,浏览器会把它们自动发送至请求头。
    
    ## 简单的 HTTP 基础授权 { #simple-http-basic-auth }
    
    * 导入 `HTTPBasic` 与 `HTTPBasicCredentials`
    * 使用 `HTTPBasic` 创建**安全方案**
    * 在*路径操作*的依赖项中使用 `security`
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/advanced/security/http-basic-auth.md

    # HTTP 基本認證 { #http-basic-auth }
    
    在最簡單的情況下,你可以使用 HTTP Basic 認證。
    
    在 HTTP Basic 認證中,應用程式會期待一個包含使用者名稱與密碼的標頭。
    
    如果沒有接收到,會回傳 HTTP 401「Unauthorized」錯誤。
    
    並回傳一個 `WWW-Authenticate` 標頭,其值為 `Basic`,以及可選的 `realm` 參數。
    
    這會告訴瀏覽器顯示內建的使用者名稱與密碼提示視窗。
    
    接著,當你輸入該使用者名稱與密碼時,瀏覽器會自動在標頭中送出它們。
    
    ## 簡單的 HTTP 基本認證 { #simple-http-basic-auth }
    
    - 匯入 `HTTPBasic` 與 `HTTPBasicCredentials`。
    - 使用 `HTTPBasic` 建立一個「`security` scheme」。
    - 在你的*路徑操作*中以依賴的方式使用該 `security`。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  10. src/test/resources/before_script.sh

    ./fess-*/bin/fess > ${temp_log_file} 2>&1 &
    
    temp_json_file=/tmp/fess-log.$$
    touch ${temp_json_file}
    error_count=0
    while true ; do
      status=$(curl -w '%{http_code}\n' -s -o ${temp_json_file} "http://localhost:8080/api/v1/health")
      cat ${temp_json_file}
      if [[ x"${status}" = x200 ]] ; then
        break
      else
        error_count=$((error_count + 1))
      fi
      if [[ ${error_count} -ge 60 ]] ; then
        echo "Fess is not available."
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Nov 15 02:26:18 GMT 2025
    - 940 bytes
    - Click Count (0)
Back to Top