Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 135 for content_es (0.16 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/internal/JavadocGenerator.java

                LOG.info("Problems generating Javadoc."
                        + "\n  Command line issued: " + execAction.getCommandLine()
                        + "\n  Generated Javadoc options file has following contents:\n------\n{}------", GFileUtils.readFileQuietly(spec.getOptionsFile()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbsolutePathChangeDetector.java

    import org.gradle.internal.execution.history.changes.CompareStrategy.ChangeDetector;
    
    import java.util.LinkedHashSet;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * Compares by absolute paths and file contents. Order does not matter.
     */
    public class AbsolutePathChangeDetector<S> implements ChangeDetector<S> {
    
        private final ItemComparator<S> itemComparator;
        private final CompareStrategy.ChangeFactory<S> changeFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/taskgraph/TaskExecutionGraphInternal.java

        /**
         * Attaches the work that this graph will run. Fires events and no further tasks should be added.
         */
        void populate(FinalizedExecutionPlan plan);
    
        /**
         * Executes the given work. Discards the contents of this graph when completed. Should call {@link #populate)} prior to
         * calling this method.
         */
        ExecutionResult<Void> execute(FinalizedExecutionPlan plan);
    
        /**
         * Set of requested tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFileWriterContext.java

                    //at least, it will work out of the box on linux or mac environments.
                    //on windows, the options file will have correct contents according to the javadoc spec but it may not work (the failure will be exactly the same as if we didn't replace line breaks)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

         * groovy} configuration will be returned.
         *
         * <p>The returned class path may be empty, or may fail to resolve when asked for its contents.
         *
         * @param classpath a class path containing Groovy Jars
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileTreeTest.groovy

            final FileTreeInternal filtered2 = Mock()
            final PatternSet patterns = Mock()
    
            when:
            FileTree filtered = tree.matching(action)
    
            then: // action is applied each time the contents are queried
            0 * _
    
            when:
            def sourceCollections = (filtered as CompositeFileTree).sourceCollections
    
            then:
            sourceCollections == [filtered1, filtered2]
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. 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)
  8. .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)
  9. 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)
  10. 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)
Back to top