Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 491 for Here (0.07 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/CrashingBuildsArtifactTransformIntegrationTest.groovy

            def outputDirectory = one.parentFile
            assert outputDirectory.directory && outputDirectory.list().length == 0
            println "Transforming \$input.name to \$color"
            one.text = "one"
            // maybe killed here
            if (parameters.broken.get()) {
                Runtime.runtime.halt(1)
            }
            def two = outputs.file("two")
            two.text = "two"
        }
    }
    
    dependencies {
        registerTransform(ToColor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactVisitor.java

        /**
         * Should the file for each artifact be made available prior to calling {@link #visitArtifact(DisplayName, AttributeContainer, ImmutableCapabilities, ResolvableArtifact)}?
         *
         * Returns true here allows the collection to preemptively resolve the files in parallel.
         */
        boolean requireArtifactFiles();
    
        /**
         * Called when some problem occurs visiting some element of the set. Visiting may continue.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/build.gradle.kts

        implementation(libs.errorProneAnnotations)
        implementation(libs.julToSlf4j)
        implementation(libs.commonsLang)
        implementation(libs.commonsIo)
        implementation(libs.guava)
    
        // GSon is not strictly required here but removing it moves the dependency in the distribution from lib to lib/plugins
        // TODO Check if this is an issue
        runtimeOnly(libs.gson)
        runtimeOnly(libs.jclToSlf4j)
        runtimeOnly(libs.log4jToSlf4j)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectPublicationRegistry.java

    import javax.annotation.concurrent.ThreadSafe;
    import java.util.Collection;
    
    /**
     * A build scoped service that collects information on the local "publications" of each project within a build. A "publication" here means some buildable thing that the project produces that can be consumed outside of the project.
     *
     * The information is gathered from multiple sources ({@code publishing.publications} container, etc.).
     */
    @ThreadSafe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. testing/public-api-tests/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        // TODO Can we apply less here?
        id("gradlebuild.internal.java")
    
    //    id("gradlebuild.repositories")
    //    id("gradlebuild.integration-tests")
    }
    
    val testRepo = configurations.dependencyScope("testRepo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top