Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ServerExpectation (0.26 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/ServerExpectation.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server
    
    interface ServerExpectation {
        void assertMet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 711 bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/ServerWithExpectations.groovy

        protected Throwable failure
    
        @Override
        void resetExpectations() {
            try {
                if (failure != null) {
                    throw failure
                }
                for (ServerExpectation e in expectations) {
                    e.assertMet()
                }
            } finally {
                failure = null
                expectations.clear()
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/OneRequestServerExpectation.groovy

     */
    
    package org.gradle.test.fixtures.server
    
    import groovy.transform.CompileStatic
    
    import java.util.concurrent.atomic.AtomicBoolean
    
    @CompileStatic
    abstract class OneRequestServerExpectation implements ServerExpectation {
        AtomicBoolean atomicRun = new AtomicBoolean()
    
        boolean isRun() {
            return atomicRun.get()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 948 bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

    import org.gradle.test.fixtures.ivy.RemoteIvyRepository
    import org.gradle.test.fixtures.server.ExpectOne
    import org.gradle.test.fixtures.server.RepositoryServer
    import org.gradle.test.fixtures.server.ServerExpectation
    import org.gradle.test.fixtures.server.ServerWithExpectations
    import org.slf4j.Logger
    import org.slf4j.LoggerFactory
    
    import java.security.GeneralSecurityException
    import java.security.KeyPair
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

    import org.gradle.test.fixtures.server.ExpectOne
    import org.gradle.test.fixtures.server.ForbidOne
    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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top