Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 522 for Here (0.07 sec)

  1. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/CachingTextResourceTest.groovy

        }
    
        def existenceCheckReturnsFalseWhenResourceDoesNotExist() {
            when:
            assert !resource.exists
    
            then:
            1 * target.text >> { throw new MissingResourceException(new URI("somewhere:not-here"), "not found")}
            0 * target._
        }
    
        def fetchesAndCachesContentWhenContentQueriedAsString() {
            when:
            assert resource.text == 'content'
            assert resource.exists
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/JavaRecompilationSpecProvider.java

            // Nothing to do for Java compiler here
        }
    
        @Override
        protected boolean isIncrementalOnResourceChanges(CurrentCompilation currentCompilation) {
            return currentCompilation.getAnnotationProcessorPath().isEmpty();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/BuildInvocationScopeId.java

    import org.gradle.internal.id.UniqueId;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * The ID of a single build invocation.
     *
     * Here, the term "build" is used to represent the overall invocation.
     * For example, buildSrc shares the same build scope ID as the overall build.
     * All composite participants also share the same build scope ID.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/api/internal/collections/CollectionEventRegister.java

        void registerRemoveAction(Class<? extends T> type, Action<? super T> removeAction);
    
        <S extends T> CollectionEventRegister<S> filtered(CollectionFilter<S> filter);
    
        // TODO: Migrate this away from here
        CollectionCallbackActionDecorator getDecorator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:12:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/util/RelativePathUtil.java

    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.util.internal.TextUtil;
    
    import java.io.File;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class RelativePathUtil {
    
        private static void logDeprecation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. 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)
Back to top