Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 210 for module_name (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    moduleName=model-core
    moduleVersion=1.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 713 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

    configurations { compile }
    dependencies {
        def moduleName = providers.gradleProperty('moduleName').get()
        compile "group:\$moduleName:1.+"
    }
    configurations.all {
        resolutionStrategy.cacheDynamicVersionsFor 0, 'seconds'
    }
    """
            when: "missing from local"
            expectGetDynamicRevision(httpModuleA)
    
            then:
            args '-PmoduleName=projectA'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandler.java

                    desc.excludeGroupByRegex(groupRegex);
                }
    
                @Override
                public void includeModule(String group, String moduleName) {
                    desc.excludeModule(group, moduleName);
                }
    
                @Override
                public void includeModuleByRegex(String groupRegex, String moduleNameRegex) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                        assert resolved.size() == 3
                        assert resolved.collect { it.moduleName } == ['hiphop', 'child', 'rock']
    
                        resolved = compile.getFirstLevelModuleDependencies { true }
                        assert resolved.collect { it.moduleName } == ['hiphop', 'child', 'rock']
    
                        def files = compile.files
    
                        assert files.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtSourceModuleBuilder.kt

    import kotlin.io.path.isDirectory
    
    @KtModuleBuilderDsl
    public class KtSourceModuleBuilder(
        private val kotlinCoreProjectEnvironment: KotlinCoreProjectEnvironment,
    ) : KtModuleBuilder() {
        public lateinit var moduleName: String
        public var languageVersionSettings: LanguageVersionSettings =
            LanguageVersionSettingsImpl(LanguageVersion.LATEST_STABLE, ApiVersion.LATEST)
    
        private val sourceRoots: MutableList<Path> = mutableListOf()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/runtime/plugin.go

    			name2 = funcname(f2)
    			entry2 = f2.entry()
    		}
    		badtable = true
    		println("ftab entry", hex(entry), "/", hex(entry2), ": ",
    			name, "/", name2, "outside pc range:[", hex(md.minpc), ",", hex(md.maxpc), "], modulename=", md.modulename, ", pluginpath=", md.pluginpath)
    	}
    	if badtable {
    		throw("runtime: plugin has bad symbol table")
    	}
    }
    
    // inRange reports whether v0 or v1 are in the range [r0, r1].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/swiftapp/GreeterTests.swift.template

    ${fileComment.multilineComment}
    import XCTest
    @testable import ${moduleName.groovyString}
    
    class GreeterTests: XCTestCase {
        public static var allTests = [
            ("testGreeting", testGreeting),
        ]
    
        func testGreeting() {
            XCTAssertEqual("Hello, World!", Greeter().greeting())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 302 bytes
    - Viewed (0)
  8. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIdentityIntegrationTest.groovy

                apply plugin: 'java'
                group = 'org.test'
                version = '1.2'
            """
        }
    
        def dependency(String moduleName) {
            settingsFile << """
                sourceControl {
                    vcsMappings {
                        withModule("org.test:${moduleName}") {
                            from(GitVersionControlSpec) {
                                url = uri("${repo.url}")
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3WithXCTest.groovy

            this.test = new XCTestSourceElement(projectName) {
                @Override
                List<XCTestSourceFileElement> getTestSuites() {
                    return [new Swift3Test().withImport(main.moduleName)]
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4WithXCTest.groovy

            this.test = new XCTestSourceElement(projectName) {
                @Override
                List<XCTestSourceFileElement> getTestSuites() {
                    return [new Swift4Test().withImport(main.moduleName)]
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top