Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for browser (0.13 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/OutputDirSelectorUtil.java

     * limitations under the License.
     */
    
    package org.gradle.performance.results;
    
    /**
     * Moved here from OutputDirSelector to work around
     * <a href="https://issues.apache.org/jira/browse/GROOVY-10591">GROOVY-10591</a>
     */
    public class OutputDirSelectorUtil {
    
        public static String fileSafeNameFor(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/DurationCodec.kt

    internal
    object DurationCodec : Codec<Duration> {
    
        override suspend fun WriteContext.encode(value: Duration) {
            // Do not use the ISO-8601 format for serialization
            // to work around https://bugs.openjdk.java.net/browse/JDK-8054978
            // on Java 8
            writeLong(value.seconds)
            writeSmallInt(value.nano)
        }
    
        override suspend fun ReadContext.decode(): Duration =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperConcurrentDownloadTest.groovy

            server.expect(server.head("/gradle-bin.zip"))
            server.expect(server.get("/gradle-bin.zip").sendFile(distribution.binDistribution))
            server.start()
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2699")
        def "concurrent downloads do not stomp over each other"() {
            given:
            prepareWrapper(server.uri("gradle-bin.zip"))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildAggregationIntegrationTest.groovy

            then:
            fails()
    
            and:
            failure.assertHasDescription("Execution failed for task ':buildSrc:compileJava'.")
        }
    
        @Issue("https://issues.gradle.org//browse/GRADLE-3052")
        def buildTaskCanHaveInputsAndOutputs() {
            file("input") << "foo"
            settingsFile << "rootProject.name = 'proj'"
            buildFile << """
                class UpperFile extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top