Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 201 for content_es (0.29 sec)

  1. android/guava/src/com/google/common/io/LineReader.java

       * '\n'}), a carriage return ({@code '\r'}), or a carriage return followed immediately by a
       * linefeed ({@code "\r\n"}).
       *
       * @return a {@code String} containing the contents of the line, not including any
       *     line-termination characters, or {@code null} if the end of the stream has been reached.
       * @throws IOException if an I/O error occurs
       */
      @CanIgnoreReturnValue // to skip a line
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        /**
         * Reads and returns file contents. If some exception is triggered the method returns information about this exception.
         * Useful for including file contents in debug trace / exception messages.
         *
         * @param file to read
         * @return content of the file or the problem description in case file cannot be read.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

         *
         * @param mode the lock mode to use
         */
        CacheBuilder withInitialLockMode(FileLockManager.LockMode mode);
    
        /**
         * Specifies an action to execute to initialize the cache contents, if the cache does not exist or is invalid. An exclusive lock is held while the initializer is executing, to prevent
         * cross-process access.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXReference.java

             */
            SOURCE_ROOT("SOURCE_ROOT"),
    
            /**
             * Relative to the Developer content directory inside the Xcode application
             * (e.g. {@code /Applications/Xcode.app/Contents/Developer}).
             */
            DEVELOPER_DIR("DEVELOPER_DIR"),;
    
            private final String rep;
    
            SourceTree(String str) {
                rep = str;
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ObjectArrays.java

       */
      public static <T extends @Nullable Object> T[] newArray(T[] reference, int length) {
        return Platform.newArray(reference, length);
      }
    
      /**
       * Returns a new array that contains the concatenated contents of two arrays.
       *
       * @param first the first array of elements to concatenate
       * @param second the second array of elements to concatenate
       * @param type the component type of the returned array
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 12 15:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingEnvMap.java

        }
    
        @Override
        protected Map<String, String> delegate() {
            return delegate;
        }
    
        private void reportAggregatingAccess() {
            // Mark all map contents as inputs if some aggregating access is used.
            delegate.forEach(onAccess);
        }
    
        private AccessTrackingSet.Listener trackingListener() {
            return new AccessTrackingSet.Listener() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/tasks/Sync.java

    import org.gradle.api.tasks.util.PatternSet;
    import org.gradle.internal.file.Deleter;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * Synchronizes the contents of a destination directory with some source directories and files.
     *
     * <p>
     * This task is like the {@link Copy} task, except the destination directory will only contain the files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/MinimalCollection.java

        return new MinimalCollection<>(Object.class, true, contents);
      }
    
      // TODO: use this
      public static <E extends @Nullable Object> MinimalCollection<E> ofClassAndContents(
          Class<? super @NonNull E> type, E... contents) {
        return new MinimalCollection<>(type, true, contents);
      }
    
      private final E[] contents;
      private final Class<? super @NonNull E> type;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/EqualsTester.java

       * objects, and the array itself, can be null. That is for programmer convenience, when the
       * objects come from factory methods that are themselves {@code @Nullable}. In reality neither the
       * array nor its contents can be null, but it is not useful to force the use of {@code
       * requireNonNull} or the like just to assert that.
       *
       * <p>{@code EqualsTester} will always check that every object it is given returns false from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/software/resources/src/main/java/org/gradle/internal/resource/StringTextResource.java

        private final String displayName;
        private final CharSequence contents;
        private HashCode contentHash;
    
        public StringTextResource(String displayName, CharSequence contents) {
            this.displayName = displayName;
            this.contents = contents;
        }
    
        @Override
        public String getDisplayName() {
            return displayName;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top