Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,347 for module2 (0.07 sec)

  1. src/cmd/go/testdata/mod/example.com_latemigrate_v2_v2.0.1.txt

    example.com/latemigrate/v2 v2.0.1
    written by hand
    
    This repository migrated to modules in v2.0.1 after v2.0.0 was already tagged.
    All versions require rsc.io/quote so we can test downgrades.
    
    v2.0.1 belongs to example.com/latemigrate/v2.
    
    -- .mod --
    module example.com/latemigrate/v2
    
    require rsc.io/quote v1.3.0
    -- .info --
    {"Version":"v2.0.1"}
    -- go.mod --
    module example.com/latemigrate/v2
    
    require rsc.io/quote v1.3.0
    -- late.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:39:37 UTC 2019
    - 449 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_goline_order.txt

    # Check that go line in go.work is always >= go line of used modules.
    
    # Using an old Go version, fails during module loading, but we rewrite the error to the
    # same one a switching version would use, without the auto-switch.
    # This is a misconfigured system that should not arise in practice.
    env TESTGO_VERSION=go1.21.1
    env TESTGO_VERSION_SWITCH=switch
    cp go.work go.work.orig
    ! go list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 977 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/DependencyHandlerDelegate.kt

        @Suppress("DEPRECATION")
        @Deprecated("Will be removed in Gradle 9.0")
        override fun module(notation: Any): Dependency =
            delegate.module(notation)
    
        @Suppress("DEPRECATION")
        @Deprecated("Will be removed in Gradle 9.0")
        override fun module(notation: Any, configureClosure: Closure<Any>): Dependency =
            delegate.module(notation, configureClosure)
    
        override fun project(notation: Map<String, *>): Dependency =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

            }
    
            void addChecksum(HttpModule module, String algo, String type = "jar", String ext = "jar", String origin = null, String reason = null) {
                def checksum = getChecksum(module, algo, type)
                doAddChecksum(module.group, module.module, module.version, type, ext, algo, checksum, origin, reason)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            originalResult.rootIdeaProject.modules.name == ['buildA']
    
            def moduleA = originalResult.rootIdeaProject.modules[0]
            moduleA.dependencies.each {
                assert it instanceof IdeaModuleDependency
            }
            moduleA.dependencies.targetModuleName == ['buildB-b1', 'buildA-buildC', 'buildD-b1']
    
            originalResult.getIdeaProject('buildB').modules.name == ['buildB', 'buildB-b1', 'b2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    --
    Resolution can only be made in favor of a module _found_ in the graph.
    
    The `select` method only accepts a module found in the _current_ candidates.
    If the module you want to select is not part of the conflict, you can abstain from performing a selection, effectively not resolving _this_ conflict.
    It might be that another conflict exists in the graph for the same capability and will have the module you want to select.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/convert_xla_call_module_op_to_bfloat16.mlir

    // ConvertXlaCallModuleOpToBfloat16Pass works on XlaCallModuleOps with
    // serialized modules. Which makes verification difficult. Therefore we add
    // (de)serialization passes so that the input and output are deserializated
    // StableHLO functions.
    
    // CHECK-LABEL: module
    module {
      // CHECK-LABEL: func @main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 22:40:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

        // only test one combination
        @RequiredFeature(feature=GradleMetadataResolveRunner.REPOSITORY_TYPE, value="ivy")
        def "maven module is not affected by rule requiring ivy module descriptor input"() {
            def mavenModule = mavenRepo.module("org.utils", "api", "1.1").publishWithChangedContent()
    
            buildFile << """
                configurations { conf }
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaProjectIntegrationTest.groovy

          <entry name="!?*.java"/>
          <entry name="!?*.fooBar"/>
        </wildcardResourcePatterns>
      </component>
      <component name="ProjectModuleManager">
        <modules>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
        </modules>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

                model(IdeaProject).withArguments('--include-build', 'buildB').get()
            }.modules[0]
    
            then:
            ideaModule.dependencies.size() == 1
            with(ideaModule.dependencies.first()) {
                it instanceof IdeaModuleDependency
                targetModuleName == "b1"
            }
        }
    
        def "Idea model honours custom module name"() {
            when:
            buildB.buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top