Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 807 for dana (0.02 sec)

  1. src/main/resources/fess_message_id.properties

    errors.crud_failed_to_create_instance = Gagal membuat data baru.
    errors.crud_failed_to_create_crud_table = Gagal membuat data baru. ({0})
    errors.crud_failed_to_update_crud_table=Gagal memperbarui data. ({0})
    errors.crud_failed_to_delete_crud_table=Gagal menghapus data. ({0})
    errors.crud_could_not_find_crud_table = Data {0} tidak ditemukan.
    errors.could_not_find_backup_index=Tidak dapat menemukan indeks backup.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 07 14:12:58 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  2. docs/fr/README.md

    Vous pouvez enregistrer des cibles à explorer dans l'interface d'administration sur les pages de configuration des crawlers (Web, Fichiers, Data Store), puis démarrer manuellement le Crawler sur la [page du Planificateur](https://fess.codelibs.org/15.3/admin/scheduler-guide.html).
    
    ## Migration depuis un autre fournisseur de recherche
    
    Veuillez consulter [MIGRATION.md](MIGRATION.md).
    
    ## Data Store
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Tue Nov 11 22:42:32 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_pl.properties

    success.upload_file_to_storage={0} przesłano.
    success.sso_logout=Wylogowano.
    success.update_storage_tags=Tagi dla {0} zaktualizowano.
    
    success.crud_create_crud_table = Dane utworzono.
    success.crud_update_crud_table = Dane zaktualizowano.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_tr.properties

    labels.max_access_count=Maksimum Erişim Sayısı
    labels.number_of_thread=İş Parçacığı Sayısı
    labels.interval_time=Aralık
    labels.millisec=milisaniye
    labels.permissions=İzinler
    labels.virtual_hosts=Sanal Ana Bilgisayarlar
    labels.virtual_host=Sanal Ana Bilgisayar
    labels.label_type=Etiket
    labels.file_crawling_button_create=Oluştur
    labels.file_crawling_button_create_job=Yeni İş Oluştur
    labels.web_crawling_configuration=Web Tarama
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 47K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_id.properties

    labels.crawling_info_DataCrawlExecTime=Waktu Eksekusi Perayapan (Penyimpanan Data)
    labels.crawling_info_DataCrawlStartTime=Waktu Mulai Perayapan (Penyimpanan Data)
    labels.crawling_info_DataCrawlEndTime=Waktu Selesai Perayapan (Penyimpanan Data)
    labels.crawling_info_DataIndexExecTime=Waktu Eksekusi Pengindeksan (Penyimpanan Data)
    labels.crawling_info_DataIndexSize=Ukuran Indeks (Penyimpanan Data)
    labels.webauth_configuration=Autentikasi Web
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 45.2K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ResponseDataTest.java

            data.setSessionId("session123");
            data.setRuleId("rule456");
            data.setMimeType("text/html");
            data.setCharSet("UTF-8");
            data.setContentLength(2048L);
            data.setExecutionTime(500L);
            data.setStatus(Constants.OK_STATUS);
            data.setNoFollow(false);
    
            byte[] content = "HTML content".getBytes(StandardCharsets.UTF_8);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java

            data.setContent(newContent);
            assertEquals(newContent, data.getContent());
    
            data.setContent(null);
            assertNull(data.getContent());
        }
    
        public void test_putValue() {
            // Test putValue method
            ExtractData data = new ExtractData();
    
            data.putValue("title", "Test Title");
            data.putValue("author", "John Doe");
    
            String[] titleValues = data.getValues("title");
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/pac/PacDataInputStreamTest.java

            byte[] data = new byte[8];
            long low = filetime.longValue();
            long high = filetime.shiftRight(32).longValue();
    
            // write little-endian
            data[0] = (byte) (low);
            data[1] = (byte) (low >> 8);
            data[2] = (byte) (low >> 16);
            data[3] = (byte) (low >> 24);
            data[4] = (byte) (high);
            data[5] = (byte) (high >> 8);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/compression/CompressionService.java

        /**
         * Compresses data using the specified algorithm.
         *
         * @param data the data to compress
         * @param algorithm the compression algorithm to use
         * @return the compressed data
         * @throws CIFSException if compression fails
         */
        byte[] compress(byte[] data, int algorithm) throws CIFSException;
    
        /**
         * Compresses data using the specified algorithm with offset and length.
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/ntlmssp/NtlmMessageTest.java

        }
    
        @Test
        void testReadUShort() {
            // Test readUShort with various values
            byte[] data = new byte[4];
            ByteBuffer buffer = ByteBuffer.wrap(data).order(ByteOrder.LITTLE_ENDIAN);
    
            // Test with a positive value
            buffer.putShort(0, (short) 0x1234);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top