Home
last modified time | relevance | path

Searched refs:modPath (Results 1 – 25 of 411) sorted by relevance

12345678910>>...17

/dports/www/grafana8/grafana-8.3.6/vendor/golang.org/x/exp/cmd/gorelease/
H A Dgorelease.go225 baseModPath = release.modPath
300 m.modPath = m.goModFile.Module.Mod.Path
428 m = moduleInfo{modPath: modPath}
528 if !hasPathPrefix(pkgPath, modPath) {
531 for pkgPath != modPath {
543 for _, pair := range zipPackages(base.modPath, base.pkgs, release.modPath, release.pkgs) {
652 if path.IsAbs(modPath) || filepath.IsAbs(modPath) {
663 return module.CheckPath(modPath)
681 versions, err := loadVersions(modPath)
720 arg := modPath + "@" + query
[all …]
H A Dreport.go69 if r.base.modPath != r.release.modPath {
70 baseVersion = r.base.modPath + "@" + baseVersion
158 _, suffix, ok := module.SplitPathVersion(r.release.modPath)
160 setNotValid("%s: could not find version suffix in module path", r.release.modPath)
172 in the module path: %s`, major, r.release.modPath)
182 if semver.Major(r.base.version) == "v0" || r.base.modPath != r.release.modPath {
215 if r.base.modPath != r.release.modPath {
248 if _, pathMajor, ok := module.SplitPathVersion(r.release.modPath); !ok {
249 panic(fmt.Sprintf("could not parse module path %q", r.release.modPath))
277 basePath := strings.TrimSuffix(r.base.modPath, r.base.modPathMajor)
[all …]
H A Dproxy_test.go50 modPath := strings.ReplaceAll(stem[:i], "_", "/")
52 versionLists[modPath] = append(versionLists[modPath], version)
54 modDir := filepath.Join(proxyDir, modPath, "@v")
115 …if err := zip.Create(zipFile, module.Version{Path: modPath, Version: version}, zipContents); err !…
125 for modPath, versions := range versionLists {
126 outPath := filepath.Join(proxyDir, modPath, "@v", "list")
/dports/misc/usd/USD-21.11/pxr/base/tf/testenv/
H A DtestTfPyInterpreter.cpp70 std::string modPath = TfPyGetModulePath("os"); in testInterpreter() local
71 if (modPath.empty()) { in testInterpreter()
75 printf("TfPyGetModulePath, module at path '%s', good.\n", modPath.c_str()); in testInterpreter()
78 modPath = TfPyGetModulePath("badmodule"); in testInterpreter()
79 if (!modPath.empty()) { in testInterpreter()
80 … printf("ERROR: TfPyGetModulePath, bad module name returned result '%s'.\n", modPath.c_str()); in testInterpreter()
/dports/math/convertall/ConvertAll/source/
H A Dunitdata.py42 modPath = os.path.abspath(sys.path[0])
43 if modPath.endswith('.zip'): # for py2exe
44 modPath = os.path.dirname(modPath)
45 pathList = [dataFilePath, os.path.join(modPath, '../data/'),
46 os.path.join(modPath, 'data/'), modPath]
H A Dconvertall.py39 modPath = os.path.abspath(sys.path[0])
40 if modPath.endswith('.zip'): # for py2exe
41 modPath = os.path.dirname(modPath)
42 path = os.path.join(modPath, translationPath)
45 path = os.path.join(modPath, '..', translationPath)
48 path = os.path.join(modPath, '..', 'i18n', translationPath)
H A Doption.py33 modPath = os.path.abspath(sys.path[0])
34 if modPath.endswith('.zip') or modPath.endswith('.exe'):
35 modPath = os.path.dirname(modPath) # for py2exe/cx_freeze
36 self.path = os.path.join(modPath, fileName)
/dports/games/colobot/colobot-colobot-gold-0.2.0-alpha/src/app/
H A Dpathman.cpp155 for (const auto &modPath : FindModsInDir(searchPath)) in FindMods() local
157 GetLogger()->Info(" * %s\n", modPath.c_str()); in FindMods()
158 mods.push_back(modPath); in FindMods()
162 for (const auto& modPath : m_mods) in FindMods() local
164 if (boost::filesystem::exists(modPath)) in FindMods()
166 GetLogger()->Info(" * %s\n", modPath.c_str()); in FindMods()
167 mods.push_back(modPath); in FindMods()
171 GetLogger()->Warn("Mod does not exist: %s\n", modPath.c_str()); in FindMods()
/dports/deskutils/treeline/TreeLine/source/
H A Dtreeline.py45 modPath = pathlib.Path(os.path.abspath(sys.path[0]))
46 if modPath.is_file():
47 modPath = modPath.parent # for frozen binary
48 path = modPath / translationPath
51 path = modPath.parent / translationPath
54 path = modPath.parent / 'i18n' / translationPath
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/util/ResourceBundle/modules/basic/
H A DBasicTest.java129 Path modPath = Paths.get(Utils.TEST_CLASSES, mod); in runBasicTest() local
130 moduleList.forEach(mn -> ModuleTestUtil.prepareModule(srcPath, modPath, in runBasicTest()
132 ModuleTestUtil.runModule(modPath.toString(), MAIN, localeList); in runBasicTest()
133 ModuleTestUtil.runModuleWithLegacyCode(modPath.toString(), MAIN, localeList); in runBasicTest()
140 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_BASIC); in RunBasicTestWithCp() local
147 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in RunBasicTestWithCp()
155 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_MODLOCAL); in runModLocalTestWithCp() local
160 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in runModLocalTestWithCp()
/dports/devel/datadraw/datadraw3.1.1/src/
H A Ddvmain.c164 char *modPath, *p; in dvStart() local
169 modPath = utCopyString(utGetEnvironmentVariable("DD_MODPATH")); in dvStart()
170 while(modPath != NULL) { in dvStart()
171 p = strchr(modPath, ':'); in dvStart()
175 dvModpathCreate(utSymCreate(modPath), false); in dvStart()
176 modPath = p; in dvStart()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/util/ResourceBundle/modules/basic/
H A DBasicTest.java129 Path modPath = Paths.get(Utils.TEST_CLASSES, mod); in runBasicTest() local
130 moduleList.forEach(mn -> ModuleTestUtil.prepareModule(srcPath, modPath, in runBasicTest()
132 ModuleTestUtil.runModule(modPath.toString(), MAIN, localeList); in runBasicTest()
139 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_BASIC); in RunBasicTestWithCp() local
146 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in RunBasicTestWithCp()
154 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_MODLOCAL); in runModLocalTestWithCp() local
159 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in runModLocalTestWithCp()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/util/ResourceBundle/modules/basic/
H A DBasicTest.java129 Path modPath = Paths.get(Utils.TEST_CLASSES, mod); in runBasicTest() local
130 moduleList.forEach(mn -> ModuleTestUtil.prepareModule(srcPath, modPath, in runBasicTest()
132 ModuleTestUtil.runModule(modPath.toString(), MAIN, localeList); in runBasicTest()
139 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_BASIC); in RunBasicTestWithCp() local
146 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in RunBasicTestWithCp()
154 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_MODLOCAL); in runModLocalTestWithCp() local
159 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in runModLocalTestWithCp()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/util/ResourceBundle/modules/basic/
H A DBasicTest.java129 Path modPath = Paths.get(Utils.TEST_CLASSES, mod); in runBasicTest() local
130 moduleList.forEach(mn -> ModuleTestUtil.prepareModule(srcPath, modPath, in runBasicTest()
132 ModuleTestUtil.runModule(modPath.toString(), MAIN, localeList); in runBasicTest()
139 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_BASIC); in RunBasicTestWithCp() local
146 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in RunBasicTestWithCp()
154 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_MODLOCAL); in runModLocalTestWithCp() local
159 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in runModLocalTestWithCp()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/util/ResourceBundle/modules/basic/
H A DBasicTest.java129 Path modPath = Paths.get(Utils.TEST_CLASSES, mod); in runBasicTest() local
130 moduleList.forEach(mn -> ModuleTestUtil.prepareModule(srcPath, modPath, in runBasicTest()
132 ModuleTestUtil.runModule(modPath.toString(), MAIN, localeList); in runBasicTest()
139 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_BASIC); in RunBasicTestWithCp() local
146 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in RunBasicTestWithCp()
154 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_MODLOCAL); in runModLocalTestWithCp() local
159 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in runModLocalTestWithCp()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/util/ResourceBundle/modules/basic/
H A DBasicTest.java129 Path modPath = Paths.get(Utils.TEST_CLASSES, mod); in runBasicTest() local
130 moduleList.forEach(mn -> ModuleTestUtil.prepareModule(srcPath, modPath, in runBasicTest()
132 ModuleTestUtil.runModule(modPath.toString(), MAIN, localeList); in runBasicTest()
139 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_BASIC); in RunBasicTestWithCp() local
146 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in RunBasicTestWithCp()
154 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_MODLOCAL); in runModLocalTestWithCp() local
159 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in runModLocalTestWithCp()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/util/ResourceBundle/modules/basic/
H A DBasicTest.java129 Path modPath = Paths.get(Utils.TEST_CLASSES, mod); in runBasicTest() local
130 moduleList.forEach(mn -> ModuleTestUtil.prepareModule(srcPath, modPath, in runBasicTest()
132 ModuleTestUtil.runModule(modPath.toString(), MAIN, localeList); in runBasicTest()
139 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_BASIC); in RunBasicTestWithCp() local
146 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in RunBasicTestWithCp()
154 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_MODLOCAL); in runModLocalTestWithCp() local
159 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in runModLocalTestWithCp()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/util/ResourceBundle/modules/basic/
H A DBasicTest.java129 Path modPath = Paths.get(Utils.TEST_CLASSES, mod); in runBasicTest() local
130 moduleList.forEach(mn -> ModuleTestUtil.prepareModule(srcPath, modPath, in runBasicTest()
132 ModuleTestUtil.runModule(modPath.toString(), MAIN, localeList); in runBasicTest()
139 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_BASIC); in RunBasicTestWithCp() local
146 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in RunBasicTestWithCp()
154 Path modPath = Paths.get(Utils.TEST_CLASSES, MODS_DIR_MODLOCAL); in runModLocalTestWithCp() local
159 ModuleTestUtil.runModuleWithCp(jarPath.toString(), modPath.toString(), in runModLocalTestWithCp()
/dports/games/0ad/0ad-0.0.23b-alpha/source/
H A Dmain.cpp507 const OsPath modPath(arg); in RunGameOrAtlas() local
508 if (!CModInstaller::IsDefaultModExtension(modPath.Extension())) in RunGameOrAtlas()
510 …debug_printf("Skipping file '%s' which does not have a mod file extension.\n", modPath.string8().c… in RunGameOrAtlas()
513 if (!FileExists(modPath)) in RunGameOrAtlas()
515 debug_printf("ERROR: The mod file '%s' does not exist!\n", modPath.string8().c_str()); in RunGameOrAtlas()
518 if (DirectoryExists(modPath)) in RunGameOrAtlas()
520 debug_printf("ERROR: The mod file '%s' is a directory!\n", modPath.string8().c_str()); in RunGameOrAtlas()
523 modsToInstall.emplace_back(std::move(modPath)); in RunGameOrAtlas()
617 for (const OsPath& modPath : modsToInstall) in RunGameOrAtlas() local
618 installer.Install(modPath, g_ScriptRuntime, true); in RunGameOrAtlas()
/dports/misc/sword/sword-1.8.1/bindings/objc/src/
H A DSwordCommentary.mm30 …NSString *modPath = [[[Configuration config] defaultModulePath] stringByAppendingFormat:@"/%@.swd"…
31 if([fm fileExistsAtPath:modPath]) {
34 ret = modPath;
37 [fm createDirectoryAtPath:modPath withIntermediateDirectories:NO attributes:nil error:NULL];
40 NSString *modsdPath = [modPath stringByAppendingPathComponent:@"mods.d"];
43 NSString *dataPath = [modPath stringByAppendingPathComponent:@"modules"];
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/go/internal/modfetch/
H A Dcoderepo.go30 modPath string member
117 modPath: path,
130 return r.modPath
137 if strings.HasPrefix(r.modPath, "gopkg.in/") && strings.HasSuffix(r.modPath, "-unstable") {
148 Path: r.modPath,
201 Path: r.modPath,
277 Path: r.modPath,
326 Path: r.modPath,
352 Path: r.modPath,
693 Path: r.modPath,
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/cmd/go/internal/modfetch/
H A Dcoderepo.go30 modPath string member
117 modPath: path,
130 return r.modPath
137 if strings.HasPrefix(r.modPath, "gopkg.in/") && strings.HasSuffix(r.modPath, "-unstable") {
148 Path: r.modPath,
201 Path: r.modPath,
277 Path: r.modPath,
326 Path: r.modPath,
352 Path: r.modPath,
693 Path: r.modPath,
[all …]
/dports/math/reduce/Reduce-svn5758-src/csl/cslbase/
H A Dstub2020.c90 char modPath[MAX_PATH]; in runResource() local
91 strcpy(modPath, pPath); in runResource()
92 char *lastsep = strrchr(modPath, '\\'); in runResource()
95 printf("Code to run %s\n", modPath); in runResource()
130 printf("Launch <%s> cmd line <%s>\n", modPath, cmd1); in runResource()
135 if(CreateProcessA(modPath, // appname to launch in runResource()
/dports/math/rpcalc/rpCalc/source/
H A Doption.py33 modPath = os.path.abspath(sys.path[0])
34 if modPath.endswith('.zip') or modPath.endswith('.exe'):
35 modPath = os.path.dirname(modPath) # for py2exe/cx_freeze
36 self.path = os.path.join(modPath, fileName)
/dports/math/reduce/Reduce-svn5758-src/winbuild64/
H A Dstub2020.c92 char modPath[MAX_PATH]; in runResource() local
93 strcpy(modPath, pPath); in runResource()
94 char *lastsep = strrchr(modPath, '\\'); in runResource()
97 printf("Code to run %s\n", modPath); in runResource()
129 printf("Launch <%s> cmd line <%s>\n", modPath, cmd1); fflush(stdout); in runResource()
133 if (CreateProcessA(modPath, // appname to launch in runResource()

12345678910>>...17