Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,460 for sinhe5 (0.14 sec)

  1. apache-maven/src/site/apt/index.apt.vm

    || POSIX   | <<</etc/mavenrc>>>\
    ||         | <<</usr/local/etc/mavenrc>>> (since 3.8.2) | <<<$HOME/.mavenrc>>> 
    *----------+--------------------------------------------+-----------------------+
    || Windows | <<<%PROGRAMDATA%\\mavenrc.cmd>>> (since 4) | <<<%USERPROFILE%\\mavenrc_pre.bat>>>\
    ||         |                                            | <<<%USERPROFILE%\\mavenrc_pre.cmd>>> (since 3.3.1)\
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Aug 20 00:26:03 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheLocalStoreBuildOperationType.java

     * Store operation results and failures are mutually exclusive.
     *
     *  @since 8.6
     */
    public final class BuildCacheLocalStoreBuildOperationType implements BuildOperationType<BuildCacheLocalStoreBuildOperationType.Details, BuildCacheLocalStoreBuildOperationType.Result> {
    
        public interface Details {
    
            /**
             * The cache key.
             *
             * @since 8.6
             */
            String getCacheKey();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingMap.java

       *
       * @since 7.0
       */
      protected int standardHashCode() {
        return Sets.hashCodeImpl(entrySet());
      }
    
      /**
       * A sensible definition of {@link #toString} in terms of the {@code iterator} method of {@link
       * #entrySet}. If you override {@link #entrySet}, you may wish to override {@link #toString} to
       * forward to this implementation.
       *
       * @since 7.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Launchable.java

     *
     * @since 1.12
     */
    public interface Launchable extends ProjectModel {
        /**
         * Returns the identifier for the Gradle project that this model originated from.
         *
         * @since 2.13
         */
        @Override
        ProjectIdentifier getProjectIdentifier();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVersionConstraint.java

     * more constraints on a module version.
     *
     * @since 4.4
     */
    @HasInternalProtocol
    public interface MutableVersionConstraint extends VersionConstraint {
        /**
         * Returns the branch to select versions from. When not {@code null}, select only versions that were built from the given branch.
         *
         * @since 4.6
         */
        @Override
        @Nullable
        String getBranch();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 30 23:02:48 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ForwardingList.java

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

       *
       * @since 7.0
       */
      protected boolean standardIsEmpty() {
        return !iterator().hasNext();
      }
    
      /**
       * A sensible definition of {@link #toString} in terms of {@link #iterator}. If you override
       * {@link #iterator}, you may wish to override {@link #toString} to forward to this
       * implementation.
       *
       * @since 7.0
       */
      protected String standardToString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 8.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ForwardingCollection.java

       *
       * @since 7.0
       */
      protected boolean standardIsEmpty() {
        return !iterator().hasNext();
      }
    
      /**
       * A sensible definition of {@link #toString} in terms of {@link #iterator}. If you override
       * {@link #iterator}, you may wish to override {@link #toString} to forward to this
       * implementation.
       *
       * @since 7.0
       */
      protected String standardToString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 8.2K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheLocalLoadBuildOperationType.java

     * Load operation results and failures are mutually exclusive.
     *
     * @since 8.6
     */
    public final class BuildCacheLocalLoadBuildOperationType implements BuildOperationType<BuildCacheLocalLoadBuildOperationType.Details, BuildCacheLocalLoadBuildOperationType.Result> {
    
        public interface Details {
    
            /**
             * The cache key.
             *
             * @since 8.6
             */
            String getCacheKey();
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemGroup.java

     *
     * @since 8.8
     * @see ProblemId
     */
    @Incubating
    @Immutable
    public interface ProblemGroup {
    
        /**
         * The name of the problem group.
         *
         * @since 8.8
         */
        String getName();
    
        /**
         * Returns a human-readable label describing the group.
         *
         * @since 8.8
         */
        String getDisplayName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top