Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for actuel (0.63 sec)

  1. src/main/resources/fess_label_fr.properties

    labels.user_uidNumber	=	uidNumber
    labels.uidNumber	=	uidNumber
    labels.user_gidNumber	=	gidNumber
    labels.group_gidNumber	=	gidNumber
    labels.gidNumber	=	gidNumber
    labels.user_homeDirectory	=	Répertoire d'accueil
    labels.homeDirectory	=	Répertoire d'accueil
    labels.upgrade_title_configuration	=	Améliorer
    labels.upgrade_data_migration	=	Migration de données
    labels.upgrade_reindex	=	Réindexer
    labels.upgrade_start_button	=	Commencer
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

                     * exporting the volumes, not the one that we will actually
                     * end up performing IO with. If the server hosting the
                     * actual files has a smaller maxBufSize this could be
                     * incorrect. To handle this properly it is necessary
                     * to redirect the tree to the target server first before
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  3. src/main/resources/fess_message_fr.properties

    errors.failed_to_send_testmail=Échec de l'envoi du courrier de test.
    errors.could_not_find_backup_index=Impossible de trouver l'index pour la sauvegarde.
    errors.no_user_for_changing_password=Le mot de passe actuel est incorrect.
    errors.failed_to_change_password    = Échec de la modification de votre mot de passe.
    errors.unknown_version_for_upgrade  = Informations sur la version inconnue.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

            final long actual = e.getActualSize();
            final long permitted = e.getPermittedSize();
            final String msg = "Exceeded size of the multipart request: actual=" + actual + " permitted=" + permitted;
            request.setAttribute(MAX_LENGTH_EXCEEDED_KEY, new MultipartExceededException(msg, actual, permitted, e));
            try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            List<String> expected;
            List<String> actual;
    
            value = "フェス";
            expected = Arrays.asList("フェス");
            actual = Arrays.asList(KuromojiCSVUtil.parse(value));
            assertThat(actual, is(expected));
    
            value = "フェス,Fess";
            expected = Arrays.asList("フェス", "Fess");
            actual = Arrays.asList(KuromojiCSVUtil.parse(value));
            assertThat(actual, is(expected));
    
            value = "Fess,フェス";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            assertEquals("TestAgent", fessConfig.getUserAgentName());
        }
    
        private void assertArrays(final String[] expected, final String[] actual) {
            Arrays.sort(expected);
            Arrays.sort(actual);
            assertEquals(String.join(",", expected), String.join(",", actual));
        }
    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/test/java/org/codelibs/fess/util/DocMapTest.java

            value.put(keys.get(2), "ja");
            value.put(keys.get(3), "str");
            docMap = new DocMap(value);
            assertFalse(docMap.isEmpty());
    
            Set<Map.Entry<String, Object>> actual = docMap.entrySet();
            assertTrue(actual.size() == keys.size());
            docMap.clear();
    
            assertTrue(docMap.isEmpty());
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Configuration.java

    
        /**
         * Enforce secure negotiation
         * 
         * Property <tt>jcifs.smb.client.requireSecureNegotiate</tt> (boolean, default true)
         * 
         * This does not provide any actual downgrade protection if SMB1 is allowed.
         * 
         * It will also break connections with SMB2 servers that do not properly sign error responses.
         * 
         * @return whether to enforce the use of secure negotiation.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

                    throw new SmbException("Invalid operation for workgroups, servers, or shares");
                }
    
                if ( !sh.isSameTree(th) ) {
                    // trigger requests to resolve the actual target
                    exists();
                    dest.exists();
    
                    if ( !Objects.equals(getServerWithDfs(), dest.getServerWithDfs()) || !Objects.equals(getShare(), dest.getShare()) ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top