Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 6,993 for LINK (0.04 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleSource.java

     * <ul>
     * <li>{@link Model}</li>
     * <li>{@link Defaults}</li>
     * <li>{@link Mutate}</li>
     * <li>{@link Finalize}</li>
     * <li>{@link Validate}</li>
     * <li>{@link Rules}</li>
     * <li>{@link org.gradle.platform.base.ComponentType}</li>
     * <li>{@link org.gradle.platform.base.ComponentBinaries}</li>
     * <li>{@link org.gradle.platform.base.BinaryTasks}</li>
     * </ul>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. android/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)
  3. android/guava-testlib/src/com/google/common/collect/testing/IteratorFeature.java

       * Support for {@link ListIterator#set(Object)}; ignored for plain {@link Iterator}
       * implementations.
       */
      SUPPORTS_SET;
    
      /**
       * A set containing none of the optional features of the {@link Iterator} or {@link ListIterator}
       * interfaces.
       */
      public static final Set<IteratorFeature> UNMODIFIABLE = emptySet();
    
      /**
       * A set containing all of the optional features of the {@link Iterator} and {@link ListIterator}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 18:22:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RowSortedTable.java

    /**
     * Interface that extends {@code Table} and whose rows are sorted.
     *
     * <p>The {@link #rowKeySet} method returns a {@link SortedSet} and the {@link #rowMap} method
     * returns a {@link SortedMap}, instead of the {@link Set} and {@link Map} specified by the {@link
     * Table} interface.
     *
     * @author Warren Dukes
     * @since 8.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/RowSortedTable.java

    /**
     * Interface that extends {@code Table} and whose rows are sorted.
     *
     * <p>The {@link #rowKeySet} method returns a {@link SortedSet} and the {@link #rowMap} method
     * returns a {@link SortedMap}, instead of the {@link Set} and {@link Map} specified by the {@link
     * Table} interface.
     *
     * @author Warren Dukes
     * @since 8.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/io/LineIterator.java

         * @return {@link LineIterator}をラップした{@link Iterable}
         */
        public static Iterable<String> iterable(final Reader reader) {
            assertArgumentNotNull("reader", reader);
            return iterable(new BufferedReader(reader));
        }
    
        /**
         * for each構文で使用するために{@link LineIterator}をラップした{@link Iterable}を返します。
         *
         * @param reader
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. docs/en/mkdocs.yml

        link: https://medium.com/@tiangolo
      - icon: fontawesome/solid/globe
        link: https://tiangolo.com
      alternate:
      - link: /
        name: en - English
      - link: /az/
        name: az - azərbaycan dili
      - link: /bn/
        name: bn - বাংলা
      - link: /de/
        name: de - Deutsch
      - link: /es/
        name: es - español
      - link: /fa/
        name: fa - فارسی
      - link: /fr/
        name: fr - français
      - link: /he/
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/ActionConfiguration.java

     *
     * <ul>
     *     <li>{@link String}</li>
     *     <li>{@link Boolean}</li>
     *     <li>{@link Integer}, {@link Long}, {@link Short} and other {@link Number} subtypes.</li>
     *     <li>{@link java.io.File}</li>
     *     <li>A {@link java.util.List} or {@link java.util.Set} of any supported type.</li>
     *     <li>An array of any supported type.</li>
     *     <li>A {@link java.util.Map} with keys and values of any supported type.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 13:15:03 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/testFixtures/groovy/org/gradle/internal/file/AbstractFileMetadataAccessorTest.groovy

        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "stats symlink"() {
            def file = tmpDir.file("file")
            file.text = "123"
            def link = tmpDir.file("link")
            link.createLink(file)
    
            expect:
            def stat = accessor.stat(link)
            stat.type == FileType.RegularFile
            assertSameLastModified(stat, file)
            stat.length == 3
            assertSameAccessType(stat, VIA_SYMLINK)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

        }
      }
    
      @Override
      @CheckForNull
      public Entry<K, V> lastEntry() {
        return delegate().lastEntry();
      }
    
      /**
       * A sensible definition of {@link #lastEntry} in terms of the {@code iterator()} of the {@link
       * #entrySet} of {@link #descendingMap}. If you override {@code descendingMap}, you may wish to
       * override {@code lastEntry} to forward to this implementation.
       */
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top