Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Potter (0.22 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message:  */
        public static final String ERRORS_front_header = "{errors.front_header}";
    
        /** The key of the message:  */
        public static final String ERRORS_front_footer = "{errors.front_footer}";
    
        /** The key of the message: <div class="alert alert-warning"> */
        public static final String ERRORS_front_prefix = "{errors.front_prefix}";
    
        /** The key of the message: </div> */
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                token,
            )
        }
        add(FirJsErrors.NATIVE_GETTER_RETURN_TYPE_SHOULD_BE_NULLABLE) { firDiagnostic ->
            NativeGetterReturnTypeShouldBeNullableImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirJsErrors.NATIVE_SETTER_WRONG_RETURN_TYPE) { firDiagnostic ->
            NativeSetterWrongReturnTypeImpl(
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - kubeadm: Added better handling of errors during unmount when calling `kubeadm reset`. When failing to unmount directories under `/var/run/kubelet`, kubeadm will now throw an error instead of showing a warning and continuing to clean up said directory. In such situations, it is better for you to inspect the problem and resolve it manually. Then, you can call `kubeadm reset` again to complete the cleanup....
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

          }
          if (object instanceof MapDifference) {
            MapDifference<?, ?> other = (MapDifference<?, ?>) object;
            return entriesOnlyOnLeft().equals(other.entriesOnlyOnLeft())
                && entriesOnlyOnRight().equals(other.entriesOnlyOnRight())
                && entriesInCommon().equals(other.entriesInCommon())
                && entriesDiffering().equals(other.entriesDiffering());
          }
          return false;
        }
    
        @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: &amp;copy;2024 &lt;a href="https://github.com/codelibs"&gt;CodeLibs Project&lt;/a&gt;. */
        public static final String LABELS_FOOTER_COPYRIGHT = "{labels.footer.copyright}";
    
        /** The key of the message: Search */
        public static final String LABELS_SEARCH = "{labels.search}";
    
        /** The key of the message: Similar results are displayed. */
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

              <code>
                <![CDATA[
        /**
         * @see java.lang.Object#equals(java.lang.Object)
         */
        public boolean equals(Object other) {
            if (other instanceof Plugin) {
                Plugin otherPlugin = (Plugin) other;
                return getKey().equals(otherPlugin.getKey());
            }
            return false;
        }
    
        /**
         * @see java.lang.Object#hashCode()
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 115.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * {@code AsyncClosingFunction.apply}. Any heavyweight operations should occur in other threads
       * responsible for completing the returned {@code ClosingFuture}.)
       *
       * <p>After calling this method, you may not call {@link #finishToFuture()}, {@link
       * #finishToValueAndCloser(ValueAndCloserConsumer, Executor)}, or any other derivation method on
       * the original {@code ClosingFuture} instance.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

          if (!map.evictsBySize()) {
            return;
          }
    
          drainRecencyQueue();
    
          // If the newest entry by itself is too heavy for the segment, don't bother evicting
          // anything else, just that
          if (newest.getValueReference().getWeight() > maxSegmentWeight) {
            if (!removeEntry(newest, newest.getHash(), RemovalCause.SIZE)) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

          if (!map.evictsBySize()) {
            return;
          }
    
          drainRecencyQueue();
    
          // If the newest entry by itself is too heavy for the segment, don't bother evicting
          // anything else, just that
          if (newest.getValueReference().getWeight() > maxSegmentWeight) {
            if (!removeEntry(newest, newest.getHash(), RemovalCause.SIZE)) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
Back to top