Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BasePath (0.81 sec)

  1. src/main/resources/log4j2.xml

    				<TimeBasedTriggeringPolicy />
    				<SizeBasedTriggeringPolicy size="100 MB" />
    			</Policies>
    			<DefaultRolloverStrategy fileIndex="max" min="1"
    				max="${backup.max.history}" compressionLevel="9">
    				<Delete basePath="${log.file.basedir}">
    					<IfFileName glob="${domain.name}*.log.gz" />
    					<IfLastModified age="P${backup.max.age}D" />
    				</Delete>
    			</DefaultRolloverStrategy>
    		</RollingFile>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 20 13:17:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

    public class VirtualHostHelper {
    
        public HtmlNext getVirtualHostPath(final HtmlNext page) {
            return processVirtualHost(s -> {
                final String basePath = getVirtualHostBasePath(s, page);
                return new HtmlNext(basePath + page.getRoutingPath());
            }, page);
        }
    
        protected String getVirtualHostBasePath(final String s, final HtmlNext page) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/svn.go

    	// We'll (arbitrarily) choose the base of the remote path.
    	basePath := path.Join(path.Base(remote), subdir)
    
    	zw := zip.NewWriter(dst)
    	for _, e := range list.Entries {
    		if e.Kind != "file" {
    			continue
    		}
    
    		zf, err := zw.Create(path.Join(basePath, e.Name))
    		if err != nil {
    			return err
    		}
    
    		f, err := os.Open(filepath.Join(exportDir, e.Name))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/ExecJob.java

            final File[] jarFiles = libDir.listFiles((FilenameFilter) (dir, name) -> name.toLowerCase().endsWith(".jar"));
            if (jarFiles != null) {
                for (final File file : jarFiles) {
                    buf.append(cpSeparator);
                    buf.append(basePath);
                    buf.append(file.getName());
                }
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. dbflute_fess/dfprop/esfluteMap.dfprop

    map:{
        # base package of generated classes
        ; basePackage = org.codelibs.fess.es
    
        # base path to JSON resource, URL or relative path
        ; basePath = ../src/main/config/es
    
        # settings for indexes
        ; indexMap = map:{
            # Index: fess_user
            ; fess_user.group = map:{
                ; package = user
                ; esclientDiFile = esclient.xml
                ; esfluteDiFile = esflute_user.xml
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 6.3K bytes
    - Viewed (0)
Back to top