Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 735 for moduleB (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/jvm/JavaModuleDetector.java

        private static final String MODULE_INFO_CLASS_FILE = "module-info.class";
        private static final String AUTOMATIC_MODULE_NAME_ATTRIBUTE = "Automatic-Module-Name";
        private static final String MULTI_RELEASE_ATTRIBUTE = "Multi-Release";
    
        private static final Pattern MODULE_INFO_CLASS_MRJAR_PATH = Pattern.compile("META-INF/versions/\\d+/module-info.class");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpec.java

                    if ((arg.equals("--module-path") || arg.equals("-p")) && (i + 1) < compileOptions.getCompilerArgs().size()) {
                        Object argValue = compileOptions.getCompilerArgs().get(++i);
                        String[] modules = argValue.toString().split(File.pathSeparator);
                        modulePaths.addAll(Arrays.asList(modules));
                    } else if (arg.startsWith("--module-path=")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    	// slash. For most modules, pathPrefix is just version.Path, but the
    	// standard-library module "std" has an empty prefix.
    	pathPrefix map[module.Version]string
    
    	// inGorootSrc caches whether modRoot is within GOROOT/src.
    	// The "std" module is special within GOROOT/src, but not otherwise.
    	inGorootSrc map[module.Version]bool
    
    	modFiles map[module.Version]*modfile.File
    
    	modContainingCWD module.Version
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceOutOfBlockModificationListener.kt

         * source files being moved or removed. Thus, all caches related to source code and source files should be invalidated.
         *
         * Library modules (including library sources) do not need to be considered modified, so any caches related to library modules and their
         * contents may be kept.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. src/README.vendor

    library packages begin with a dotless path element.
    
    The module requirements of std and cmd do not influence version
    selection in other modules. They are only considered when running
    module commands like 'go get' and 'go mod vendor' from a directory
    in GOROOT/src.
    
    Maintaining vendor directories
    ==============================
    
    Before updating vendor directories, ensure that module mode is enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/version_buildvcs_git.txt

    gitdir: ../.git/modules/gitsubmodule
    -- repo/gitsubmodule/go.mod --
    module example.com/gitsubmodule
    
    go 1.18
    -- repo/gitsubmodule/main.go --
    package main
    
    func main() {}
    -- outside/empty.txt --
    -- outside/c/go.mod --
    module example.com/c
    
    go 1.18
    -- outside/c/main.go --
    package main
    
    func main() {}
    -- outside/d/go.mod --
    module example.com/d
    
    go 1.18
    
    require example.com/b v0.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. docs/tr/docs/project-generation.md

        * Docker ile multi-stage yapı, böylece kodu derlemeniz, kaydetmeniz veya işlemeniz gerekmez.
        * Derleme zamanında Frontend testi (devre dışı bırakılabilir).
        * Mümkün olduğu kadar modüler yapılmıştır, bu nedenle kutudan çıktığı gibi çalışır, ancak Vue CLI ile yeniden oluşturabilir veya ihtiyaç duyduğunuz şekilde oluşturabilir ve istediğinizi yeniden kullanabilirsiniz.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:55:41 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // module and then dependencies sorted by module path.
    // A pattern containing "..." specifies the active modules whose
    // module paths match the pattern.
    // A query of the form path@version specifies the result of that query,
    // which is not limited to active modules.
    // See 'go help modules' for more about module queries.
    //
    // The template function "module" takes a single string argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

      }
    
     protected:
      MLIRContext context_;
      OwningOpRef<ModuleOp> module_;
      llvm::SourceMgr source_manager_;
    };
    
    TEST_F(Tf2XlaRewriterTest, LegalizesOpWithTf2xlaHloImporter) {
      TF_EXPECT_OK(LegalizeModule());
    
      int num_tuple_ops = 0;
      module_->walk([&num_tuple_ops](TupleOp tuple_op) { num_tuple_ops += 1; });
    
      EXPECT_EQ(num_tuple_ops, 0);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    // selected version of a module (or of the module containing a package),
    // whether a pattern denotes a package or module may change as updates are
    // applied (see the example in mod_get_patchmod.txt).
    //
    // There are a few other ambiguous cases to resolve, too. A package can exist in
    // two different modules at the same version: for example, the package
    // example.com/foo might be found in module example.com and also in module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top