Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for createTunnel (0.16 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

       *     we've successfully connected or because no further attempts should be made.
       */
      @Throws(IOException::class)
      internal fun connectTunnel(): ConnectResult {
        val nextTunnelRequest =
          createTunnel()
            ?: return ConnectResult(plan = this) // Success.
    
        // The proxy decided to close the connection after an auth challenge. Retry with different
        // auth credentials.
        rawSocket?.closeQuietly()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/DefaultGradleRunnerTest.groovy

            when:
            createRunner().withTestKitDir(null)
    
            then:
            def t = thrown(IllegalArgumentException)
            t.message == 'testKitDir argument cannot be null'
        }
    
        def "can set custom test kit directory"() {
            given:
            def testKitDir = testDirectoryProvider.createDir('some/dir')
    
            when:
            def runner = createRunner()
                .withProjectDir(workingDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsTestKitInjectedJavaPluginIntegrationTest.groovy

            }
    
            @Override
            protected ExecutionResult doRun() {
                def runnerResult = createRunner().build()
                return OutputScrapingExecutionResult.from(runnerResult.output, "")
            }
    
            @Override
            protected ExecutionFailure doRunWithFailure() {
                def runnerResult = createRunner().buildAndFail()
                return OutputScrapingExecutionFailure.from(runnerResult.output, "")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

                    }
                });
                schedulerTime = now;
            }, fessConfig.getSchedulerMonitorIntervalAsInteger(), true);
        }
    
        @Override
        public LaJobRunner createRunner() {
            return new LaJobRunner().useAccessContext(
                    resource -> accessContextLogic.create(resource, OptionalThing::empty, OptionalThing::empty, () -> APP_TYPE));
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    org.junit.runner.Request { private final java.util.concurrent.locks.Lock runnerLock; private volatile org.junit.runner.Runner runner; void MemoizingRequest(); public final org.junit.runner.Runner getRunner(); protected abstract org.junit.runner.Runner createRunner(); } org/junit/internal/requests/ClassRequest$1.class package org.junit.internal.requests; synchronized class ClassRequest$1 { } org/junit/internal/requests/ClassRequest$CustomAllDefaultPoss.class package org.junit.internal.requests; synchronized...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top