Search Options

Results per page
Sort
Preferred Languages
Advance

Results 401 - 410 of 1,024 for Exceptions (0.05 sec)

  1. AbstractIterator.java

    the first invocation of {@code hasNext} or {@code next} following each successful call to L95: * {@code next}. Once the implementation either invokes {@code endOfData} or throws an exception, L96: * {@code computeNext} is guaranteed to never be called again. L97: * L98: * <p>If this method throws an exception, it will propagate outward to the {@code hasNext} or L99: * {@code next} invocation that invoked this method. Any further attempts to use the iterator will L100: * result in an {@link...
    github.com/google/guava/guava/src/com/google/co...
    Fri Mar 18 02:04:10 UTC 2022
      6.4K bytes
  2. Authenticate.java

    Credentials.basic("jesse", "password1"); L37: return response.request().newBuilder() L38: .header("Authorization", credential) L39: .build(); L40: }) L41: .build(); L42: } L43: L44: public void run() throws Exception { L45: Request request = new Request.Builder() L46: .url("http://publicobject.com/secrets/hellosecret.txt") L47: .build(); L48: L49: try (Response response = client.newCall(request).execute()) { L50: if (!response.isSuccessful())...
    github.com/square/okhttp/samples/guide/src/main...
    Thu Aug 12 07:26:27 UTC 2021
      1.9K bytes
  3. HttpsServer.java

    L25:import okhttp3.tls.HandshakeCertificates; L26:import okhttp3.tls.HeldCertificate; L27: L28:/** L29: * Create an HTTPS server with a self-signed certificate that OkHttp trusts. L30: */ L31:public class HttpsServer { L32: public void run() throws Exception { L33: HeldCertificate localhostCertificate = new HeldCertificate.Builder() L34: .addSubjectAlternativeName("localhost") L35: .build(); L36: L37: HandshakeCertificates serverCertificates = new HandshakeCertificates.Builder() L38:...
    github.com/square/okhttp/samples/guide/src/main...
    Mon Jan 02 14:04:37 UTC 2023
      2.1K bytes
  4. WebApiUtil.java

    OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.util; L17: L18:import org.codelibs.fess.exception.WebApiException; L19:import org.lastaflute.web.util.LaRequestUtil; L20: L21:public final class WebApiUtil { L22: L23: private static final String WEB_API_EXCEPTION = "webApiException"; L24: L25: private WebApiUtil() { L26: } L27: L28: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.9K bytes
  5. CancelCall.java

    L25:import okhttp3.Response; L26: L27:public class CancelCall { L28: private final ScheduledExecutorService executor = Executors.newScheduledThreadPool(1); L29: private final OkHttpClient client = new OkHttpClient(); L30: L31: public void run() throws Exception { L32: Request request = new Request.Builder() L33: .url("http://httpbin.org/delay/2") // This URL is served with a 2 second delay. L34: .build(); L35: L36: final long startNanos = System.nanoTime(); L37: final Call call =...
    github.com/square/okhttp/samples/guide/src/main...
    Sat Jan 12 03:31:36 UTC 2019
      2.1K bytes
  6. ApiAdminLabeltypeAction.java

    validateApi(body, messages -> {}); L87: body.crudMode = CrudMode.CREATE; L88: final LabelType labelType = getLabelType(body).map(entity -> { L89: try { L90: labelTypeService.store(entity); L91: } catch (final Exception e) { L92: logger.warn("Failed to process a request.", e); L93: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L94: } L95: return...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.8K bytes
  7. PerCallSettings.java

    .TimeUnit; L20:import okhttp3.OkHttpClient; L21:import okhttp3.Request; L22:import okhttp3.Response; L23: L24:public final class PerCallSettings { L25: private final OkHttpClient client = new OkHttpClient(); L26: L27: public void run() throws Exception { L28: Request request = new Request.Builder() L29: .url("http://httpbin.org/delay/1") // This URL is served with a 1 second delay. L30: .build(); L31: L32: // Copy to customize OkHttp for this request. L33: OkHttpClient client1...
    github.com/square/okhttp/samples/guide/src/main...
    Sun May 22 01:29:42 UTC 2016
      1.9K bytes
  8. PreemptiveAuth.java

    public PreemptiveAuth() { L29: client = new OkHttpClient.Builder() L30: .addInterceptor( L31: new BasicAuthInterceptor("publicobject.com", "jesse", "password1")) L32: .build(); L33: } L34: L35: public void run() throws Exception { L36: Request request = new Request.Builder() L37: .url("https://publicobject.com/secrets/hellosecret.txt") L38: .build(); L39: L40: try (Response response = client.newCall(request).execute()) { L41: if (!response.isSuccessful())...
    github.com/square/okhttp/samples/guide/src/main...
    Mon Nov 05 07:46:46 UTC 2018
      2.1K bytes
  9. GroovyEngine.java

    License. L15: */ L16:package org.codelibs.fess.script.groovy; L17: L18:import java.util.HashMap; L19:import java.util.Map; L20: L21:import org.apache.logging.log4j.LogManager; L22:import org.apache.logging.log4j.Logger; L23:import org.codelibs.fess.exception.JobProcessingException; L24:import org.codelibs.fess.script.AbstractScriptEngine; L25:import org.lastaflute.di.core.factory.SingletonLaContainerFactory; L26: L27:import groovy.lang.Binding; L28:import groovy.lang.GroovyClassLoader; L29:import gr...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      2K bytes
  10. AdminSchedulerAction.java

    getScheduledJob(form).ifPresent(entity -> { L228: try { L229: scheduledJobService.store(entity); L230: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L231: } catch (final Exception e) { L232: logger.warn("Failed to process a request.", e); L233: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L234: this::asEditHtml);...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      18.1K bytes
Back to top