Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for projectFor (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

            get() = startParameter.isConfigurationCacheRecreateCache
    
        /**
         * See [StartParameter.getProjectDir].
         */
        val projectDirectory: File?
            get() = startParameter.projectDir
    
        val currentDirectory: File
            get() = startParameter.currentDir
    
        val settingsDirectory: File
            get() = buildLayout.settingsDir
    
        @Suppress("DEPRECATION")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                    id('java-library')
                }
                allprojects {
                    println("project name = " + name)
                    println("project path = " + path)
                    println("project projectDir = " + projectDir)
                    println("project rootDir = " + rootDir)
                    println("project toString = " + it)
                    it.name
                    project.name
                    project.path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            given:
            goodCode()
    
            and:
            buildFile << """
                dependencies {
                    file("\$projectDir/lib/").mkdirs()
                    implementation files((1..999).collect {
                        createJarFile("\$projectDir/lib/library\${it}.jar")
                    })
                }
    
                def createJarFile(String libraryPath) {
                    def fos
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    dependencies {
                        compile project(':util')
                    }
                }
            """ << withFileLibDependency("lib1.jar", projectDir)
            projectDir.createDirs("lib", "util", "app")
            projectDir.file("settings.gradle") << """
                rootProject.name = 'root'
                include 'lib'
                include 'util'
                include 'app'
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

    include('p1')
    include('p1:p11')
    includeBuild('another')"""
            file("p1").mkdir()
            file('another/settings.gradle') << ""
    
            when:
            projectDir("p1")
            run "projects"
    
            then:
            outputDoesNotContain "another"
        }
    
        def "included builds are only rendered if there are some"() {
            when:
            run "projects"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            task.classpath.files == project.sourceSets.test.runtimeClasspath.files
            task.testClassesDirs.contains(project.sourceSets.test.java.destinationDirectory.get().asFile)
            task.workingDir == project.projectDir
        }
    
        def "applies mappings to tasks added by the build script"() {
            given:
            project.pluginManager.apply(JavaPlugin)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

            '''
                task fooJar(type: Jar) {
                    archiveBaseName = 'c-foo'
                    destinationDirectory = projectDir
                }
                task barJar(type: Jar) {
                    archiveBaseName = 'c-bar'
                    destinationDirectory = projectDir
                }
                artifacts {
                    foo fooJar
                    bar barJar
                }
            '''
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

        public abstract val symbol: KaTypeParameterSymbol
    }
    
    public typealias KtTypeParameterType = KaTypeParameterType
    
    public abstract class KaCapturedType : KaType {
        public abstract val projection: KaTypeProjection
    }
    
    public typealias KtCapturedType = KaCapturedType
    
    public abstract class KaDefinitelyNotNullType : KaType {
        public abstract val original: KaType
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. cmd/sts-handlers_test.go

                "Resource": "arn:aws:s3:::*"
            },
            {
                "Effect": "Allow",
                "Action": "s3:*",
                "Resource": [
                    "arn:aws:s3:::projectaorb",
                    "arn:aws:s3:::projectaorb/*"
                ],
                "Condition": {
                    "ForAnyValue:StringEquals": {
                        "jwt:groups": [
                            "projecta",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  10. pkg/volume/secret/secret.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, secret *v1.Secret, 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
    - 9.1K bytes
    - Viewed (0)
Back to top