Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,434 for Allows (0.12 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

            def jdt = parseJdtFile()
            assert jdt.contains('targetPlatform=1.3')
            assert jdt.contains('source=1.4')
        }
    
        @ToBeFixedForConfigurationCache
        void "allows custom matcher resource filter"() {
            given:
            buildScript """
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    eclipse {
      project {
        resourceFilter {
          appliesTo = 'FILES_AND_FOLDERS'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

        /**
         * Allows lazy access to the contents of the given file.
         *
         * When the file contents are read at configuration time the file is automatically considered
         * as an input to the configuration model.
         *
         * @param file the file whose contents to read.
         * @return an interface that allows lazy access to the contents of the given file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/public/BUILD

    # Once moved out of experimental, these will be stable.
    # The idea behind a separate public/ directory is to make apparent
    # which headers are part of TF's public interface (and which headers)
    # are implementation details. This structure allows us to also perform future
    # programmatic checks that all "public" headers only include other "public"
    # headers.
    
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/DefaultTestFilterTest.groovy

    import org.gradle.api.InvalidUserDataException
    import spock.lang.Specification
    
    class DefaultTestFilterTest extends Specification {
    
        def spec = new DefaultTestFilter()
    
        def "allows configuring test names"() {
            expect: spec.includePatterns.isEmpty()
    
            when:
            spec.includeTestsMatching("*fooMethod")
            spec.includeTestsMatching("*.FooTest.*")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpec.groovy

    @Timeout(60)
    class ConcurrentSpec extends Specification {
        final TestLogger logger = new TestLogger()
    
        /**
         * An object that allows instants to be defined and queried.
         *
         * @see NamedInstant
         */
        final Instants instant = new Instants(logger)
    
        /**
         * An object that allows operations to be defined and queried.
         *
         * @see NamedOperation
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

        return errors::FailedPrecondition(
            "Filesystem allows creation of random access files but no "
            "operations on them have been supplied.");
    
      if ((ops->filesystem_ops->new_writable_file != nullptr ||
           ops->filesystem_ops->new_appendable_file != nullptr) &&
          ops->writable_file_ops == nullptr)
        return errors::FailedPrecondition(
            "Filesystem allows creation of writable files but no "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/composite/internal/BuildTreeWorkGraphController.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nonnull;
    import javax.annotation.meta.When;
    import java.util.function.Function;
    
    /**
     * A service that allows work graphs to be created, populated and executed.
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface BuildTreeWorkGraphController {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/work/DisableCachingByDefault.java

     *
     * Not all work benefits from caching: for example tasks that only copy content around on disk rarely do.
     * This annotation allows clearly stating that work does not benefit from caching.
     * It also allows attaching an explanation about why a certain work unit is not made cacheable.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 20 20:53:24 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/TestTaskPropertiesService.java

    import org.gradle.api.tasks.testing.Test;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Provides access to the configuration of {@link Test} tasks and allows
     * disabling storing their outputs in the build cache.
     */
    @ServiceScope(Scope.Project.class)
    public interface TestTaskPropertiesService {
    
        /**
         * Collect the configuration of the given task.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/test/groovy/org/gradle/api/tasks/scala/internal/ScalaRuntimeHelperTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.tasks.scala.internal
    
    import spock.lang.Specification
    
    class ScalaRuntimeHelperTest extends Specification {
        def "allows to find Scala Jar on class path"() {
            when:
            def file = ScalaRuntimeHelper.findScalaJar([new File("other.jar"), new File("scala-jdbc-1.5.jar"), new File("scala-compiler-1.7.jar")], "jdbc")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top