Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for content_es (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. .github/workflows/codeql-analysis.yml

      schedule:
        - cron: '0 5 * * *'
    
    permissions: {}
    
    jobs:
      CodeQL-Build:
        permissions:
          actions: read  # for github/codeql-action/init to get workflow details
          contents: read  # for actions/checkout to fetch code
          security-events: write  # for github/codeql-action/analyze to upload SARIF results
        runs-on: ubuntu-latest
    
        strategy:
          fail-fast: false
          matrix:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/file/TaskFilePropertiesIntegrationTest.groovy

            run("transform")
    
            then:
            result.assertTasksNotSkipped(":transform")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "task dependencies are inferred from contents of input FileCollection"() {
            // Include a configuration with transitive dep on a Jar and an unmanaged Jar.
            file('settings.gradle') << 'include "a", "b"'
            file('a/build.gradle') << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

         *
         * @param mode the lock mode to use
         */
        CacheBuilder withInitialLockMode(FileLockManager.LockMode mode);
    
        /**
         * Specifies an action to execute to initialize the cache contents, if the cache does not exist or is invalid. An exclusive lock is held while the initializer is executing, to prevent
         * cross-process access.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. 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)
Back to top