Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 224 for content_es (0.09 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

            this.containers.addAll(Arrays.asList(containers));
        }
    
        /**
         * Enables advanced configuration like tinkering with the output XML or affecting the way
         * that the contents of an existing .classpath file is merged with Gradle build information.
         * The object passed to the whenMerged{} and beforeMerged{} closures is of type {@link Classpath}.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. 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)
  3. testing/performance/README.md

    - Build configuration time.
    - Task execution time.
    - Heap consumption at the end of the build.
    - Total heap usage during the build
    
    ### Report
    
    A `performance:report` task generates a static HTML report from the contents of the database in `~/.gradle-performance-test-data`. This report allows the results over
    time to be visualized.
    
    The reports for the most recent test suite run against master can be found at:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         * @return {@link WorkResult} that can be used to check if the copy did any work.
         */
        WorkResult copy(Action<? super CopySpec> action);
    
        /**
         * Synchronizes the contents of a destination directory with some source directories and files.
         * The given action is used to configure a {@link CopySpec}, which is then used to synchronize the files.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvableDependencies.java

         */
        String getPath();
    
        /**
         * Returns a {@link FileCollection} which contains the resolved set of files. The returned value is lazy, so dependency resolution is not performed until the contents of the collection are queried.
         *
         * <p>The {@link FileCollection} carries the task dependencies required to build the files in the result, and when used as a task input the files will be built before the task executes.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 17:30:50 UTC 2023
    - 5.1K 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. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

                    line.startsWith("DEFAULT_JVM_OPTS='") && line.endsWith('\'') -> {
                        ++replacementsCount
                        // Use shell's string concatenation: '...'"..." glues contents of quoted and double-quoted strings together.
                        // The result would be something like DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'" \"-javaagent:$APP_HOME/lib/agents/foobar.jar\""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:25:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

            if (fileName.startsWith('maven-metadata.xml')) {
                if (fileName == 'maven-metadata.xml') {
                    return clearLastUpdatedElementOf(repositoryFile.text)
                }
                // Ignore contents of maven-metadata.xml.sha256, etc, because hashes will most likely
                // change between runs due to <lastUpdated /> differences.
                return ''
            }
            return repositoryFile.text
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/AbstractCollectionModelProjectionTest.groovy

            list.toArray() == ['foo', 'bar', 'baz'] as String[]
            list.toArray(new String[0]) == ['foo', 'bar', 'baz'] as String[]
        }
    
        def "can check contents"() {
            when:
            mutate {
                add 'foo'
                add 'bar'
                add 'baz'
            }
    
            then:
            def list = registry.realize(collectionPath, collectionType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top