Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for English (0.19 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

        }
    
        private boolean checkFileType(final String fileName, final String[] exts) {
            if (fileName == null) {
                return false;
            }
            final String lFileName = fileName.toLowerCase(Locale.ENGLISH);
            for (final String ext : exts) {
                if (lFileName.endsWith("." + ext)) {
                    return true;
                }
            }
            return false;
        }
    
        @Execute
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  2. docs/en/docs/contributing.md

    That way, you can edit the documentation/source files and see the changes live.
    
    !!! tip
        Alternatively, you can perform the same steps that scripts does manually.
    
        Go into the language directory, for the main docs in English it's at `docs/en/`:
    
        ```console
        $ cd docs/en/
        ```
    
        Then run `mkdocs` in that directory:
    
        ```console
        $ mkdocs serve --dev-addr 8008
        ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jan 11 17:42:43 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            if (level == null || level.isEmpty()) {
                return DEFAULT_VALIDATION_LEVEL;
            }
            try {
                return ValidationReportLevel.valueOf(level.toUpperCase(Locale.ENGLISH));
            } catch (IllegalArgumentException e) {
                logger.warn(
                        "Invalid value specified for property {}: '{}'. Supported values are (case insensitive): {}",
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  4. common/config/.golangci.yml

        # it's a comma-separated list of prefixes
        local-prefixes: istio.io/
      misspell:
        # Correct spellings using locale preferences for US or UK.
        # Default is to use a neutral variety of English.
        # Setting locale to US will correct the British spelling of 'colour' to 'color'.
        locale: US
        ignore-words:
          - cancelled
      lll:
        # max line length, lines longer will be reported. Default is 120.
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 19:22:39 GMT 2024
    - 11K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                        }
                    }
                }
    
                for (final String s : fessConfig.getSearchlogRequestHeadersAsArray()) {
                    final String key = s.replace('-', '_').toLowerCase(Locale.ENGLISH);
                    Collections.list(req.getHeaders(s)).stream().forEach(v -> {
                        searchLog.addRequestHeaderValue(key, v);
                    });
                }
            });
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
  6. src/main/resources/fess_indices/_aws/fess/doc.json

                "analyzer": "greek_analyzer"
              }
            }
          },
          {
            "lang_en": {
              "match": "*_en",
              "mapping": {
                "type": "text",
                "analyzer": "english_analyzer"
              }
            }
          },
          {
            "lang_en": {
              "match": "*_en-ie",
              "mapping": {
                "type": "text",
                "analyzer": "irish_analyzer"
              }
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/_cloud/fess/doc.json

                "analyzer": "greek_analyzer"
              }
            }
          },
          {
            "lang_en": {
              "match": "*_en",
              "mapping": {
                "type": "text",
                "analyzer": "english_analyzer"
              }
            }
          },
          {
            "lang_en": {
              "match": "*_en-ie",
              "mapping": {
                "type": "text",
                "analyzer": "irish_analyzer"
              }
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  8. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            checkVersionsOrder(a, b); // Should still be true
        }
    
        @Test
        void testLocaleIndependent() {
            Locale orig = Locale.getDefault();
            Locale[] locales = {Locale.ENGLISH, new Locale("tr"), Locale.getDefault()};
            try {
                for (Locale locale : locales) {
                    Locale.setDefault(locale);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 09 06:39:47 GMT 2024
    - 14K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess/doc.json

                "analyzer": "greek_analyzer"
              }
            }
          },
          {
            "lang_en": {
              "match": "*_en",
              "mapping": {
                "type": "text",
                "analyzer": "english_analyzer"
              }
            }
          },
          {
            "lang_en": {
              "match": "*_en-ie",
              "mapping": {
                "type": "text",
                "analyzer": "irish_analyzer"
              }
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  10. schema/relationship.go

    				if matched {
    					return nil
    				}
    			}
    		}
    	}
    
    	var (
    		name     string
    		idx      = strings.Index(str, ",")
    		settings = ParseTagSetting(str, ",")
    	)
    
    	// optimize match english letters and midline
    	// The following code is basically called in for.
    	// In order to avoid the performance problems caused by repeated compilation of regular expressions,
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Mon Apr 15 03:20:20 GMT 2024
    - 22.4K bytes
    - Viewed (0)
Back to top