Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for local (0.17 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         */
        boolean isDevelopmentHere();
    
        /**
         * Get the value for the key 'environment.title'. <br>
         * The value is, e.g. Local Development <br>
         * comment: The title of environment (e.g. local or integration or production)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getEnvironmentTitle();
    
        /**
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtStatus.java

            "The specified domain did not exist.", "The directory name is invalid.", "Access is denied.",
            "The format of the specified computer name is invalid.", "The pipe has been ended.", "The specified local group does not exist.",
            "Logon failure: the user has not been granted the requested logon type at this computer.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            this.addressCache.put(this.unknownName, new CacheEntry(this.unknownName, this.unknownAddress, SmbConstants.FOREVER));
    
            /*
             * Determine the InetAddress of the local interface
             * if one was not specified.
             */
            InetAddress localInetAddress = tc.getConfig().getNetbiosLocalAddress();
            if ( localInetAddress == null ) {
                try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type2Message.java

        }
    
    
        /**
         * Returns the local security context.
         *
         * @return A <code>byte[]</code> containing the local security
         *         context. This is used by the client to negotiate local
         *         authentication.
         */
        public byte[] getContext () {
            return this.context;
        }
    
    
        /**
         * Sets the local security context. This is used by the client
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_ja.properties

    labels.plugin_type=種別
    labels.plugin_name=名前
    labels.plugin_version=バージョン
    labels.plugin_delete=削除
    labels.plugin_install=インストール
    labels.plugin_install_title=プラグインのインストール
    labels.plugin_jar_file=Jarファイル
    labels.plugin_local_install=ローカル
    labels.plugin_remote_install=リモート
    labels.crud_button_install=インストール
    labels.storage_configuration=ストレージ
    labels.storage_name=名前
    labels.storage_size=サイズ
    labels.storage_last_modified=最終更新日時
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  6. 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"));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NbtAddress.java

             */
    
            ADDRESS_CACHE.put( UNKNOWN_NAME, new CacheEntry( UNKNOWN_NAME, UNKNOWN_ADDRESS, FOREVER ));
    
            /* Determine the InetAddress of the local interface
             * if one was not specified.
             */
            localInetAddress = CLIENT.laddr;
            if( localInetAddress == null ) {
                try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            Locale locale = ComponentUtil.getRequestManager().getUserLocale();
            if (locale == null) {
                locale = Locale.ENGLISH;
            }
            String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldUrl(), String.class);
            if (url == null) {
                url = ComponentUtil.getMessageManager().getMessage(locale, "labels.search_unknown");
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  9. src/main/java/org/codelibs/fess/helper/QueryHelper.java

                final String query) {
            userBean.map(user -> {
                if (user.hasRoles(ComponentUtil.getFessConfig().getAuthenticationAdminRolesAsArray())) {
                    return Constants.SEARCH_PREFERENCE_LOCAL;
                }
                return user.getUserId();
            }).ifPresent(p -> searchRequestBuilder.setPreference(p)).orElse(() -> LaRequestUtil.getOptionalRequest().map(r -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/EnumTest.java

        public static Collection<Object> configs () {
            return getConfigs("smb1", "noUnicode", "forceUnicode", "noNTStatus", "noNTSmbs", "smb2", "smb30", "smb31");
        }
    
    
        @Ignore ( "This causes a connection to whatever local master browser is available, config may be incompatible with it" )
        @Test
        public void testBrowse () throws MalformedURLException, CIFSException {
            CIFSContext ctx = withAnonymousCredentials();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
Back to top