Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,993 for LINK (0.04 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocLinkConverterTest.groovy

            def link = converter.resolve('org.gradle.SomeClass', classMetaData, listener)
    
            then:
            format(link) == '''<UNHANDLED-LINK>org.gradle.SomeClass</UNHANDLED-LINK>'''
        }
    
        def convertsClassAndMethodNameToLink() {
            ClassMetaData targetClass = Mock()
            MethodMetaData method = method('someName')
            _ * nameResolver.resolve('SomeClass', classMetaData) >> 'org.gradle.SomeClass'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 8.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/package-info.java

     *
     * <ul>
     *   <li>{@link Ascii}
     *   <li>{@link CaseFormat}
     *   <li>{@link CharMatcher}
     *   <li>{@link Splitter}
     *   <li>{@link Strings}
     * </ul>
     *
     * <h3>Function types</h3>
     *
     * <ul>
     *   <li>{@link Converter}
     *   <li>{@link Equivalence}
     * </ul>
     *
     * <h3>Other</h3>
     *
     * <ul>
     *   <li>{@link Enums}
     *   <li>{@link MoreObjects}
     *   <li>{@link Preconditions}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 16:48:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

         *
         * Valid for {@link SharedLibraryBinarySpec}, {@link StaticLibraryBinarySpec} and
         * {@link NativeExecutableBinarySpec} when the 'c' plugin is applied.
         */
        PreprocessingTool getcCompiler();
    
        /**
         * The configuration of the C++ compiler used when compiling C++ sources for this binary.
         *
         * Valid for {@link SharedLibraryBinarySpec}, {@link StaticLibraryBinarySpec} and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ForwardingList.java

       * you override {@link #listIterator()}, you may wish to override {@link #iterator} to forward to
       * this implementation.
       *
       * @since 7.0
       */
      protected Iterator<E> standardIterator() {
        return listIterator();
      }
    
      /**
       * A sensible default implementation of {@link #listIterator()}, in terms of {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/RemovalCause.java

    @ElementTypesAreNonnullByDefault
    public enum RemovalCause {
      /**
       * The entry was manually removed by the user. This can result from the user invoking {@link
       * Cache#invalidate}, {@link Cache#invalidateAll(Iterable)}, {@link Cache#invalidateAll()}, {@link
       * Map#remove}, {@link ConcurrentMap#remove}, or {@link Iterator#remove}.
       */
      EXPLICIT {
        @Override
        boolean wasEvicted() {
          return false;
        }
      },
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/GraphBuilder.java

       * Specifies the order of iteration for the elements of {@link Graph#edges()}, {@link
       * Graph#adjacentNodes(Object)}, {@link Graph#predecessors(Object)}, {@link
       * Graph#successors(Object)} and {@link Graph#incidentEdges(Object)}.
       *
       * <p>The default value is {@link ElementOrder#unordered() unordered} for mutable graphs. For
       * immutable graphs, this value is ignored; they always have a {@link ElementOrder#stable()
       * stable} order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/link2.txt

    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- gofmt --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- text --
    The Go home page is https://go.dev/. It used to be https://golang.org. https://
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 997 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

    import org.codelibs.core.misc.LocaleUtil;
    
    /**
     * 時刻を表現するオブジェクトから{@link Date}、{@link Calendar}、{@link Time} への変換ユーティリティです。
     * <p>
     * 日付だけを表現するオブジェクトを変換する場合は {@link DateConversionUtil}を、 日付と時刻を表現するオブジェクトを変換する場合は
     * {@link TimestampConversionUtil}を 参照してください。
     * </p>
     * <p>
     * 変換元のオブジェクトが{@link Date}、{@link Calendar}、{@link Time}の場合は、
     * それらの持つミリ秒単位の値を使って変換後のオブジェクトを作成します。
     * その他の型の場合は変換元オブジェクトの文字列表現から変換後のオブジェクトを作成します。
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/OperationType.java

         *     <li>{@link org.gradle.tooling.events.task.TaskFinishEvent}</li>
         * </ul>
         *
         */
        TASK,
    
        /**
         * Flag for operations with no specific type.
         *
         * <p>
         * The following events are currently issued for this operation type.
         * <ul>
         *     <li>{@link StartEvent}</li>
         *     <li>{@link FinishEvent}</li>
         *     <li>{@link StatusEvent}</li>
         * </ul>
         *
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/ValueGraphBuilder.java

       * ValueGraph#adjacentNodes(Object)}, {@link ValueGraph#predecessors(Object)}, {@link
       * ValueGraph#successors(Object)} and {@link ValueGraph#incidentEdges(Object)}.
       *
       * <p>The default value is {@link ElementOrder#unordered() unordered} for mutable graphs. For
       * immutable graphs, this value is ignored; they always have a {@link ElementOrder#stable()
       * stable} order.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 8K bytes
    - Viewed (0)
Back to top