Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 254 for fileName (0.42 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: by Filename (asc) */
        public static final String LABELS_search_result_sort_filename_asc = "{labels.search_result_sort_filename_asc}";
    
        /** The key of the message: by Filename (desc) */
        public static final String LABELS_search_result_sort_filename_desc = "{labels.search_result_sort_filename_desc}";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 146.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_pt_BR.properties

    labels.errorName=Nome do erro
    labels.expiredTime=Data de expiração
    labels.expires=Expira
    labels.failureCountThreshold=Limite de falhas
    labels.fileConfigName=Nome da configuração de rastreamento de arquivo
    labels.fileName=Nome do arquivo
    labels.handlerName=Nome do manipulador
    labels.handlerParameter=Parâmetro
    labels.handlerScript=Script
    labels.popularWord=Palavra popular
    labels.ignoreFailureType=Tipos de falha ignorados
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_ja.properties

    labels.incrementalCrawling=最終更新日時の確認
    labels.errorCount=エラー回数
    labels.errorLog=エラーログ
    labels.errorName=エラー名
    labels.expiredTime=有効期限
    labels.expires=有効期限
    labels.failureCountThreshold=障害数
    labels.fileConfigName=ファイルクロール設定名
    labels.fileName=ファイル名
    labels.handlerName=ハンドラー名
    labels.handlerParameter=パラメーター
    labels.handlerScript=スクリプト
    labels.popularWord=人気ワード
    labels.ignoreFailureType=無視された障害種類
    labels.lastAccessTime=最終アクセス日時
    labels.notificationTo=通知先
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Nov 07 06:19:20 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

              </description>
              <type>String</type>
            </field>
            <field>
              <name>finalName</name>
              <version>4.0.0+</version>
              <description>
                The filename (excluding the extension, and with no path information) that
                the produced artifact will be called.
                The default value is {@code ${artifactId}-${version}}.
              </description>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    // For now only direct file paths are supported.
    func (z *erasureServerPools) GetRawData(ctx context.Context, volume, file string, fn func(r io.Reader, host string, disk string, filename string, info StatInfo) error) error {
    	found := 0
    	for _, s := range z.serverPools {
    		for _, set := range s.sets {
    			for _, disk := range set.getDisks() {
    				if disk == OfflineDisk {
    					continue
    				}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 89.1K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    		doneSz(len(buf))
    		res["metasize"] = strconv.Itoa(len(buf))
    		if err != nil {
    			res["err"] = err.Error()
    			return sizeSummary{}, errSkipFile
    		}
    
    		// Remove filename which is the meta file.
    		item.transformMetaDir()
    
    		fivs, err := getFileInfoVersions(buf, item.bucket, item.objectPath(), false)
    		metaDataPoolPut(buf)
    		if err != nil {
    			res["err"] = err.Error()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jun 13 11:33:47 UTC 2025
    - 91.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/pac/PacLogonInfoTest.java

        }
    
        @Test
        @DisplayName("Test date conversion from FILETIME")
        void testFiletimeConversion() throws Exception {
            // Test the FILETIME conversion logic
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            DataOutputStream dos = new DataOutputStream(baos);
    
            // Write a known FILETIME value
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/NotifyResponseTest.java

            assertEquals(FileNotifyInformation.FILE_ACTION_RENAMED_OLD_NAME, result.get(3).getAction());
            assertEquals(FileNotifyInformation.FILE_ACTION_RENAMED_NEW_NAME, result.get(4).getAction());
    
            // Verify all filenames are preserved
            assertEquals("added.txt", result.get(0).getFileName());
            assertEquals("removed.txt", result.get(1).getFileName());
            assertEquals("modified.txt", result.get(2).getFileName());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/util/SMBUtil.java

            dst[++dstIndex] = (byte) (val >>= 8);
            dst[++dstIndex] = (byte) (val >>= 8);
            dst[++dstIndex] = (byte) (val >> 8);
        }
    
        /**
         * Reads a Windows FILETIME value and converts it to Java time in milliseconds
         * @param src the source byte array
         * @param srcIndex the starting index in the source array
         * @return the time value in milliseconds since January 1, 1970 UTC
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/pac/PacDataInputStreamTest.java

            long time = System.currentTimeMillis();
            BigInteger filetime = BigInteger.valueOf(time)
                    .add(BigInteger.valueOf(SmbConstants.MILLISECONDS_BETWEEN_1970_AND_1601))
                    .multiply(BigInteger.valueOf(10000L));
    
            byte[] data = new byte[8];
            long low = filetime.longValue();
            long high = filetime.shiftRight(32).longValue();
    
            // write little-endian
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top