Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 210 for browser (0.8 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomMailingList.java

         */
        Property<String> getPost();
    
        /**
         * The URL where you can browse the archive of this mailing list.
         */
        Property<String> getArchive();
    
        /**
         * The alternate URLs where you can browse the archive of this mailing list.
         */
        SetProperty<String> getOtherArchives();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/FormBodyTest.kt

        assertThat(formEncode(8)).isEqualTo("%08")
        assertThat(formEncode(9)).isEqualTo("%09")
        // Browsers convert '\n' to '\r\n'
        assertThat(formEncode(10)).isEqualTo("%0A")
        assertThat(formEncode(11)).isEqualTo("%0B")
        assertThat(formEncode(12)).isEqualTo("%0C")
        // Browsers convert '\r' to '\r\n'
        assertThat(formEncode(13)).isEqualTo("%0D")
        assertThat(formEncode(14)).isEqualTo("%0E")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskEncodingIntegrationSpec.groovy

    @DoesNotSupportNonAsciiPaths(reason = "Uses non-Unicode default charset")
    class CopyTaskEncodingIntegrationSpec extends AbstractIntegrationSpec {
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2181")
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "can copy files with unicode characters in name with non-unicode platform encoding"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestClassDetectionIntegrationTest.groovy

    import spock.lang.Issue
    
    abstract class AbstractJUnitTestClassDetectionIntegrationTest extends AbstractTestingMultiVersionIntegrationTest {
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2527")
        def "test class detection works for custom test tasks"() {
            given:
            buildFile << """
                apply plugin:'java'
                ${mavenCentralRepository()}
    
                sourceSets {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/AlwaysFollowAndPreserveMethodRedirectStrategy.java

     * This has been introduced to overcome a regression caused by switching to apache httpclient as the transport mechanism for publishing (https://issues.gradle.org/browse/GRADLE-3312)
     * The rational for httpclient not following redirects, by default, can be found here: https://issues.apache.org/jira/browse/HTTPCLIENT-860
     */
    public class AlwaysFollowAndPreserveMethodRedirectStrategy extends DefaultRedirectStrategy {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/Special.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model;
    
    /**
     * Out on its own due to http://jira.codehaus.org/browse/GROOVY-7010
     */
    public interface Special {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 750 bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyDocIntegrationTest.groovy

                dependencies {
                    implementation "${groovyModuleDependency("groovy", versionNumber)}"
                }
            """
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-3116")
        def "can run groovydoc"() {
            when:
            file("src/main/groovy/pkg/Thing.groovy") << """
                package pkg
    
                class Thing {}
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/cucumberjvm/CucumberJVMReportIntegrationTest.groovy

    class CucumberJVMReportIntegrationTest extends AbstractSampleIntegrationTest {
    
        @Rule
        public final TestResources resources = new TestResources(temporaryFolder)
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2739")
        def testReportingSupportsCucumberStepsWithSlashes() {
            when:
            run "test"
            then:
            executedAndNotSkipped(":test")
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/internal/AfterEvaluateHelper.java

    package org.gradle.plugins.ide.eclipse.internal;
    
    import org.gradle.api.Action;
    import org.gradle.api.Project;
    
    /**
     * Helper class for actions registered for {@code afterEvaluate}.
     *
     * See https://issues.gradle.org/browse/GRADLE-3231
     */
    public class AfterEvaluateHelper {
    
        /**
         * Registers the target action in {@code project.afterEvaluate} or calls it directly if the target project has been already evaluated.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyCustomStatusLatestVersionIntegrationTest.groovy

            executer.withArgument("-PreleaseVersion=1.1")
            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants("projectA-1.1.jar")
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-3216")
        def "uses changing provided by component metadata rule for latest.xyz"() {
            given:
            buildFile << """
    repositories {
        ivy {
            url "${ivyHttpRepo.uri}"
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top