Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Modules (0.27 sec)

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

    
    # 'go clean' should skip the current directory if it isn't in a module.
    go clean -n
    ! stdout .
    ! stderr .
    
    # 'go mod graph' should fail, since there's no module graph.
    ! go mod graph
    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    # 'go mod why' should fail, since there is no main module to depend on anything.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

    import org.jetbrains.kotlin.cli.jvm.index.SingleJavaFileRootsIndex
    import org.jetbrains.kotlin.cli.jvm.modules.CliJavaModuleFinder
    import org.jetbrains.kotlin.cli.jvm.modules.CliJavaModuleResolver
    import org.jetbrains.kotlin.cli.jvm.modules.CoreJrtFileSystem
    import org.jetbrains.kotlin.cli.jvm.modules.JavaModuleGraph
    import org.jetbrains.kotlin.config.*
    import org.jetbrains.kotlin.library.KLIB_FILE_EXTENSION
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    coreRuntimeOnly.description = "To define dependencies to the Gradle modules that make up the core of the distributions (lib/*.jar)"
    val pluginsRuntimeOnly by bucket()
    pluginsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent additional plugins packaged in the distributions (lib/plugins/*.jar)"
    val agentsRuntimeOnly by bucket()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_all.txt

    stdout '^example.com/u.test$'
    stdout '^example.com/u_test \[example.com/u.test\]$'
    
    # 'go list -m all' should cover all of the modules providing packages in
    # 'go list -test -deps all', but should exclude modules d and x,
    # which are not relevant to the main module and are outside of the
    # lazy-loading horizon.
    
    go list -m -f $MODFMT all
    stdout -count=10 '^.'
    stdout '^example.com/a$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K bytes
    - Viewed (0)
  5. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

     */
    package gradlebuild.modules.extension
    
    import gradlebuild.modules.model.License
    
    
    abstract class ExternalModulesExtension(isBundleGroovy4: Boolean) {
    
        val groovyVersion = if (isBundleGroovy4) "4.0.20" else "3.0.21"
        val configurationCacheReportVersion = "1.5"
        val gradleIdeStarterVersion = "0.3"
        val kotlinVersion = "1.9.23"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. doc/godebug.md

    then asking for the old pre-Go 1.21 `panic(nil)` behavior and the
    new Go 1.23 `asynctimerchan=0` behavior.
    
    Only the work module's `go.mod` is consulted for `godebug` directives.
    Any directives in required dependency modules are ignored.
    It is an error to list a `godebug` with an unrecognized setting.
    (Toolchains older than Go 1.23 reject all `godebug` lines, since they do not
    understand `godebug` at all.)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    modules, and to copy and distribute the resulting executable under
    terms of your choice, provided that you also meet, for each linked
    independent module, the terms and conditions of the license of that
    module.  An independent module is a module which is not derived from or
    based on this library.  If you modify this library, you may extend this
    exception to your version of the library, but you are not obligated to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    import gradlebuild.integrationtests.extension.IntegrationTestExtension
    import gradlebuild.integrationtests.tasks.DistributionTest
    import gradlebuild.integrationtests.tasks.IntegrationTest
    import gradlebuild.modules.extension.ExternalModulesExtension
    import gradlebuild.testing.services.BuildBucketProvider
    import org.gradle.api.Action
    import org.gradle.api.Project
    import org.gradle.api.artifacts.Configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    a Contributor if it was added to the Program by such Contributor itself or
    anyone acting on such Contributor's behalf. Contributions do not include additions
    to the Program which: (i) are separate modules of software distributed in
    conjunction with the Program under their own license agreement, and (ii) are
    not derivative works of the Program.
    
       "Contributor" means any person or entity that distributes the Program.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Sep 17 05:50:12 UTC 2018
    - 11.1K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

    import java.time.Duration
    
    plugins {
        groovy
        idea // Need to apply the idea plugin, so the extended configuration is taken into account on sync
        id("gradlebuild.module-jar")
        id("gradlebuild.dependency-modules")
    }
    
    extensions.create<UnitTestAndCompileExtension>("gradlebuildJava", project, tasks)
    
    removeTeamcityTempProperty()
    addDependencies()
    configureCompile()
    configureSourcesVariant()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top