Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for content_es (0.14 sec)

  1. 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)
  2. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/api/plugins/JavaLibraryDistributionIntegrationTest.groovy

            buildFile << """
    		apply plugin:'java-library-distribution'
    
            version = 1.2
    
            distributions {
                main {
                    distributionBaseName = 'SuperApp'
                    contents {
                        from 'others/dist'
                    }
                }
            }
    
            ${mavenCentralRepository()}
            dependencies {
                runtimeOnly 'commons-lang:commons-lang:2.6'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. .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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/TestReport.java

         * point to the binary test results directory generated by a {@link Test} task instance.</li>
         *
         * <li>An {@link Iterable}. The contents of the iterable are converted recursively.</li>
         *
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

                    }
                    false
                }
                else -> {
                    true
                }
            }
    
            override fun visitCollection(source: FileCollectionInternal.Source, contents: Iterable<File>) =
                throw UnsupportedOperationException()
    
            override fun visitFileTree(root: File, patterns: PatternSet, fileTree: FileTreeInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

        /**
         * Adds an action to be applied to each file as it is about to be copied into its destination. The action can change
         * the destination path of the file, filter the contents of the file, or exclude the file from the result entirely.
         * Actions are executed in the order added, and are inherited from the parent spec.
         *
         * @param action The action to execute.
         * @return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top