Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/EnumsInManagedModelIntegrationTest.groovy

                  @Model
                  void p1(Person p1) {}
                }
    
                apply type: Rules
    
                model {
                  p1 {
                    gender = "MALE" // relying on Groovy enum coercion here
                  }
    
                  tasks {
                    create("printGender") {
                      it.doLast {
                        println "gender: " + $("p1").gender
                      }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/ApiMavenResolver.groovy

            // many software projects embedding Maven and is unlikely to change.
            // If this ever does change, we can easily copy the code directly here.
            DefaultRepositorySystemSession session = MavenRepositorySystemUtils.newSession()
            session.setTransferListener(new AbstractTransferListener() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildClassloadingIntegrationTest.groovy

                    def version = new File(searchDir, 'version.txt').text
    
                    dependencies {
                        // Dynamically changing the classpath here surfaces problems with the ClassLoaderCache
                        classpath "org.apache.commons:commons-lang3:\${version}"
                    }
                }
    
                rootProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:26 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top