Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 273 for module$ (0.13 sec)

  1. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    # default preserve enough checksums for the module to be used by Go 1.16.
    #
    # We don't have a copy of Go 1.16 handy, but we can simulate it by editing the
    # 'go' version in the go.mod file to 1.16, without actually updating the
    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

            _ * module.classpath >> DefaultClassPath.of(new File("$name-runtime"))
            _ * module.implementationClasspath >> DefaultClassPath.of(new File("$name-runtime"))
            _ * module.allRequiredModules >> (([module] + (requiredModules as List)) as LinkedHashSet)
            _ * module.allRequiredModulesClasspath >> module.allRequiredModules.collect { it.classpath }.inject(ClassPath.EMPTY) { r, i -> r + i }
            return module
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    # default preserve enough checksums for the module to be used by Go 1.16.
    #
    # We don't have a copy of Go 1.16 handy, but we can simulate it by editing the
    # 'go' version in the go.mod file to 1.16, without actually updating the
    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/resolve/extensions/KtResolveExtensionTestSupport.kt

                check(Directives.WITH_RESOLVE_EXTENSION in moduleStructure.allDirectives) {
                    "configureResolveExtensions() was called, but no modules specify WITH_RESOLVE_EXTENSION."
                }
    
                return TestModuleStructureImpl(
                    moduleStructure.modules.map { it.transformAndRegisterResolveExtension() },
                    moduleStructure.originalTestDataFiles,
                )
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

            module.contentRoots[0].rootDirectory == projectDir
            module.parent instanceof IdeaProject
            module.parent == project
            module.parent == module.project
            module.children.empty
            module.description == null
    
            !module.compilerOutput.inheritOutputDirs
            module.compilerOutput.outputDir == file('someDir')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

         *
         *  - The name of the module is being changed.
         *  - The module's content roots are being changed, such as adding another source folder to a source module.
         *  - If module A depends on module B and module B is being removed, in addition to the removal event for module B, module A also
         *    receives an update event.
         */
        UPDATE,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         * This method does not handle the patch-module paths, because the patches
         * depend on which modules have been previously added on the module-paths.
         *
         * <p>If the dependency can be a constituent of both the class-path and the module-path,
         * then the path type is determined by checking if the dependency is modular.</p>
         *
         * @param types types of path where a dependency can be placed
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo_lib.cc

    absl::StatusOr<std::string> ModuleToBytecode(ModuleOp module) {
      std::string bytecode;
      llvm::raw_string_ostream os(bytecode);
      mlir::BytecodeWriterConfig config;
      if (mlir::failed(mlir::writeBytecodeToFile(module, os, config))) {
        return absl::InvalidArgumentError("mlir::writeBytecodeToFile failed");
      }
      return bytecode;
    }
    
    absl::StatusOr<std::string> ExportModule(ModuleOp module) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/EclipseModelCompositeBuildIncludeCycleCrossVersionSpec.groovy

            settingsFile << """
                rootProject.name = 'module-root'
                includeBuild('module-a')
                includeBuild('module-c')
            """
            file('module-a').mkdir()
            file('module-b').mkdir()
            file('module-c').mkdir()
            file('module-a/settings.gradle') << """
                includeBuild('../module-b')
            """
            file('module-b/settings.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work.txt

    # Test that we don't run into "newRequirements called with unsorted roots"
    # panic with unsorted main modules.
    cp go.work.backwards go.work
    go work use # update go version
    go run example.com/d
    
    # Test that command-line-arguments work inside and outside modules.
    # This exercises the code that determines which module command-line-arguments
    # belongs to.
    go list ./b/main.go
    env GOWORK=off
    go build -n -o foo foo.go
    env GOWORK=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top