Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for splitlines (0.2 sec)

  1. ci/official/utilities/extract_resultstore_links.py

                  verbose: bool = False) -> ResultDictType:
      """Finds ResultStore links, and tries to determine their status."""
      with open(file_path, 'r', encoding='utf-8', errors='ignore') as f:
        log_lines = f.read().splitlines()
    
      result_store_links: ResultDictType = {}
      current_url = None
      for i in range(len(log_lines)):
        line = log_lines[i]
        result_store_line_match = re.search(RESULT_STORE_LINK_RE, line)
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Nov 08 17:50:27 GMT 2023
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                final VaErrorHook hook) {
            return getEntity(form).map(entity -> {
                final String[] newInputs = splitLine(form.inputs);
                validateSynonymString(action, newInputs, "inputs", hook);
                entity.setNewInputs(newInputs);
                final String[] newOutputs = splitLine(form.outputs);
                validateSynonymString(action, newOutputs, "outputs", hook);
                entity.setNewOutputs(newOutputs);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

                final VaErrorHook hook) {
            return getEntity(form).map(entity -> {
                final String[] newInputs = splitLine(form.inputs);
                validateMappingString(action, newInputs, "inputs", hook);
                entity.setNewInputs(newInputs);
                final String newOutput = form.output;
                entity.setNewOutput(newOutput);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 19.5K bytes
    - Viewed (0)
Back to top