Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 102 for projectC (0.09 sec)

  1. subprojects/core/src/test/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildListenerFactoryTest.groovy

            fromMutableState(_) >> { Function function -> function.apply(project) }
        }
        def project = Mock(ProjectInternal) {
            getOwner() >> projectState
        }
        def gradle = Mock(GradleInternal) {
            getStartParameter() >> startParameter
            getRootProject() >> project
        }
    
        def "executes buildSrc configuration action after projects are loaded"() {
            def action = Mock(Action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/invocation/IsolatedProjectEvaluationListenerProvider.java

         * @see org.gradle.api.invocation.GradleLifecycle#beforeProject(IsolatedAction)
         */
        void beforeProject(IsolatedAction<? super Project> action);
    
        /**
         * @see org.gradle.api.invocation.GradleLifecycle#afterProject(IsolatedAction)
         */
        void afterProject(IsolatedAction<? super Project> action);
    
        /**
         * Returns an isolated listener for the registered actions, if any. The listener makes it impossible for
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/build.gradle.kts

        )
    }
    
    dependencies {
        api(project(":base-services"))
        api(project(":stdlib-java-extensions"))
        api(project(":logging"))
        api(project(":tooling-api"))
    
        api(libs.jsr305)
    
        implementation(project(":core"))
        implementation(project(":file-temp"))
        implementation(projects.io)
        implementation(project(":wrapper-shared"))
        implementation(project(":build-process-services"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/build.gradle.kts

        }
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":model-core"))
        api(project(":platform-jvm"))
        api(project(":plugins-java-base"))
        api(project(":reporting"))
        api(project(":toolchains-jvm"))
        api(project(":toolchains-jvm-shared"))
        api(project(":workers"))
    
        api(libs.groovy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven</artifactId>
      <packaging>pom</packaging>
      <name>Maven</name>
      <version>2.0</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. pkg/volume/util/fsquota/quota_linux_test.go

    }
    
    const (
    	projectsHeader = `# This is a /etc/projects header
    1048578:/quota/d
    `
    	projects1 = `1048577:/quota1/a
    `
    	projects2 = `1048577:/quota1/a
    1048580:/quota1/b
    `
    	projects3 = `1048577:/quota1/a
    1048580:/quota1/b
    1048581:/quota2/b
    `
    	projects4 = `1048577:/quota1/a
    1048581:/quota2/b
    `
    	projects5 = `1048581:/quota2/b
    `
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        def "workspace id of project transforms is unique per build with included builds"() {
            // The setup here is in a way that the project path of the project dependency in the same build
            // is the same as the buildTreePath of the substituted project dependency in the included build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        implementation(project(":persistent-cache"))
        implementation(project(":core-api"))
        implementation(project(":model-core"))
        implementation(project(":core"))
        implementation(project(":file-collections"))
        implementation(project(":file-temp"))
        implementation(project(":files"))
        implementation(project(":resources"))
        implementation(project(":tooling-api"))
        implementation(project(":execution"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

                allprojects { task someTask }
                project(':a') { task someTaskA }
                project(':b') { task someTaskB }
            """
    
            when:
            fails "someTest"
    
            then:
            verifyAll(receivedProblem) {
                fqid == 'task-selection:no-matches'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    In the case of multi-project builds, the `file()` method will always turn relative paths into paths relative to the current project directory, which may be a child project.
    
    === Using `Project.getRootDir()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top