Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 123 for requirements (0.66 sec)

  1. src/cmd/go/internal/gover/version.go

    	// The semantics of the go.mod changed at Go 1.17 to support
    	// graph pruning. If see a go.mod without a go line, we have to
    	// assume Go 1.16 so that we interpret the requirements correctly.
    	// Note that this default must stay at Go 1.16; it cannot be moved forward.
    	DefaultGoModVersion = "1.16"
    
    	// DefaultGoWorkVersion is the Go version to assume for go.work files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/README.vendor

    This is necessary to avoid compiler and linker conflicts. Adding
    a "vendor/" prefix also maintains the invariant that standard
    library packages begin with a dotless path element.
    
    The module requirements of std and cmd do not influence version
    selection in other modules. They are only considered when running
    module commands like 'go get' and 'go mod vendor' from a directory
    in GOROOT/src.
    
    Maintaining vendor directories
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/SmokeTests.kt

        features {
            publishBuildStatusToGithub(model)
        }
    
        tcParallelTests(splitNumber)
    
        requirements {
            // Smoke tests is usually heavy and the build time is twice on EC2 agents
            requiresNotEc2Agent()
        }
    
        applyTestDefaults(
            model,
            this,
            ":smoke-test:$task",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 16:49:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

        <p>The <a href="/plugins/maven-toolchains-plugin/">toolchains-plugin</a> can read available toolchains on the user's computer
        and match them against the toolchain requirements of the project (as configured in {@code pom.xml}):
        if match is found, the toolchain instance is made available to other Maven plugins.</p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/util/PublishKotlinDslPlugin.kt

        id("Util_PublishKotlinDslPlugin")
        uuid = "${DslContext.uuidPrefix}_Util_PublishKotlinDslPlugin"
        vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().vcsRootId())
    
        requirements {
            requiresOs(Os.LINUX)
        }
    
        params {
            param("env.JAVA_HOME", javaHome(BuildToolBuildJvm, Os.LINUX))
            param("env.GRADLE_PUBLISH_KEY", "%plugin.portal.publish.key%")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # For this module, Go 1.17 prunes out a (transitive and otherwise-irrelevant)
    # requirement on a retracted higher version of a dependency.
    # However, when Go 1.16 reads the same requirements from the go.mod file,
    # it does not prune out that requirement, and selects the retracted version.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirEnumEntryInitializerSymbol.kt

            }
        }
    
        /**
         * [KaFirEnumEntryInitializerSymbol] is the required return type instead of [KaEnumEntryInitializerSymbol] to fulfill return type
         * subtyping requirements, as [KaEnumEntryInitializerSymbol] is not a subtype of
         * [org.jetbrains.kotlin.analysis.api.symbols.KaAnonymousObjectSymbol]. (It cannot be a subtype in the general Analysis API because enum
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/promotion/BasePromotionBuildType.kt

                root(AbsoluteId(vcsRootId))
    
                checkoutMode = CheckoutMode.ON_AGENT
                this.cleanCheckout = cleanCheckout
                showDependenciesChanges = true
            }
    
            requirements {
                requiresOs(Os.LINUX)
                requiresNotEc2Agent()
            }
    
            paramsForBuildToolBuild(BuildToolBuildJvm, Os.LINUX)
    
            params {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/tidy.go

    The -go flag causes tidy to update the 'go' directive in the go.mod
    file to the given version, which may change which module dependencies
    are retained as explicit requirements in the go.mod file.
    (Go versions 1.17 and higher retain more requirements in order to
    support lazy module loading.)
    
    The -compat flag preserves any additional checksums needed for the
    'go' command from the indicated major Go release to successfully load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

        }
        tasks.named<Javadoc>("javadoc") {
            // See GradleJavadocsPlugin.generateJavadocs() and the javadocsAll task
            (options as StandardJavadocDocletOptions).tags("apiNote:a:API Note:", "implSpec:a:Implementation Requirements:", "implNote:a:Implementation Note:")
        }
    }
    
    fun MavenPublication.configureGradleModulePublication() {
        from(components["java"])
        artifactId = moduleIdentity.baseName.get()
        versionMapping {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top