Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 202 for content_es (0.09 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputFile.java

     *
     * <p>The parent directory will be created before the task is executed if it does not exist
     * already.</p>
     *
     * <p>This will cause the task to be considered out-of-date when the file path or contents
     * are different to when the task was last run.</p>
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.FIELD})
    public @interface OutputFile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 12:53:53 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/LazilyInitializedFileCollection.java

    import org.gradle.api.internal.tasks.DefaultTaskDependencyFactory;
    import org.gradle.api.internal.tasks.TaskDependencyFactory;
    
    import java.util.function.Consumer;
    
    /**
     * A {@link FileCollection} whose contents is created lazily.
     */
    public abstract class LazilyInitializedFileCollection extends CompositeFileCollection {
    
        // Used in a third-party plugin Freefair AspectJ:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/package-info.java

     * library.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * <h2>Contents</h2>
     *
     * <h3>Value types</h3>
     *
     * <ul>
     *   <li>{@link ImmutableDoubleArray}
     *   <li>{@link ImmutableIntArray}
     *   <li>{@link ImmutableLongrray}
     *   <li>{@link UnsignedInteger}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/software/resources/src/main/java/org/gradle/internal/resource/EmptyFileTextResource.java

        }
    
        @Override
        public boolean getHasEmptyContent() {
            return true;
        }
    
        @Override
        public File getFile() {
            // Returns null as there is no file that contains this resource's contents,
            // however {@link ResourceLocation#getFile()} would still return the given `sourceFile`
            return null;
        }
    
        @Override
        public Charset getCharset() {
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/ByteArrayDataOutput.java

       *     UTF-8, use {@code write(s.getBytes(StandardCharsets.UTF_8))}.
       */
      @Deprecated
      @Override
      void writeBytes(String s);
    
      /** Returns the contents that have been written to this instance, as a byte array. */
      byte[] toByteArray();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/BufferingStyledTextOutput.java

        private final List<Action<StyledTextOutput>> events = new ArrayList<Action<StyledTextOutput>>();
        private boolean hasContent;
    
        /**
         * Writes the buffered contents of this output to the given target, and clears the buffer.
         */
        public void writeTo(StyledTextOutput output) {
            for (Action<StyledTextOutput> event : events) {
                event.execute(output);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java

        /**
         * Merges the specified source object into the given target object.
         *
         * @param target The target object whose existing contents should be merged with the source, must not be
         *            <code>null</code>.
         * @param source The (read-only) source object that should be merged into the target object, may be
         *            <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java

       * its input unmodified. Provided that the test suite is built without {@link
       * com.google.common.collect.testing.features.CollectionFeature#KNOWN_ORDER}, the tests will look
       * only at the returned contents without regard for order.
       */
      Iterable<E> order(List<E> insertionOrder);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestResources.java

    /**
     * Provides access to test resources for integration testing. Looks for the following directory in the test classpath:
     * <ul> <li>${testClass}/shared</li> <li>${testClass}/${testName}</li> </ul>
     *
     * Copies the contents of each such directory into a temporary directory for the test to use.
     */
    public class TestResources implements MethodRule {
        private final Logger logger = LoggerFactory.getLogger(TestResources.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/PersistentCache.java

     *
     * <p>You can use {@link CacheBuilder#withInitializer(java.util.function.Consumer)} to provide an action to initialize the contents
     * of the cache, for building a read-only cache. An exclusive lock is held by this process while the initializer is running.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top