Home
last modified time | relevance | path

Searched refs:fileOpts (Results 1 – 12 of 12) sorted by relevance

/dports/www/gitea/gitea-1.16.5/modules/doctor/
H A Dpaths.go24 func checkConfigurationFile(logger log.Logger, autofix bool, fileOpts configurationFile) error {
25 logger.Info(`%-26s %q`, log.NewColoredValue(fileOpts.Name+":", log.Reset), fileOpts.Path)
26 fi, err := os.Stat(fileOpts.Path)
28 if os.IsNotExist(err) && autofix && fileOpts.IsDirectory {
29 if err := os.MkdirAll(fileOpts.Path, 0777); err != nil {
33 fi, err = os.Stat(fileOpts.Path)
37 if fileOpts.Required {
46 if fileOpts.IsDirectory && !fi.IsDir() {
49 } else if !fileOpts.IsDirectory && !fi.Mode().IsRegular() {
52 } else if fileOpts.Writable {
[all …]
/dports/misc/perkeep/perkeep-0.11/cmd/pk-put/
H A Dfiles.go165 up.fileOpts = &fileOptions{
250 if up.fileOpts.wantVivify() {
541 if up.fileOpts.wantVivify() {
560 if up.fileOpts.contentsOnly {
575 if !up.fileOpts.contentsOnly {
576 if up.fileOpts.exifTime {
584 if up.fileOpts.wantCapCtime() {
613 if up.fileOpts.wantVivify() {
622 if up.fileOpts.wantVivify() {
664 if up.fileOpts.wantFilePermanode() {
[all …]
H A Duploader.go43 fileOpts *fileOptions // per-file options; may be nil member
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/plugins/hls-ormolu-plugin/src/Ide/Plugin/
H A DOrmolu.hs39 fileOpts <- case df of
52 FormatText -> ret <$> fmt contents (mkConf fileOpts fullRegion)
54 ret <$> fmt contents (mkConf fileOpts (rangeRegion sl el))
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/plugins/hls-ormolu-plugin/src/Ide/Plugin/
H A DOrmolu.hs39 fileOpts <- case df of
52 FormatText -> ret <$> fmt contents (mkConf fileOpts fullRegion)
54 ret <$> fmt contents (mkConf fileOpts (rangeRegion sl el))
/dports/www/owncloud/owncloud/lib/private/
H A DStreamer.php81 $fileOpts = [
85 $this->addFileFromStream($fh, $internalDir . $filename, $filesize, $fileOpts);
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/plugins/hls-fourmolu-plugin/src/Ide/Plugin/
H A DFourmolu.hs43 fileOpts <- case hsc_dflags . hscEnv <$> ghc of
53 { cfgDynOptions = fileOpts
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/plugins/hls-fourmolu-plugin/src/Ide/Plugin/
H A DFourmolu.hs43 fileOpts <- case hsc_dflags . hscEnv <$> ghc of
53 { cfgDynOptions = fileOpts
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/tools/mbcoupler/
H A Dssn_test.cpp111 std::string normTag, fileOpts; in main() local
112 get_file_options(argc, argv, filenames, normTag, tagNames, tagValues, fileOpts, &err); in main()
138 std::cout << " File Options: " << fileOpts << std::endl; in main()
156 result = rps[i]->load_file(filenames[i], &roots[i], FileOptions(fileOpts.c_str())); in main()
654 std::string &fileOpts, in get_file_options() argument
724 fileOpts = argv[npos++]; in get_file_options()
/dports/lang/nx/nsf2.3.0/library/mongodb/
H A Dnsfmongo.c1477 mongoc_gridfs_file_opt_t fileOpts ; in NsfMongoGridFileCreate() local
1481 memset(&fileOpts, 0, sizeof(fileOpts)); in NsfMongoGridFileCreate()
1496 fileOpts.metadata = bsonMetaDataPtr; in NsfMongoGridFileCreate()
1499 fileOpts.filename = name; in NsfMongoGridFileCreate()
1500 fileOpts.content_type = contenttype; in NsfMongoGridFileCreate()
1506 gridFile = mongoc_gridfs_create_file(gridfsPtr, &fileOpts); in NsfMongoGridFileCreate()
/dports/devel/hs-ormolu/ormolu-0.4.0.0/src/Ormolu/
H A DParser.hs265 let fileOpts = GHC.getOptions flags (GHC.stringToStringBuffer str) filepath function
267 parseDynamicFilePragma flags (extraOpts <> fileOpts)
/dports/www/owncloud/owncloud/lib/private/legacy/
H A Dfiles.php153 $fileOpts = [
157 $streamer->addFileFromStream($fh, \basename($file), $fileSize, $fileOpts);