Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,190 for ModuleC (0.14 sec)

  1. platforms/documentation/docs/src/samples/templates/java-module-info-for-list-library/src/main/java/module-info.java

    module org.gradle.sample.list {
        exports org.gradle.sample.list;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 70 bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/vendor.go

    	vendorMeta      map[module.Version]vendorMetadata
    )
    
    type vendorMetadata struct {
    	Explicit    bool
    	Replacement module.Version
    	GoVersion   string
    }
    
    // readVendorList reads the list of vendored modules from vendor/modules.txt.
    func readVendorList(vendorDir string) {
    	vendorOnce.Do(func() {
    		vendorList = nil
    		vendorPkgModule = make(map[string]module.Version)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/help.go

    var HelpModules = &base.Command{
    	UsageLine: "modules",
    	Short:     "modules, module versions, and more",
    	Long: `
    Modules are how Go manages dependencies.
    
    A module is a collection of packages that are released, versioned, and
    distributed together. Modules may be downloaded directly from version control
    repositories or from module proxy servers.
    
    For a series of tutorials on modules, see
    https://golang.org/doc/tutorial/create-module.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 30 17:07:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/java/modules-multi-project/README.adoc

    Java Modules are a feature of Java itself, available since Java 9, that allows for better encapsulation.
    
    In Gradle, each _source set_ containing Java sources can be turned into a module by adding a `module-info.java` file.
    Typically, in a project with Java Modules like this one, the _main_ source set of a subproject represents a module.
    
    ```
    src
    └── main
        └── java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_module_not_in_go_work.txt

    stderr 'directory a[\\/]c is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use a'
    
    cd a/c
    ! go run .
    stderr 'current directory is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use \.\.'
    
    cd ../..
    ! go run .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/java-junit5-module-info-for-application/src/integrationTest/java/module-info.java

    open module org.gradle.sample.integtest.app {
        requires org.gradle.sample.app;
        requires org.junit.jupiter.api;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 120 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-library/module-disabled/groovy/src/main/java/module-info.java

    module org.gradle.sample {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-library/module/groovy/src/main/java/module-info.java

    module org.gradle.sample {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java-library/module/kotlin/src/main/java/module-info.java

    module org.gradle.sample.lib {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 212 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/application/kotlin/src/main/java/module-info.java

    module org.gradle.sample.app {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
Back to top