Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    The method call returns the Ant data type, which you can use directly in your build script.
    In the following example, we create an Ant `path` object, then iterate over the contents of it:
    
    ====
    include::sample[dir="snippets/ant/useAntType/kotlin",files="build.gradle.kts"]
    include::sample[dir="snippets/ant/useAntType/groovy",files="build.gradle"]
    ====
    
    [[sec:using_custom_ant_tasks]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    [[changes_5.6]]
    == Upgrading from 5.5 and earlier
    
    === Deprecations
    
    ==== Changing the contents of `ConfigurableFileCollection` task properties after task starts execution
    
    When a task property has type `ConfigurableFileCollection`, then the file collection referenced by the property will ignore changes made to the contents of the collection once the task starts execution.
    This has two benefits.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

        }
    
        private void reportAccess(Object key, @Nullable Object value) {
            listener.onAccess(key, value);
        }
    
        private void reportAggregatingAccess() {
            // Mark all map contents as inputs if some aggregating access is used.
            delegate.forEach(this::reportAccess);
        }
    
        private void reportChange(Object key, Object value) {
            listener.onChange(key, value);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

        val stateType: StateType
        val stateFile: ConfigurationCacheStateStore.StateFile
        fun outputStream(): OutputStream
        fun inputStream(): InputStream
        fun delete()
    
        // Replace the contents of this state file, by moving the given file to the location of this state file
        fun moveFrom(file: File)
        fun stateFileForIncludedBuild(build: BuildDefinition): ConfigurationCacheStateFile
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

         * <p>
         * It can be set using the system property {@code org.gradle.testkit.dir} for the test process,
         * <p>
         * The actual contents of this directory are an internal implementation detail and may change at any time.
         *
         * @param testKitDir the TestKit directory
         * @return {@code this}
         * @since 2.7
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

                return [(GRADLE_ENCRYPTION_KEY_ENV_KEY): encryptionKeyAsBase64]
            }
            return [:]
        }
    
        private boolean isSubArray(byte[] contents, byte[] toFind) {
            Bytes.indexOf(contents, toFind) >= 0
        }
    
        private TestFile findRequiredKeystoreFile(boolean required = true) {
            def keyStoreDirFiles = keyStoreDir.allDescendants()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    If the absolute path represents a tool being used it probably makes sense to track the tool version as an input instead.
    
    For example, if you are using tools in your `Test` task called `integTest` which depend on the contents of the `LANG` variable you should do this:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  8. LICENSE

              documentation, if provided along with the Derivative Works; or,
              within a display generated by the Derivative Works, if and
              wherever such third-party notices normally appear. The contents
              of the NOTICE file are for informational purposes only and
              do not modify the License. You may add Your own attribution
              notices within Derivative Works that You distribute, alongside
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * <p>
         * Specifying a locale causes javadoc to choose the resource files of that locale for messages
         * (strings in the navigation bar, headings for lists and tables, help file contents,
         * comments in stylesheet.css, and so forth).
         * It also specifies the sorting order for lists sorted alphabetically,
         * and the sentence separator to determine the end of the first sentence.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

         * @param previouslyKnownSnapshots Snapshots already known to exist in the file system.
         * @param unfilteredSnapshotRecorder If the returned snapshot is filtered by the predicate, i.e. it doesn't have all the contents of the directory,
         * then this consumer will receive all the unfiltered snapshots within the snapshot directory.
         * For example, if an element of a directory is filtered out, the consumer will receive all the non-filtered out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
Back to top