Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for content_es (0.08 sec)

  1. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPluginConvention.java

        /**
         * Directory to place executables in
         *
         * @since 4.5
         */
        public abstract void setExecutableDir(String executableDir);
    
        /**
         * <p>The specification of the contents of the distribution.</p>
         * <p>
         * Use this {@link org.gradle.api.file.CopySpec} to include extra files/resource in the application distribution.
         * <pre class='autoTested'>
         * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/JavaApplication.java

         */
        String getExecutableDir();
    
        /**
         * Directory to place executables in
         */
        void setExecutableDir(String executableDir);
    
        /**
         * <p>The specification of the contents of the distribution.</p>
         * <p>
         * Use this {@link org.gradle.api.file.CopySpec} to include extra files/resource in the application distribution.
         * <pre class='autoTested'>
         * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingInputStreamHasher.java

        private static final HashCode SIGNATURE = Hashing.signature(LineEndingNormalizingInputStreamHasher.class);
        private static final int BUFFER_SIZE = 8192;
    
        /**
         * Hash the contents of the provided input stream, normalizing line endings.
         *
         * @param inputStream The input stream to hash
         * @return An {@link Optional} containing the {@link HashCode} or empty if the file is binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         * Not all resources are available as a file.
         * Note that this method may return null when {@link ResourceLocation#getFile()} returns non-null, when the contents are different.
         *
         * @return A file containing this resource. Returns null if this resource is not available as a file.
         */
        @Nullable
        File getFile();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheDecorator.java

     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    public interface CacheDecorator {
        /**
         * @param cacheId Unique id for this cache instance.
         * @param cacheName Name for the type of contents stored in this cache instance.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/SingleIncludePatternFileTree.java

                        throw new GradleException(String.format("Could not list contents of directory '%s' as it is not readable.", file));
                    }
                    // else, might be a link which points to nothing, or has been removed while we're visiting, or ...
                    throw new GradleException(String.format("Could not list contents of '%s'.", file));
                }
                for (File child : children) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

                try {
                    visitEntries(builder);
                } catch (FileException e) {
                    // Badly formed archive, so discard the contents and produce an empty JAR
                    LOGGER.debug("Malformed archive '{}'. Discarding contents.", source.getName(), e);
                }
            });
        }
    
        private BiConsumer<File, ClasspathBuilder.Action> resultBuilder() {
            if (source.isDirectory()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Serialization.java

       * ObjectOutputStream)}.
       */
      static int readCount(ObjectInputStream stream) throws IOException {
        return stream.readInt();
      }
    
      /**
       * Stores the contents of a map in an output stream, as part of serialization. It does not support
       * concurrent maps whose content may change while the method is running.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/streams/ValueStore.java

         * flushed to the filesystem on completion of this method.
         */
        BlockAddress write(T value);
    
        /**
         * Reads the contents of the given block.
         * The current thread performs the decoding.
         */
        T read(BlockAddress blockAddress);
    
        interface Writer<T> {
            void write(Encoder encoder, T value) throws Exception;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/SyncSpec.java

    import org.gradle.api.Action;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.util.PatternFilterable;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Synchronizes the contents of a destination directory with some source directories and files.
     *
     * @since 7.5
     */
    @HasInternalProtocol
    public interface SyncSpec extends CopySpec {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 09:09:21 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top