Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for sh (0.07 sec)

  1. .github/workflows/maven.yml

        - name: Build with Maven
          run: mvn -B source:jar javadoc:jar package --file pom.xml
        - name: Run Fess
          run: bash src/test/resources/before_script.sh
        - name: Run Integration Test
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 06:47:15 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. .gitattributes

    *.sh        eol=lf
    *.bat       eol=crlf
    *.cmd       eol=crlf
    *.dxf       eol=crlf
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jan 07 09:15:11 UTC 2018
    - 103 bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

                        sh.send(setInfoReq);
                    } finally {
                        // Always close the file handle - ensure createResp is not null
                        if (createResp != null && createResp.getFileId() != null) {
                            final Smb2CloseRequest closeReq = new Smb2CloseRequest(sh.getConfig(), createResp.getFileId());
                            sh.send(closeReq);
                        }
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  4. src/main/assemblies/common-bin.xml

    			<outputDirectory>fess-${project.version}/bin</outputDirectory>
    			<fileMode>0755</fileMode>
    			<directoryMode>0755</directoryMode>
    			<lineEnding>unix</lineEnding>
    			<includes>
    				<include>fess.in.sh</include>
    				<include>fess</include>
    				<include>generate-thumbnail</include>
    			</includes>
    		</fileSet>
    		<fileSet>
    			<filtered>false</filtered>
    			<outputDirectory>fess-${project.version}/bin</outputDirectory>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Mar 17 02:29:43 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. pom.xml

    					<addDefaultLicenseMatchers>true</addDefaultLicenseMatchers>
    					<excludes>
    						<exclude>pom.xml</exclude>
    						<exclude>breaking-changes.xml</exclude>
    						<exclude>*.md</exclude>
    						<exclude>*.sh</exclude>
    						<exclude>build.properties</exclude>
    						<exclude>docs/**</exclude>
    						<exclude>src/test/resources/**</exclude>
    						<exclude>**/*.idl</exclude>
    						<exclude>**/*.css</exclude>
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  6. ADDING_NEW_LANGUAGE.md

    Run the regeneration command:
    
    ```bash
    # Option 1: Using Maven from project root
    mvn dbflute:freegen
    
    # Option 2: Using DBFlute manage script
    cd dbflute_fess
    ./manage.sh    # On Linux/Mac
    manage.bat     # On Windows
    # Select option 23 (generate)
    ```
    
    This will regenerate:
    - `src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java`
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 11:36:30 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  7. pom.xml

    								</resource>
    								<resource>
    									<directory>${project.basedir}</directory>
    									<filtering>true</filtering>
    									<includes>
    										<include>bin/fess</include>
    										<include>bin/fess.in.sh</include>
    										<include>bin/generate-thumbnail</include>
    										<include>bin/plugin.xml</include>
    									</includes>
    								</resource>
    							</resources>
    						</configuration>
    					</execution>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 49.4K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java

            logger.info(content);
            assertTrue(content.contains("ใƒ†ใ‚นใƒˆ"));
        }
    
        public void test_getTika_sh() {
            final InputStream in = ResourceUtil.getResourceAsStream("extractor/test.sh");
            final ExtractData extractData = tikaExtractor.getText(in, null);
            final String content = extractData.getContent();
            CloseableUtil.closeQuietly(in);
            logger.info(content);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 30.6K bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-sas-itemstor",
    				"application/x-sas-utility",
    				"application/x-sas-putility",
    				"application/x-sas-transport",
    				"application/x-sas-backup",
    				"application/x-sc",
    				"application/x-sh",
    				"application/x-shar",
    				"application/x-shockwave-flash",
    				"application/x-silverlight-app",
    				"application/x-stuffit",
    				"application/x-stuffitx",
    				"application/x-sv4cpio",
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 50.1K bytes
    - Viewed (0)
  10. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/x-sh">
        <_comment>UNIX/LINUX Shell Script</_comment>
        <magic priority="50">
          <match value="#!/" type="string" offset="0"/>
          <match value="#!\ /" type="string" offset="0"/>
          <match value="#!\t/" type="string" offset="0"/>
          <match value="eval &quot;exec" type="string" offset="0"/>
        </magic>
        <glob pattern="*.sh"/>
        <glob pattern="*.bash"/>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Oct 16 07:46:32 UTC 2025
    - 320.2K bytes
    - Viewed (2)
Back to top