Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for InlineMeSuggester (0.08 seconds)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

            "InjectOnConstructorOfAbstractClass", // We use abstract injection as a pattern
            "InlineMeSuggester", // Only suppression seems to actually "fix" this, so make it global
            "JavaUtilDate", // We are fine with using Date
            "JavaxInjectOnAbstractMethod", // We use abstract injection as a pattern
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:47:14 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/graph/Graphs.java

       *
       * @since 33.1.0 (present with return type {@code Graph} since 20.0)
       * @deprecated Use {@link #transitiveClosure(Graph, TransitiveClosureSelfLoopStrategy)} instead.
       */
      @SuppressWarnings("InlineMeSuggester") // We expect most users to want to change behavior.
      @Deprecated
      public static <N> ImmutableGraph<N> transitiveClosure(Graph<N> graph) {
        return transitiveClosure(graph, ADD_SELF_LOOPS_ALWAYS);
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 24.4K bytes
    - Click Count (0)
Back to Top