Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ftc (0.02 sec)

  1. pkg/volume/hostpath/host_path.go

    }
    
    func (ftc *fileTypeChecker) MakeFile() error {
    	return makeFile(ftc.path)
    }
    
    func (ftc *fileTypeChecker) IsDir() bool {
    	if !ftc.Exists() {
    		return false
    	}
    	pathType, err := ftc.hu.GetFileType(ftc.path)
    	if err != nil {
    		return false
    	}
    	return string(pathType) == string(v1.HostPathDirectory)
    }
    
    func (ftc *fileTypeChecker) MakeDir() error {
    	return makeDir(ftc.path)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. pkg/volume/hostpath/host_path_test.go

    }
    
    func (ftc *fakeHostPathTypeChecker) MakeFile() error { return nil }
    func (ftc *fakeHostPathTypeChecker) MakeDir() error  { return nil }
    func (ftc *fakeHostPathTypeChecker) Exists() bool    { return ftc.exists }
    func (ftc *fakeHostPathTypeChecker) IsFile() bool    { return ftc.isFile }
    func (ftc *fakeHostPathTypeChecker) IsDir() bool     { return ftc.isDir }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.fints"/>
      <mime-type type="application/vnd.flographit">
        <glob pattern="*.gph"/>
      </mime-type>
      <mime-type type="application/vnd.fluxtime.clip">
        <glob pattern="*.ftc"/>
      </mime-type>
      <mime-type type="application/vnd.font-fontforge-sfd"/>
      <mime-type type="application/vnd.framemaker">
        <glob pattern="*.fm"/>
        <glob pattern="*.frame"/>
        <glob pattern="*.maker"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top