Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,347 for module2 (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/testing/patch-module/kotlin/src/main/java/module-info.java

    module org.gradle.sample {
        exports org.gradle.sample;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 60 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization_test.cc

      std::unique_ptr<mlir::PassManager> pm_;
    };
    
    TEST_F(VerifyTfxlaLegalizationTest, RecordsStreamzFailedVerification) {
      // Using a string constant here instead of testdata to make this compatible
      // with open source.
      static constexpr char kMlirModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
        func.func @main() -> tensor<1xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_verify_work.txt

    # main modules from the build list incorrectly, leading to the workspace
    # modules being checked for correct sums. Specifically this would happen when
    # the module name sorted after the virtual 'go' version module name because
    # it could not get chopped off when we removed the MainModules.Len() modules
    # at the beginning of the build list and we would remove the go module instead.
    
    go mod verify
    
    -- go.work --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 724 bytes
    - Viewed (0)
Back to top