Search Options

Results per page
Sort
Preferred Languages
Advance

Results 621 - 630 of 1,205 for Exceptions (0.13 sec)

  1. LdapOperationException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES 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.exception; L17: L18:public class LdapOperationException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public LdapOperationException(final String message, final Throwable cause) { L23: super(message,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      990 bytes
  2. ScriptEngineException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES 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.exception; L17: L18:public class ScriptEngineException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public ScriptEngineException(final String message) { L23: super(message); L24: } L25:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      986 bytes
  3. AssertionUtil.java

    java.util.Collection; L21:import java.util.Map; L22: L23:import org.codelibs.core.collection.ArrayUtil; L24:import org.codelibs.core.exception.ClIllegalArgumentException; L25:import org.codelibs.core.exception.ClIllegalStateException; L26:import org.codelibs.core.exception.ClIndexOutOfBoundsException; L27:import org.codelibs.core.exception.EmptyArgumentException; L28:import org.codelibs.core.exception.NullArgumentException; L29:import org.codelibs.core.lang.StringUtil; L30: L31:/** L32: * 表明についてのユーティリティクラスです。 L33:...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      12.5K bytes
  4. PrintEventsNonConcurrent.java

    refers to. L36: */ L37:public final class PrintEventsNonConcurrent { L38: private final OkHttpClient client = new OkHttpClient.Builder() L39: .eventListener(new PrintingEventListener()) L40: .build(); L41: L42: public void run() throws Exception { L43: Request request = new Request.Builder() L44: .url("https://publicobject.com/helloworld.txt") L45: .build(); L46: L47: System.out.println("REQUEST 1 (new connection)"); L48: try (Response response = client.newCall(request).execute())...
    github.com/square/okhttp/samples/guide/src/main...
    Sun Feb 16 23:20:49 UTC 2020
      5.3K bytes
  5. AbstractIdleService.java

    L90: } L91: } L92: L93: /** Constructor for use by subclasses. */ L94: protected AbstractIdleService() {} L95: L96: /** Start the service. */ L97: protected abstract void startUp() throws Exception; L98: L99: /** Stop the service. */ L100: protected abstract void shutDown() throws Exception; L101: L102: /** L103: * Returns the {@link Executor} that will be used to run this service. Subclasses may override L104: * this method to use a custom {@link Executor}, which may configure its...
    github.com/google/guava/android/guava/src/com/g...
    Mon Apr 17 13:59:28 UTC 2023
      5.3K bytes
  6. ImmutableList.java

    L511: @Override L512: @J2ktIncompatible // serialization L513: @GwtIncompatible // serialization L514: Object writeReplace() { L515: return super.writeReplace(); L516: } L517: } L518: L519: /** L520: * Guaranteed to throw an exception and leave the list unmodified. L521: * L522: * @throws UnsupportedOperationException always L523: * @deprecated Unsupported operation. L524: */ L525: @CanIgnoreReturnValue L526: @Deprecated L527: @Override L528: @DoNotCall("Always throws...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 16 21:21:17 UTC 2024
      27.7K bytes
  7. AdminDictKuromojiAction.java

    org.lastaflute.web.response.HtmlResponse; L42:import org.lastaflute.web.response.render.RenderData; L43:import org.lastaflute.web.ruts.process.ActionRuntime; L44:import org.lastaflute.web.validation.VaErrorHook; L45:import org.lastaflute.web.validation.exception.ValidationErrorException; L46: L47:import jakarta.annotation.Resource; L48: L49:/** L50: * @author shinsuke L51: * @author Keiichi Watanabe L52: */ L53:public class AdminDictKuromojiAction extends FessAdminAction { L54: L55: public static final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      18.8K bytes
  8. FinalizableReferenceQueueTest.java

    ClassLoaders? L39:@AndroidIncompatible L40:@GwtIncompatible L41:public class FinalizableReferenceQueueTest extends TestCase { L42: L43: private @Nullable FinalizableReferenceQueue frq; L44: L45: @Override L46: protected void tearDown() throws Exception { L47: frq = null; L48: } L49: L50: L51: public void testFinalizeReferentCalled() { L52: final MockReference reference = new MockReference(frq = new FinalizableReferenceQueue()); L53: L54: GcFinalization.awaitDone( L55: new GcF...
    github.com/google/guava/guava-tests/test/com/go...
    Mon Oct 21 14:28:19 UTC 2024
      4.8K bytes
  9. SAXParserFactoryUtil.java

    L22:import javax.xml.XMLConstants; L23:import javax.xml.parsers.ParserConfigurationException; L24:import javax.xml.parsers.SAXParser; L25:import javax.xml.parsers.SAXParserFactory; L26: L27:import org.codelibs.core.exception.ParserConfigurationRuntimeException; L28:import org.codelibs.core.exception.SAXRuntimeException; L29:import org.codelibs.core.lang.ClassUtil; L30:import org.codelibs.core.lang.MethodUtil; L31:import org.xml.sax.SAXException; L32:import org.xml.sax.SAXNotRecognizedException; L33:import...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      3.9K bytes
  10. UserRoleLoginException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES 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.exception; L17: L18:import org.codelibs.fess.app.web.RootAction; L19: L20:public class UserRoleLoginException extends RuntimeException { L21: L22: private static final long serialVersionUID = 1L; L23: L24: private final Class<?> actionClass; L25: L26:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.1K bytes
Back to top