Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 597 for project$it (0.38 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/README.adoc

    This is due to https://bugs.eclipse.org/bugs/show_bug.cgi?id=520667[a limitation in Eclipse] that does not allow more than one module in one project.
    It you want to do blackbox testing in Eclipse, you should move the integration tests to separate subprojects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ExtraPropertiesIntegrationTest.groovy

                            assert testProp == 'rootValue'
                        }
                    }
                """.stripIndent()
    
                ['a', 'b', 'a:a1'].each {
                    buildFile << """
                    project(':${it}') {
                        task checkTestProp {
                            doLast {
                                assert testProp == '${expectedPropPerProject[it]}'
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/README.adoc

    This is due to https://bugs.eclipse.org/bugs/show_bug.cgi?id=520667[a limitation in Eclipse] that does not allow more than one module in one project.
    It you want to do blackbox testing in Eclipse, you should move the integration tests to separate subprojects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/BuildSrcClassPathModeConfigurationAction.kt

            configurations.getByName(configurationName).incoming.resolutionResult.allComponents.asSequence()
                .projectDependenciesIdentifiers()
                .map { project(it.projectPath) }
                .withJavaBasePlugin()
                .allSourceSetsRoots()
                .map { it.relativeTo(rootDir).path }
                .toList()
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 06 15:06:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

        /**
         * Register a watchable hierarchy.
         *
         * Only locations within watchable hierarchies will be watched for changes.
         * This method is first called for the root directory of the root project.
         * It is also called for the root directories of included builds, and all other nested builds.
         */
        void registerWatchableHierarchy(File rootDirectoryForWatching);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/artifact/MavenArtifactProperties.java

         * consumer project.
         * <p>
         * Note: This property is about "build path", whatever it means in the scope of the consumer project. It is NOT
         * about Java classpath or anything alike. How artifact is being consumed depends heavily on the consumer project.
         * Resolver is and will remain agnostic of consumer project use cases.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilter.java

         * @throws org.gradle.api.InvalidUserDataException if type is null.
         */
        void setType(ResourceFilterType type);
    
        /**
         * Indicates whether this ResourceFilter applies recursively to all children of the project it is created on.  Default is true.
         */
        boolean isRecursive();
    
        /**
         * Sets whether this ResourceFilter applies recursively or not.
         */
        void setRecursive(boolean recursive);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m9/M9JavaConfigurabilityCrossVersionSpec.groovy

            when:
    
            BuildEnvironment env
            GradleProject project
            withConnection {
                env = it.model(BuildEnvironment.class).setJavaHome(jdk.javaHome).get()
                project = it.model(GradleProject.class).setJavaHome(jdk.javaHome).get()
            }
    
            then:
            project.description.startsWith(env.java.javaHome.canonicalPath)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/artifact/MavenArtifactProperties.java

         * consumer project.
         * <p>
         * Note: This property is about "build path", whatever it means in the scope of the consumer project. It is NOT
         * about Java classpath or anything alike. How artifact is being consumed depends heavily on the consumer project.
         * Resolver is and will remain agnostic of consumer project use cases.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/JavaConfigurabilityCrossVersionSpec.groovy

            when:
            BuildEnvironment env
            GradleProject project
            withConnection {
                env = it.model(BuildEnvironment.class).setJvmArguments('-Xmx200m', '-Xms100m').get()
                project = it.model(GradleProject.class).setJvmArguments('-Xmx200m', '-Xms100m').get()
            }
    
            then:
            def inputArgsInBuild = project.description.split('##') as List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top