Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for intercept_test (0.23 sec)

  1. okhttp/src/test/java/okhttp3/InterceptorTest.kt

    import okio.buffer
    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    @Tag("Slow")
    class InterceptorTest {
      @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
      private lateinit var server: MockWebServer
      private var client = clientTestRule.newClient()
      private val callback = RecordingCallback()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/GroovyFileInterceptors.java

    public class GroovyFileInterceptors {
        @InterceptGroovyCalls
        @GroovyPropertyGetter
        @WithExtensionReferences(toClass = ResourceGroovyMethods.class)
        public static String intercept_text(
            @Receiver File self,
            @CallerClassName String consumer
        ) throws IOException {
            return Instrumented.groovyFileGetText(self, consumer);
        }
    
        @InterceptGroovyCalls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/NioFileInterceptors.java

        }
    
        @InterceptCalls
        @StaticMethod(ofClass = Files.class)
        public static Stream<Path> intercept_list(
            Path path,
            @CallerClassName String consumer
        ) throws IOException {
            tryReportDirectoryContentObserved(path, consumer);
            return Files.list(path);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top