Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 208 for _local (0.07 sec)

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

                        @Override
                        public List<Map<String, String>> load(final String key) throws Exception {
                            final ULocale uLocale = new ULocale(key);
                            final Locale displayLocale = uLocale.toLocale();
                            final List<Map<String, String>> langItems = new ArrayList<>(supportedLanguages.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

                }
            };
    
            assertEquals(Locale.ROOT, fessConfig.getQueryLocaleFromName(null));
            assertEquals(Locale.ROOT, fessConfig.getQueryLocaleFromName(""));
            assertEquals(Locale.ROOT, fessConfig.getQueryLocaleFromName("ja"));
            assertEquals(Locale.JAPANESE, fessConfig.getQueryLocaleFromName("test_ja"));
            assertEquals(Locale.CHINESE, fessConfig.getQueryLocaleFromName("test_zh"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

                        .status(Status.UNAUTHORIZED)
                        .result());
            }
            return super.godHandPrologue(runtime);
        }
    
        /**
         * Converts validation messages to a localized string representation for API responses.
         * Uses the request locale if available, otherwise defaults to English.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

                    throwValidationError(messages -> messages.addErrorsFailedToDeleteFile(GLOBAL, form.fileName), this::asListHtml);
                }
            }).orElse(() -> {
                throwValidationError(messages -> messages.addErrorsTargetFileDoesNotExist(GLOBAL, form.fileName), this::asListHtml);
            });
            saveInfo(messages -> messages.addSuccessDeleteFile(GLOBAL, form.fileName));
            validate(form, messages -> {}, this::asListHtml);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtStatus.java

                "The logon request failed because the trust relationship between this workstation and the primary domain failed.",
                "The account used is a Computer Account. Use your global user account or local user account to access this server.",
                "The user must change his password before he logs on the first time.", "The object was not found.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  6. README.md

    ```
    
    ## Development
    
    ### Build Commands
    ```bash
    # Compile the source code
    mvn compile
    
    # Build JAR file
    mvn package
    
    # Clean and rebuild
    mvn clean compile
    
    # Install to local repository
    mvn install
    ```
    
    ### Testing
    ```bash
    # Run all tests (JUnit 4 based)
    mvn test
    
    # Run specific test class
    mvn test -Dtest=SpecificTest
    
    # Alternative test runner
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 09:24:52 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

         * Processes collection definitions and tracks the element hierarchy.
         *
         * @param uri the namespace URI, or empty string if none
         * @param localName the local name without prefix, or empty string if namespace processing is not performed
         * @param qName the qualified name with prefix, or empty string if qualified names are not available
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/Config.java

                        uhe.printStackTrace(log);
                    }
                }
            }
            return def;
        }
    
        /**
         * Get the local host address configured for the client.
         *
         * @return the configured local InetAddress, or null if not configured
         */
        public static InetAddress getLocalHost() {
            final String addr = prp.getProperty("jcifs.smb1.smb.client.laddr");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NtStatus.java

                "The trust relationship between the primary domain and the trusted domain failed.",
                "The account used is a Computer Account. Use your global user account or local user account to access this server.",
                "The user must change his password before he logs on the first time.", "NT_STATUS_NOT_FOUND",
                "The referenced account is currently locked out and may not be logged on to.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  10. .github/workflows/maven.yml

            run: |
              mkdir -p maven-local
              if [ "${{ runner.os }}" = "Windows" ]; then
                unzip maven-dist/apache-maven-*-bin.zip -d maven-local
                # Get the name of the extracted directory
                MAVEN_DIR=$(ls maven-local)
                # Move contents up one level
                mv "maven-local/$MAVEN_DIR"/* maven-local/
                rm -r "maven-local/$MAVEN_DIR"
              else
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Aug 25 07:07:00 UTC 2025
    - 8.2K bytes
    - Viewed (0)
Back to top