Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 266 for deprecate (0.05 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsFailureUrlCQ.java

            setId_Terms(idList, opLambda);
        }
    
        @Deprecated
        public BsFailureUrlCQ addOrderBy_Id_Asc() {
            regOBA("_id");
            return this;
        }
    
        @Deprecated
        public BsFailureUrlCQ addOrderBy_Id_Desc() {
            regOBD("_id");
            return this;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 57.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java

        }
    
        public void test_class_has_proper_annotations() {
            // Verify the class doesn't have any inappropriate annotations
            assertFalse("Class should not be deprecated", HotThreadMonitorTarget.class.isAnnotationPresent(Deprecated.class));
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

          PublicSuffixDatabase.get().getEffectiveTldPlusOne(host)
        }
    
      @JvmName("-deprecated_url")
      @Deprecated(
        message = "moved to toUrl()",
        replaceWith = ReplaceWith(expression = "toUrl()"),
        level = DeprecationLevel.ERROR,
      )
      fun url(): URL = toUrl()
    
      @JvmName("-deprecated_uri")
      @Deprecated(
        message = "moved to toUri()",
        replaceWith = ReplaceWith(expression = "toUri()"),
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/ResponseBody.kt

            override fun contentLength(): Long = contentLength
    
            override fun source(): BufferedSource = this@asResponseBody
          }
    
        @JvmStatic
        @Deprecated(
          message = "Moved to extension function. Put the 'content' argument first to fix Java",
          replaceWith =
            ReplaceWith(
              expression = "content.toResponseBody(contentType)",
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:51:25 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableList.java

       * @deprecated Unsupported operation.
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final E remove(int index) {
        throw new UnsupportedOperationException();
      }
    
      /**
       * Returns this list instance.
       *
       * @since 2.0
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/UnmodifiableIterator.java

      protected UnmodifiableIterator() {}
    
      /**
       * Guaranteed to throw an exception and leave the underlying data unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final void remove() {
        throw new UnsupportedOperationException();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/MediaType.kt

          }
        }
        return null
      }
    
      @JvmName("-deprecated_type")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "type"),
        level = DeprecationLevel.ERROR,
      )
      fun type(): String = type
    
      @JvmName("-deprecated_subtype")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "subtype"),
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:51:08 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableBiMap.java

         * ImmutableMap.Builder}, but it does not make sense for bimaps.
         *
         * @throws UnsupportedOperationException always
         * @deprecated This method does not make sense for bimaps and should not be called.
         * @since 31.1
         */
        @DoNotCall
        @Deprecated
        @Override
        public ImmutableBiMap<K, V> buildKeepingLast() {
          throw new UnsupportedOperationException("Not supported for bimaps");
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

       * @return the set backed by the map
       * @throws IllegalArgumentException if {@code map} is not empty
       * @deprecated Use {@link Collections#newSetFromMap} instead.
       */
      @InlineMe(replacement = "Collections.newSetFromMap(map)", imports = "java.util.Collections")
      @Deprecated
      public static <E extends @Nullable Object> Set<E> newSetFromMap(
          Map<E, Boolean> map) {
        return Collections.newSetFromMap(map);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsElevateWordToLabelCQ.java

            setId_Terms(idList, opLambda);
        }
    
        @Deprecated
        public BsElevateWordToLabelCQ addOrderBy_Id_Asc() {
            regOBA("_id");
            return this;
        }
    
        @Deprecated
        public BsElevateWordToLabelCQ addOrderBy_Id_Desc() {
            regOBD("_id");
            return this;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 23.8K bytes
    - Viewed (0)
Back to top