Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for content_es (0.12 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/AbstractFileCollectionTest.groovy

            1 * action.execute(task)
            0 * action._
    
            expect:
            elements.calculateExecutionTimeValue().hasChangingContent()
        }
    
        void "visits self when listener requests contents"() {
            def collection = new TestFileCollection()
            def visitor = Mock(FileCollectionStructureVisitor)
    
            when:
            collection.visitStructure(visitor)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            when:
            run "myTask", "--debug"
            then:
            assertWatchedHierarchies([testDirectory])
            result.assertNotPostBuildOutput("Some of the file system contents retained in the virtual file system are on file systems that Gradle doesn't support watching.")
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "does not start watching on unsupported file system"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

            return objectFileDir;
        }
    
        /**
         * Returns the header directories to be used for compilation.
         */
        @Internal("The paths for include directories are tracked via the includePaths property, the contents are tracked via discovered inputs")
        public ConfigurableFileCollection getIncludes() {
            return includes;
        }
    
        /**
         * Add directories where the compiler should search for header files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            return setFoo(setBar(bar))
        }
    
        static String setBar(String bar) {
            return "bar = \"${bar}\"\n"
        }
    
        static String setFoo(String contents) {
            return "foo {\n${contents}\n}"
        }
    
        static String setAll(String id, String bar) {
            return setId(id) + "\n" + setFooBar(bar)
        }
    
        static String addToList(String item) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            !result
            0 * onAccess._
            0 * onChange._
            0 * onRemove._
        }
    
        private static Properties propertiesWithContent(Map<String, String> contents) {
            Properties props = new Properties()
            props.putAll(contents)
            return props
        }
    
        // Shortcut to have a typed lambda expression in where: block
        private static Consumer<Properties> call(Consumer<Properties> consumer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    If you use the `@Input` annotation on a file-based property, Gradle wouldn't consider the file contents, or the directory contents, as inputs, as you might expect.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            where:
            type                      | creationCommand
            "empty directory"         | { TestFile output -> output.createDir() }
            "directory with contents" | { TestFile output ->
                output.create {
                    file("first-file").text = "leftover file"
                    file("second-file").text = "leftover file"
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top