Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,734 for Allows (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. docs/metrics/README.md

    Read more on how to use these endpoints in [MinIO healthcheck guide](https://github.com/minio/minio/blob/master/docs/metrics/healthcheck/README.md).
    
    ## Prometheus Probe
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 29 18:35:20 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/FunctionSemantics.kt

                interface Required : ConfigureBlockRequirement
    
                val allows: Boolean
                    get() = this !is NotAllowed
    
                val requires: Boolean
                    get() = this is Required
    
                fun isValidIfLambdaIsPresent(isPresent: Boolean): Boolean = when {
                    isPresent -> allows
                    else -> !requires
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:43:01 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/mock_threshold_notifier_test.go

    func NewMockManager(ctrl *gomock.Controller) *MockManager {
    	mock := &MockManager{ctrl: ctrl}
    	mock.recorder = &MockManagerMockRecorder{mock}
    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockManager) EXPECT() *MockManagerMockRecorder {
    	return m.recorder
    }
    
    // IsUnderDiskPressure mocks base method.
    func (m *MockManager) IsUnderDiskPressure() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/encoding/binary/60023.md

    The new [Encode] and [Decode] functions are byte slice equivalents
    to [Read] and [Write].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:58:26 UTC 2024
    - 157 bytes
    - Viewed (0)
Back to top