Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 125 for projectFor (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/UsingLockingOnNonProjectConfigurationsIntegrationTest.groovy

    rootProject.name = 'foo'
    """
            buildFile << """
    buildscript {
        repositories {
            maven {
                url = '$mavenRepo.uri'
            }
        }
        dependencyLocking {
            lockFile = file("\$projectDir/gradle/bslock.file")
        }
        configurations.classpath {
            resolutionStrategy.activateDependencyLocking()
        }
        dependencies {
            classpath 'org.foo:foo-plugin:[1.0,2.0)'
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

            includes = ["name", "parent", "children"]
        )
        private static class TestProjectDescriptor implements ProjectDescriptor {
            String name
            ProjectDescriptor parent
            File projectDir
            String buildFileName
            File buildFile
            Set<TestProjectDescriptor> children
    
            @Override
            String getPath() {
                parent == null ? ':' :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            }
            else -> arguments.any { typeProjection ->
                // A star projection type (lazily) built by type parameter will be yet another type with a star projection,
                // resulting in stack overflow if we keep checking allowed type parameter descriptors
                !typeProjection.isStarProjection &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

        externalJar2(External jar2)
        externalJar2_2(External jar2)
        modifiedExternalJar2(External jar2*)
        projectJar(Project jar)
        projectJar_2(Project jar)
        modifiedProjectJar(Project jar*)
    
        subgraph Plugins classpath
            classpath
            externalJar1
            externalJar2
            projectJar
        end
    
        subgraph External dependencies pipeline
            instrumentAndUpgrade
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

         * (e.g. under the {@code /build} directory of the plugin's project directory).
         *
         * @param projectDir the project directory
         * @return {@code this}
         * @see #getProjectDir()
         */
        public abstract GradleRunner withProjectDir(File projectDir);
    
        /**
         * The build arguments.
         * <p>
         * Effectively, the command line arguments to Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. pkg/volume/configmap/configmap.go

    	if err != nil {
    		klog.Errorf("Error writing payload to dir: %v", err)
    		return err
    	}
    
    	setupSuccess = true
    	return nil
    }
    
    // MakePayload function is exported so that it can be called from the projection volume driver
    func MakePayload(mappings []v1.KeyToPath, configMap *v1.ConfigMap, defaultMode *int32, optional bool) (map[string]volumeutil.FileProjection, error) {
    	if defaultMode == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

            is ConeKotlinTypeProjectionIn -> "in ${type.renderTypeAsKotlinType()}"
            is ConeKotlinTypeProjectionOut -> "out ${type.renderTypeAsKotlinType()}"
            is ConeKotlinTypeConflictingProjection -> "CONFLICTING-PROJECTION ${type.renderTypeAsKotlinType()}"
            is ConeKotlinType -> renderTypeAsKotlinType()
        }
    
        private object DummyScopeProvider : FirScopeProvider() {
            override fun getUseSiteMemberScope(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. pkg/volume/downwardapi/downwardapi.go

    // Map's key is the requested name of file to dump
    // Map's value is the (sorted) content of the field to be dumped in the file.
    //
    // Note: this function is exported so that it can be called from the projection volume driver
    func CollectData(items []v1.DownwardAPIVolumeFile, pod *v1.Pod, host volume.VolumeHost, defaultMode *int32) (map[string]volumeutil.FileProjection, error) {
    	if defaultMode == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

        def "executes tests in correct environment"() {
            given:
            buildFile << """
                test {
                    systemProperties.testSysProperty = 'value'
                    systemProperties.testDir = projectDir
                    environment.TEST_ENV_VAR = 'value'
                }
            """.stripIndent()
            file('src/test/java/org/gradle/OkTest.java') << """
                package org.gradle;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

                    apply plugin: 'java'
                    apply plugin: 'idea'
                }
    
                subprojects {
                    ideaModule {
                        outputFile = file(project.projectDir.canonicalPath + "/" + rootProject.name + project.path.replace(':', '.') + ".iml")
                    }
                }
    
                project(':api') {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
Back to top