Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for bronze (0.28 sec)

  1. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperUserHomeIntegrationTest.groovy

            executer.withArguments("-Dgradle.user.home=$gradleUserHome.absolutePath")
            executer.run()
    
            then:
            installationIn gradleUserHome
        }
    
        @Issue('https://issues.gradle.org/browse/GRADLE-2802')
        void 'uses gradle user home set by -g'() {
            given:
            prepareWrapper()
            def gradleUserHome = testDirectory.file('some-custom-user-home')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/DefaultOutputDirSelector.groovy

     * limitations under the License.
     */
    
    package org.gradle.performance.results
    
    import com.google.common.base.Strings
    
    // https://issues.apache.org/jira/browse/GROOVY-10055
    //@CompileStatic
    class DefaultOutputDirSelector implements OutputDirSelector {
        private static final String DEBUG_ARTIFACTS_DIRECTORY_PROPERTY_NAME = "org.gradle.performance.debugArtifactsDirectory"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/groovy/buildSrc/src/main/groovy/com/acme/InstrumentedJarsPlugin.groovy

    import org.gradle.api.component.SoftwareComponentFactory
    import org.gradle.api.tasks.bundling.Jar
    import org.gradle.api.component.AdhocComponentWithVariants
    
    import javax.inject.Inject
    
    // https://issues.apache.org/jira/browse/GROOVY-10055
    //@CompileStatic
    class InstrumentedJarsPlugin implements Plugin<Project> {
        // tag::inject_software_component_factory[]
        private final SoftwareComponentFactory softwareComponentFactory
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DaemonGradleExecuter.java

            if(!isQuiet() && isAllowExtraLogging()) {
                if (!containsLoggingArgument(args)) {
                    args.add(0, "-i");
                }
            }
    
            // Workaround for https://issues.gradle.org/browse/GRADLE-2625
            if (getUserHomeDir() != null) {
                args.add(String.format("-Duser.home=%s", getUserHomeDir().getPath()));
            }
    
            return args;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/project/inheritance/t11/ProjectInheritanceTest.java

    import static org.junit.jupiter.api.Assertions.assertNull;
    
    /**
     * Verifies scope of root project is preserved regardless of parent dependency management.
     *
     * @see <a href="https://issues.apache.org/jira/browse/MNG-2919">MNG-2919</a>
     */
    @Deprecated
    class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
        // ----------------------------------------------------------------------
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileActivator.java

        /**
         * Determines whether specified activation method is present in configuration or not. It should help to have AND
         * between activation conditions
         * Need for solving https://issues.apache.org/jira/browse/MNG-4565
         * @param profile The profile whose activation status should be determined, must not be {@code null}.
         * @param context The environmental context used to determine the activation status of the profile, must not be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. testing/internal-testing/build.gradle.kts

    }
    
    description = "Collection of test fixtures for both unit tests and integration tests, internal use only"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(project(":base-services"))
        api(project(":concurrent"))
        api(project(":hashing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. android/guava/pom.xml

              <!-- excludePackageNames requires specification of packages separately from "all subpackages".
                   https://issues.apache.org/jira/browse/MJAVADOC-584 -->
              <excludePackageNames>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperProjectIntegrationTest.groovy

            def result = wrapperExecuter.inDirectory(projectDir).withTasks('assertProjectDirHasMeta').run()
            then:
            result.assertTaskExecuted(":assertProjectDirHasMeta")
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-1871")
        void "can specify project properties containing D"() {
            given:
            prepareWrapper()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. guava/pom.xml

              <!-- excludePackageNames requires specification of packages separately from "all subpackages".
                   https://issues.apache.org/jira/browse/MJAVADOC-584 -->
              <excludePackageNames>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top