Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 4,346 for module$ (0.2 sec)

  1. src/cmd/go/internal/modload/init.go

    	// slash. For most modules, pathPrefix is just version.Path, but the
    	// standard-library module "std" has an empty prefix.
    	pathPrefix map[module.Version]string
    
    	// inGorootSrc caches whether modRoot is within GOROOT/src.
    	// The "std" module is special within GOROOT/src, but not otherwise.
    	inGorootSrc map[module.Version]bool
    
    	modFiles map[module.Version]*modfile.File
    
    	modContainingCWD module.Version
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

            when:
            module.artifact.expectPut()
            module.artifact.sha1.expectPut()
            module.artifact.sha256.expectPutBroken()
            module.artifact.sha512.expectPutBroken()
            module.ivy.expectPut()
            module.ivy.sha1.expectPut()
            module.ivy.sha256.expectPutBroken()
            module.ivy.sha512.expectPutBroken()
            module.moduleMetadata.expectPut()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

            expect:
            def module = repo.module('org.gradle.test', 'external1', '1.0')
            module.artifact(type: 'txt')
            module.artifact(classifier: 'baseClassifier', type: 'jar')
            module.artifact(classifier: 'extendedClassifier', type: 'jar')
            module.hasType('zip')
            module.publish()
            repo.module('org.gradle.test', 'other', '1.0').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/coderepo.go

    			// Right now we return "missing go.mod", which is a little confusing.
    			return nil, &module.ModuleError{
    				Path: r.modPath,
    				Err: &module.InvalidVersionError{
    					Version: v,
    					Err:     notExistError{err: err},
    				},
    			}
    		}
    
    		invalidf := func(format string, args ...any) error {
    			return &module.ModuleError{
    				Path: r.modPath,
    				Err: &module.InvalidVersionError{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/list/list.go

    module and then dependencies sorted by module path.
    A pattern containing "..." specifies the active modules whose
    module paths match the pattern.
    A query of the form path@version specifies the result of that query,
    which is not limited to active modules.
    See 'go help modules' for more about module queries.
    
    The template function "module" takes a single string argument
    that must be a module path or query and returns the specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedArtifactOrderingIntegrationTest.groovy

        }
    
        private List<String> toFileNames(List<?> modules) {
            modules.collect { it instanceof MavenModule ? "'${it.artifactFile.name}'" : "'${it}'" }
        }
    
        def "artifact collection has resolved artifact files and metadata 1"() {
            when:
            def modD = mavenRepo.module("org.test", "D").publish()
            def modC = mavenRepo.module("org.test", "C").dependsOn(modD).publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/templates/root-project/checkstyle.xml

    <!DOCTYPE module PUBLIC
            "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
            "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
    <module name="Checker">
        <module name="TreeWalker">
            <module name="ClassTypeParameterName"/>
            <module name="ConstantName"/>
            <module name="LocalFinalVariableName"/>
            <module name="LocalVariableName"/>
            <module name="MemberName"/>
            <module name="MethodName"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 856 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_deprecated.txt

    stderr '^go: module example.com/deprecated/b is deprecated: in example.com/deprecated/b@v1.9.0$'
    
    # 'go get pkg' does not show a deprecation message for a module providing a
    # directly imported package if the module is no longer deprecated in its
    # latest version, even if the module is deprecated in its current version.
    go get ./use/undeprecated
    ! stderr 'module.*is deprecated'
    
    -- go.mod --
    module m
    
    go 1.17
    
    require (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_patterns.txt

    # the packages in the main module, but no other packages from the standard
    # library or active modules.
    #
    # 'go list ...' should list packages in all active modules and the standard library.
    #
    # 'go list example.com/m/...' should list packages in all modules that begin with 'example.com/m/'.
    #
    # 'go list ./...' should list only packages in the current module, not other active modules.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                }.publish()
            def depB = mavenHttpRepo.module('org.test', 'depB', '1.0').dependsOn([exclusions: [[module: 'excluded']]], depC).publish()
            def depF = mavenHttpRepo.module('org.test', 'depF', '1.0').dependsOn(depC).publish()
            def depE = mavenHttpRepo.module('org.test', 'depE', '1.0').dependsOn(depF).publish()
            def depD = mavenHttpRepo.module('org.test', 'depD', '1.0').dependsOn(depE).publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top