Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 273 for module$ (0.15 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

        /**
         * If the module-path contains at least one filename-based auto-module, prepares a warning message.
         * The module path is the collection of dependencies associated to {@link JavaPathType#MODULES}.
         * It is caller's responsibility to send the message to a logger.
         *
         * @return warning message if at least one filename-based auto-module was found
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/godebug_default.txt

    go list -f '{{.Module.GoVersion}} {{.DefaultGODEBUG}}' rsc.io/panicnil
    ! stdout panicnil=1
    ! stdout randautoseed
    
    # Go 1.20 work module should set panicnil=1.
    cp go.mod.20 go.mod
    go list -f '{{.Module.GoVersion}} {{.DefaultGODEBUG}}'
    stdout panicnil=1
    stdout randautoseed=0
    
    # Go 1.20 work module should set panicnil=1 in Go 1.20 dependency.
    cp go.mod.20 go.mod
    go list -f '{{.Module.GoVersion}} {{.DefaultGODEBUG}}' q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.cc

          input_builder.GetSize());
    
      OwningOpRef<mlir::ModuleOp> module = tflite::FlatBufferToMlir(
          serialized_model, &context, UnknownLoc::get(&context));
      if (!module) {
        LOG(ERROR) << "Couldn't import flatbuffer to MLIR.";
        return absl::InternalError("Couldn't import flatbuffer to MLIR.");
      }
    
      PassManager pm((*module)->getName(), OpPassManager::Nesting::Implicit);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat_added.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
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    			return nil, "", fmt.Errorf("failed to download config module: %v", info.Error)
    		}
    		return nil, "", fmt.Errorf("failed to download config module: %w\n%s", err, &stderr)
    	}
    
    	var info struct {
    		Dir     string
    		Version string
    		Error   string
    	}
    	if err := json.Unmarshal(stdout.Bytes(), &info); err != nil || info.Dir == "" {
    		return nil, "", fmt.Errorf("failed to download config module (invalid JSON): %w", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionProvider.kt

         */
        public abstract fun provideExtensionsFor(module: KtModule): List<KaResolveExtension>
    
        public companion object {
            public val EP_NAME: ExtensionPointName<KaResolveExtensionProvider> =
                ExtensionPointName<KaResolveExtensionProvider>("org.jetbrains.kotlin.kaResolveExtensionProvider")
    
            public fun provideExtensionsFor(module: KtModule): List<KaResolveExtension> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableIvyModuleResolveMetadataTest.groovy

        }
    
        def "can override values from descriptor"() {
            def id = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId("group", "module"), "version")
            def newId = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId("group", "module"), "1.2")
            def sources = ImmutableModuleSources.of(Mock(ModuleSource))
            def excludes = [new DefaultExclude(DefaultModuleIdentifier.newId("group", "name"))]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            // However, it appears that IDEA 2017 depends on this behaviour, and iterates over the included builds to get all modules
            allProjects.rootIdeaProject.name == 'buildA'
            allProjects.rootIdeaProject.modules.collect { it.name } == ['buildA']
    
            def moduleA = allProjects.rootIdeaProject.modules[0]
            moduleA.dependencies.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinCodeFragmentContextModificationListener.kt

         *
         * All code fragments depending on [module], both directly or transitively, should be considered modified when this event is received.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification(module: KtModule)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 796 bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/plugin/PluginBuilder.groovy

            // The implementation jar module.
            def module = mavenRepo.module(group, artifact, version)
            def pluginModule = module.publish()
            def artifactFile = module.getArtifactFile()
    
            def markerModules = new ArrayList<Module>()
    
            pluginIds.keySet().each { id ->
                // The marker files for each plugin.
                def marker = mavenRepo.module(id, id + PLUGIN_MARKER_SUFFIX, version)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top