Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for UserAgentMatcher (0.18 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/matchers/UserAgentMatcher.java

    import org.hamcrest.BaseMatcher;
    import org.hamcrest.CoreMatchers;
    import org.hamcrest.Description;
    import org.hamcrest.Factory;
    
    public class UserAgentMatcher extends BaseMatcher {
    
        private final String applicationName;
        private final String version;
    
        public UserAgentMatcher(String applicationName, String version) {
            this.applicationName = applicationName;
            this.version = version;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractHttpScriptPluginIntegrationSpec.groovy

    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.test.fixtures.keystore.TestKeyStore
    import org.gradle.test.fixtures.server.http.HttpServer
    import org.gradle.test.matchers.UserAgentMatcher
    import org.gradle.util.GradleVersion
    
    class AbstractHttpScriptPluginIntegrationSpec extends AbstractIntegrationSpec {
        @org.junit.Rule
        HttpServer server = new HttpServer()
        @org.junit.Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:45:30 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/RepositoryHttpServer.groovy

    import org.gradle.test.fixtures.ivy.IvyFileRepository
    import org.gradle.test.fixtures.server.RepositoryServer
    import org.gradle.util.GradleVersion
    
    import static org.gradle.test.matchers.UserAgentMatcher.matchesNameAndVersion
    
    class RepositoryHttpServer extends HttpServer implements RepositoryServer {
    
        private TestDirectoryProvider testDirectoryProvider
        private String gradleVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/HttpProxyScriptPluginIntegrationSpec.groovy

    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.test.fixtures.server.http.HttpServer
    import org.gradle.test.fixtures.server.http.TestProxyServer
    import org.gradle.test.matchers.UserAgentMatcher
    import org.gradle.util.GradleVersion
    import org.gradle.util.SetSystemProperties
    import org.hamcrest.CoreMatchers
    
    class HttpProxyScriptPluginIntegrationSpec extends AbstractIntegrationSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.executer.ExecutionResult
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.server.http.HttpServer
    import org.gradle.test.matchers.UserAgentMatcher
    import org.gradle.util.GradleVersion
    import org.junit.Rule
    import org.junit.Test
    
    @SuppressWarnings("IntegrationTestFixtures")
    class ExternalScriptExecutionIntegrationTest extends AbstractIntegrationTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpsIntegrationTest.groovy

    import org.gradle.wrapper.Download
    import org.junit.Rule
    import spock.lang.Issue
    
    import static org.gradle.integtests.WrapperHttpIntegrationTest.TEST_DISTRIBUTION_URL
    import static org.gradle.test.matchers.UserAgentMatcher.matchesNameAndVersion
    import static org.hamcrest.CoreMatchers.containsString
    import static org.hamcrest.MatcherAssert.assertThat
    
    // wrapperExecuter requires a real distribution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiRemoteIntegrationTest.groovy

    import org.gradle.tooling.internal.consumer.DefaultCancellationTokenSource
    import org.gradle.util.GradleVersion
    import org.junit.Rule
    import spock.lang.Issue
    
    import static org.gradle.test.matchers.UserAgentMatcher.matchesNameAndVersion
    
    @LeaksFileHandles
    class ToolingApiRemoteIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

    import org.gradle.test.fixtures.server.OneRequestServerExpectation
    import org.gradle.test.fixtures.server.ServerExpectation
    import org.gradle.test.fixtures.server.ServerWithExpectations
    import org.gradle.test.matchers.UserAgentMatcher
    import org.gradle.util.internal.GFileUtils
    import org.hamcrest.Matcher
    import org.eclipse.jetty.server.Handler
    import org.eclipse.jetty.http.HttpHeader
    import org.eclipse.jetty.http.HttpStatus
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

    import org.gradle.test.fixtures.server.http.IvyHttpRepository
    import org.gradle.util.GradleVersion
    import org.hamcrest.CoreMatchers
    import org.junit.Rule
    import spock.lang.Issue
    
    import static org.gradle.test.matchers.UserAgentMatcher.matchesNameAndVersion
    import static org.gradle.util.Matchers.matchesRegexp
    
    class IvyPublishHttpIntegTest extends AbstractIvyPublishIntegTest {
        private static final int HTTP_UNRECOVERABLE_ERROR = 415
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
Back to top