Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 485 for Here (0.06 sec)

  1. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3ConnectorFactory.java

            // Since s3 transport supports only one type of credentials at a time, let's use the first one found.
            for (Authentication authentication : authentications) {
                // We get only the first element here, nothing else. But Collection
                // forces us to use an iterator.
                if (authentication instanceof AllSchemesAuthentication) {
                    // First things first, retro compatibility
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/BuildScopeInMemoryCachingScriptClassCompiler.java

     * which will use the delegate script class compiler in case of a miss. The lookup in this cache is
     * more efficient than looking in the global cache, as we do not check the script's hash code here,
     * assuming that it did not change during the build.
     */
    public class BuildScopeInMemoryCachingScriptClassCompiler implements ScriptClassCompiler {
        private final CrossBuildInMemoryCachingScriptClassCache cache;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 16:35:08 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ScriptClassloadingIntegrationTest.groovy

                        def version = new File(searchDir, 'version.txt').text
                        ${mavenCentralRepository()}
                        dependencies {
                            // Dynamically changing the classpath here surfaces problems with the ClassLoaderCache
                            classpath "org.apache.commons:commons-lang3:\${version}"
                        }
                    }
    
                    task doStringOp {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultVirtualModuleComponentIdentifier.java

            assert version != null : "version cannot be null";
            this.moduleIdentifier = module;
            this.version = version;
            // Do NOT change the order of members used in hash code here, it's been empirically
            // tested to reduce the number of collisions on a large dependency graph (performance test)
            this.hashCode = Objects.hashCode(version, module);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/LayoutToPropertiesConverter.java

            allBuildOptions.addAll(new LoggingConfigurationBuildOptions().getAllOptions()); // TODO maybe a new converter also here
            allBuildOptions.addAll(new WelcomeMessageBuildOptions().getAllOptions()); // TODO maybe a new converter also here
            allBuildOptions.addAll(new DaemonBuildOptions().getAllOptions());
            allBuildOptions.addAll(new ParallelismBuildOptions().getAllOptions());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchies.java

        }
    
        /**
         * Create the input node access hierarchy.
         *
         * For performance reasons, we keep one input node access hierarchy per project,
         * so we only have a factory method here and this is used to create the hierarchy in {@link org.gradle.execution.ProjectExecutionServices}.
         */
        public InputNodeAccessHierarchy createInputHierarchy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/SuggestionsMessages.groovy

     */
    
    package org.gradle.integtests.fixtures
    
    /**
     * A collection of suggestions to be displayed to the user when a build fails.
     * These where repeated all over the test code, so they are now centralized here.
     */
    
    class SuggestionsMessages {
    
        public static final String INFO_DEBUG = "Run with --info or --debug option to get more log output."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ProguardSmokeTest.groovy

                }
    
                dependencies {
                    implementation 'com.guardsquare:proguard-gradle:${TestedVersions.proguardGradle}'
                }
    
                // Configure the validation task here, since there is no ProGuard plugin
                def validationTask = tasks.register('validatePluginWithId_proguard', ValidatePlugins) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/DependencyResolutionServices.java

     * Provides access to services required for dependency resolution.
     */
    public interface DependencyResolutionServices {
        RepositoryHandler getResolveRepositoryHandler();
    
        // This method is currently referenced by IDEA, here:
        // https://github.com/JetBrains/intellij-community/blob/de935f2d08d531cb4ecad6594dfe09f55b1f8b6f/plugins/gradle/tooling-extension-impl/src/org/jetbrains/plugins/gradle/tooling/builder/VersionCatalogsModelBuilder.java#L50
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * Generates Javadocs in a particular way.
     *
     * TODO: We should remove the workarounds here and migrate some of the changes here into the Javadoc task proper.
     */
    public abstract class GradleJavadocsPlugin implements Plugin<Project> {
    
        @Inject
        protected abstract FileSystemOperations getFs();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top