Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 6,993 for LINK (0.04 sec)

  1. 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)
  2. src/main/java/org/codelibs/core/beans/FieldDesc.java

         */
        boolean isParameterized();
    
        /**
         * フィールドの型を表現する{@link ParameterizedClassDesc}を返します。
         *
         * @return フィールドの型を表現する{@link ParameterizedClassDesc}
         */
        ParameterizedClassDesc getParameterizedClassDesc();
    
        /**
         * このフィールドがパラメタ化された{@link Collection}の場合、その要素型を返します。
         *
         * @return このフィールドがパラメタ化された{@link Collection}の場合はその要素型、そうでない場合は
         *         {@literal null}
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ForwardingNavigableSet.java

      public E lower(@ParametricNullness E e) {
        return delegate().lower(e);
      }
    
      /**
       * A sensible definition of {@link #lower} in terms of the {@code descendingIterator} method of
       * {@link #headSet(Object, boolean)}. If you override {@link #headSet(Object, boolean)}, you may
       * wish to override {@link #lower} to forward to this implementation.
       */
      @CheckForNull
      protected E standardLower(@ParametricNullness E e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

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

        }
    
        ConventionTask getTask() {
            return groovydoc
        }
    
        def "link with null URL is invalid"() {
            when:
            groovydoc.link(null, "package")
    
            then:
            thrown(InvalidUserDataException)
        }
    
        def "link with empty package list is invalid"() {
            when:
            groovydoc.link("http://www.abc.de")
    
            then:
            thrown(InvalidUserDataException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. docs/en/data/external_links.yml

    English: - author: Stephen Siegert - Neon link: https://neon.tech/blog/deploy-a-serverless-fastapi-app-with-neon-postgres-and-aws-app-runner-at-any-scale title: Deploy a Serverless FastAPI App with Neon Postgres and AWS App Runner at any scale - author: Kurtis Pykes - NVIDIA link: https://developer.nvidia.com/blog/building-a-machine-learning-microservice-with-fastapi/ title: Building a Machine Learning Microservice with FastAPI - author: Ravgeet Dhillon - Twilio link: https://www.twilio.com/en-us/blog/...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/package-info.java

     *
     * <p>Other classes implementing <code>Property</code> in this module:</p>
     * <ul>
     *     <li>{@link org.gradle.api.internal.provider.DefaultProperty} - a concrete implementation for general-purpose properties.</li>
     *     <li>{@link org.gradle.api.internal.provider.AbstractCollectionProperty} - implements the API for
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/IndexedIterator.java

        /** {@link Iterator} */
        protected final Iterator<T> iterator;
    
        /** イテレータのインデックス */
        protected int index;
    
        /**
         * for each構文で使用するために{@link IndexedIterator}をラップした{@link Iterable}を返します。
         *
         * @param <T>
         *            {@link Iterable}の要素型
         * @param iterable
         *            {@link Iterable}。{@literal null}であってはいけません
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LoadingCache.java

       * be logged (using {@link java.util.logging.Logger}) and swallowed</i>.
       *
       * <p>Caches loaded by a {@link CacheLoader} will call {@link CacheLoader#reload} if the cache
       * currently contains a value for {@code key}, and {@link CacheLoader#load} otherwise. Loading is
       * asynchronous only if {@link CacheLoader#reload} was overridden with an asynchronous
       * implementation.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingMapEntry.java

      }
    
      @Override
      public int hashCode() {
        return delegate().hashCode();
      }
    
      /**
       * A sensible definition of {@link #equals(Object)} in terms of {@link #getKey()} and {@link
       * #getValue()}. If you override either of these methods, you may wish to override {@link
       * #equals(Object)} to forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardEquals(@CheckForNull Object object) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top