Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1111 - 1120 of 1,577 for configId (0.15 seconds)

  1. docs/en/docs/environment-variables.md

    // The env var no longer exists afterwards
    $ python main.py
    
    Hello World from Python
    ```
    
    </div>
    
    /// tip
    
    You can read more about it at [The Twelve-Factor App: Config](https://12factor.net/config).
    
    ///
    
    ## Types and Validation { #types-and-validation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7.9K bytes
    - Click Count (0)
  2. docs/fr/docs/environment-variables.md

    $ python main.py
    
    Hello World from Python
    ```
    
    </div>
    
    /// tip | Astuce
    
    Vous pouvez en lire davantage sur [The Twelve-Factor App : Config](https://12factor.net/config).
    
    ///
    
    ## Gérer les types et la validation { #types-and-validation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsWebAuthenticationCA.java

     */
    package org.codelibs.fess.opensearch.config.cbean.ca.bs;
    
    import org.codelibs.fess.opensearch.config.allcommon.EsAbstractConditionAggregation;
    import org.codelibs.fess.opensearch.config.allcommon.EsAbstractConditionQuery;
    import org.codelibs.fess.opensearch.config.cbean.ca.WebAuthenticationCA;
    import org.codelibs.fess.opensearch.config.cbean.cq.WebAuthenticationCQ;
    import org.codelibs.fess.opensearch.config.cbean.cq.bs.BsWebAuthenticationCQ;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 76.2K bytes
    - Click Count (0)
  4. ci/official/envs/windows_x86_2022_ml_actions

    TFCI_BAZEL_BAZELRC_ARGS="--output_user_root=C:/x"
    TFCI_BAZEL_COMMON_ARGS="--repo_env=HERMETIC_PYTHON_VERSION=$TFCI_PYTHON_VERSION --repo_env=USE_PYWRAP_RULES=True --config=windows_x86_cpu_2022"
    
    # For RBE, we explicitly set invalid paths to force the auto-configuration to fail.
    TFCI_BAZEL_VC="C:/RBE_ISOLATED_INVALID_PATH"
    TFCI_BAZEL_LLVM="C:/RBE_ISOLATED_INVALID_PATH"
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Mar 28 04:33:01 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  5. ci/official/envs/bzlmod

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Mar 17 21:30:22 GMT 2026
    - 754 bytes
    - Click Count (0)
  6. ci/official/envs/windows_x86_ml_actions

    TFCI_BAZEL_BAZELRC_ARGS="--output_user_root=C:/x"
    TFCI_BAZEL_COMMON_ARGS="--repo_env=HERMETIC_PYTHON_VERSION=$TFCI_PYTHON_VERSION --repo_env=USE_PYWRAP_RULES=True --config=windows_x86_cpu_2022"
    
    # For RBE, we explicitly set invalid paths to force the auto-configuration to fail.
    TFCI_BAZEL_VC="C:/RBE_ISOLATED_INVALID_PATH"
    TFCI_BAZEL_LLVM="C:/RBE_ISOLATED_INVALID_PATH"
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Mar 28 04:33:01 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  7. docs/bucket/replication/setup_replication.sh

    }
    EOF
    mc admin policy create dest replpolicy ./replpolicy.json
    cat ./replpolicy.json
    
    # assign this replication policy to repluser
    mc admin policy attach dest replpolicy --user=repluser
    
    # configure replication config to remote bucket at http://localhost:9000
    mc replicate add source/bucket --priority 1 --remote-bucket http://repluser:repluser123@localhost:9000/bucket \
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri May 26 05:07:25 GMT 2023
    - 2.6K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

            final String prefix = getConfigPrefix() + "." + promptType;
            final var config = ComponentUtil.getFessConfig();
    
            final String temp = config.getOrDefault(prefix + ".temperature", null);
            if (temp != null) {
                request.setTemperature(Double.parseDouble(temp));
            }
            final String maxTokens = config.getOrDefault(prefix + ".max.tokens", null);
            if (maxTokens != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  9. src/main/resources/fess_indices/fess/doc.json

        "properties": {
          "anchor": {
            "type": "keyword"
          },
          "boost": {
            "type": "float"
          },
          "click_count": {
            "type": "long"
          },
          "config_id": {
            "type": "keyword"
          },
          "important_content": {
            "type": "text",
            "analyzer": "standard_analyzer",
            "search_analyzer": "standard_search_analyzer",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.opensearch.config.cbean.CrawlingInfoCB;
    import org.codelibs.fess.opensearch.config.exbhv.CrawlingInfoBhv;
    import org.codelibs.fess.opensearch.config.exbhv.CrawlingInfoParamBhv;
    import org.codelibs.fess.opensearch.config.exentity.CrawlingInfo;
    import org.codelibs.fess.opensearch.config.exentity.CrawlingInfoParam;
    import org.codelibs.fess.util.ComponentUtil;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 19.9K bytes
    - Click Count (0)
Back to Top