Search Options

Results per page
Sort
Preferred Languages
Advance

Results 461 - 470 of 709 for failed (0.06 sec)

  1. preinst

    L16:# Sets the default values for fess variables used in this script L17:FESS_USER="${packaging.fess.user}" L18:FESS_GROUP="${packaging.fess.group}" L19:FESS_USER_HOME="${packaging.fess.var.dir}" L20: L21:# Source the default env file L22:FESS_ENV_FILE="${packaging.env.file}" L23:if [ -f "$FESS_ENV_FILE" ]; then L24: . "$FESS_ENV_FILE" L25:fi L26: L27:case "$1" in L28: L29: # Debian #################################################### L30: install|upgrade) L31: L32: # Create fess group...
    github.com/codelibs/fess/src/packaging/common/s...
    Thu Dec 01 09:48:15 UTC 2016
      2.3K bytes
  2. InvalidatableSet.java

    L42: return delegate.hashCode(); L43: } L44: L45: private void validate() { L46: // Don't use checkState(), because we don't want the overhead of generating the error message L47: // unless it's actually going to be used; validate() is called for all set method calls, so it L48: // needs to be fast. L49: // (We could instead generate the message once, when the set is created, but zero is better.) L50: if (!validator.get()) { L51: throw new IllegalStateException(errorMessage.get());...
    github.com/google/guava/android/guava/src/com/g...
    Mon Jan 22 17:29:38 UTC 2024
      1.8K bytes
  3. Closer.java

    declare all of the checked exception L123: * types your try block can throw when calling an overload of this method so as to avoid losing L124: * the original exception type. L125: * L126: * <p>This method always throws, and as such should be called as {@code throw closer.rethrow(e);} L127: * to ensure the compiler knows that it will throw. L128: * L129: * @return this method does not return; it always throws L130: * @throws IOException when the given throwable is an IOException L131:...
    github.com/google/guava/guava/src/com/google/co...
    Tue May 07 15:26:58 UTC 2024
      10.4K bytes
  4. CookieJar.kt

    L32:interface CookieJar { L33: /** L34: * Saves [cookies] from an HTTP response to this store according to this jar's policy. L35: * L36: * Note that this method may be called a second time for a single HTTP response if the response L37: * includes a trailer. For this obscure HTTP feature, [cookies] contains only the trailer's L38: * cookies. L39: */ L40: fun saveFromResponse( L41: url: HttpUrl, L42: cookies: List<Cookie>, L43: ) L44: L45: /** L46: * Load cookies from the jar for an...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Mon Jan 08 01:13:22 UTC 2024
      2.4K bytes
  5. DescendingImmutableSortedSet.java

    UnmodifiableIterator<E> descendingIterator() { L78: return forward.iterator(); L79: } L80: L81: @Override L82: @GwtIncompatible("NavigableSet") L83: ImmutableSortedSet<E> createDescendingSet() { L84: throw new AssertionError("should never be called"); L85: } L86: L87: @Override L88: @CheckForNull L89: public E lower(E element) { L90: return forward.higher(element); L91: } L92: L93: @Override L94: @CheckForNull L95: public E floor(E element) { L96: return forward.ceiling(element);...
    github.com/google/guava/android/guava/src/com/g...
    Thu Nov 30 21:54:06 UTC 2023
      3.3K bytes
  6. BsRelatedContent.java

    null) { L107: addFieldToSource(sourceMap, "virtualHost", virtualHost); L108: } L109: return sourceMap; L110: } L111: L112: protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { L113: sourceMap.put(field, value); L114: } L115: L116: // =================================================================================== L117: // Basic Override L118:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.1K bytes
  7. InvalidatableSetTest.java

    copyOfModifiedSet = ImmutableSet.copyOf(wrappedSet); // {2,3} L48: // sanity check on construction of copyOfModifiedSet L49: assertThat(wrappedSet).isEqualTo(copyOfModifiedSet); L50: L51: // setToTest should throw when it calls equals(), or equals is called on it, except for itself L52: assertThat(setToTest).isEqualTo(setToTest); L53: assertThrows(IllegalStateException.class, () -> setToTest.equals(wrappedSet)); L54: assertThrows(IllegalStateException.class, () -> setToTest.equals(copyOfWrappedSet));...
    github.com/google/guava/guava-tests/test/com/go...
    Mon Jan 22 17:29:38 UTC 2024
      2.2K bytes
  8. Graph.java

    common with {@code node} in L160: * this graph. L161: * L162: * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}. L163: * L164: * <p>If {@code node} is removed from the graph after this method is called, the {@code Set} L165: * {@code view} returned by this method will be invalidated, and will throw {@code L166: * IllegalStateException} if it is accessed in any way, with the following exceptions: L167: * L168: * <ul> L169: * <li>{@code...
    github.com/google/guava/android/guava/src/com/g...
    Thu Oct 10 15:41:27 UTC 2024
      13.7K bytes
  9. ImmutableSortedMultisetTest.java

    list.indexOf("b")); L509: assertEquals(4, list.lastIndexOf("b")); L510: } L511: L512: public void testCopyOfDefensiveCopy() { L513: // Depending on JDK version, either toArray() or toArray(T[]) may be called... use this class L514: // rather than mocking to ensure that one of those methods is called. L515: class TestArrayList<E> extends ArrayList<E> { L516: boolean toArrayCalled = false; L517: L518: @Override L519: public Object[] toArray() { L520: toArrayCalled = true;...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      22.7K bytes
  10. Graph.java

    common with {@code node} in L160: * this graph. L161: * L162: * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}. L163: * L164: * <p>If {@code node} is removed from the graph after this method is called, the {@code Set} L165: * {@code view} returned by this method will be invalidated, and will throw {@code L166: * IllegalStateException} if it is accessed in any way, with the following exceptions: L167: * L168: * <ul> L169: * <li>{@code...
    github.com/google/guava/guava/src/com/google/co...
    Thu Oct 10 15:41:27 UTC 2024
      13.7K bytes
Back to top