Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 370 for disallows (0.28 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/operations/OperationIdentifierTest.groovy

            new OperationIdentifier(1).getId() == 1
            new OperationIdentifier(Long.MAX_VALUE).getId() == Long.MAX_VALUE
            new OperationIdentifier(Long.MIN_VALUE).getId() == Long.MIN_VALUE
        }
    
        def "disallows instantiation with a value of 0"() {
            when:
            new OperationIdentifier(0)
    
            then:
            thrown(IllegalArgumentException)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. docs/bucket/quota/README.md

    ![quota](https://raw.githubusercontent.com/minio/minio/master/docs/bucket/quota/bucketquota.png)
    
    Buckets can be configured to have `Hard` quota - it disallows writes to the bucket after configured quota limit is reached.
    
    ## Prerequisites
    
    - Install MinIO - [MinIO Quickstart Guide](https://min.io/docs/minio/linux/index.html#procedure).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AggregateFutureStateFallbackAtomicHelperTest.java

     * test methods in these degenerate classloaders.
     */
    
    public class AggregateFutureStateFallbackAtomicHelperTest extends TestCase {
    
      /**
       * This classloader disallows AtomicReferenceFieldUpdater and AtomicIntegerFieldUpdate which will
       * prevent us from selecting our {@code SafeAtomicHelper} strategy.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/FinalizableValue.java

     * the value in any way will fail by throwing an {@code IllegalStateException}.
     */
    public interface FinalizableValue {
    
        /**
         * Disallows further changes to the value represented by this type.
         * <p>
         * Subsequent calls to methods that mutate the value in any way will fail by throwing an {@code IllegalStateException}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 18:48:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. src/net/iprawsock_test.go

    		if !testableNetwork(tt.net) {
    			t.Logf("skipping %s test", tt.net)
    			continue
    		}
    		c, err := ListenIP(tt.net, tt.laddr)
    		if testenv.SyscallIsNotSupported(err) {
    			// May be inside a container that disallows creating a socket.
    			t.Logf("skipping %s test: %v", tt.net, err)
    			continue
    		} else if err != nil {
    			t.Fatal(err)
    		}
    		defer c.Close()
    		if la := c.LocalAddr(); la == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/TaskExecutionStatisticsReporterTest.groovy

            when:
            reporter.buildFinished(new TaskExecutionStatistics(0, 0, 0))
    
            then:
            (textOutputFactory as String) == ""
            0 * _
        }
    
        def "disallows negative task counts as input"() {
            when:
            reporter.buildFinished(new TaskExecutionStatistics(-1, 12, 7))
    
            then:
            thrown IllegalArgumentException
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirectorTest.groovy

            1 * redir.redirectStandardOutputTo({ it.dest == TestOutputEvent.Destination.StdOut })
    
            then:
            1 * redir.start()
            0 * _
        }
    
        def "disallows starting redirecting if test owner not provided"() {
            when: redirector.startRedirecting()
            then: thrown(AssertionError)
        }
    
        def "allows setting output owner"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/shape_inference_helpers.h

    class BackEdgeHelper {
     public:
      struct BackEdge {
        const Edge* edge;
        Node* src;
        int src_output;
        Node* dst;
        int dst_input;
      };
    
      BackEdgeHelper() = default;
      // Disallows copy and assign.
      BackEdgeHelper(const BackEdgeHelper& other) = delete;
      BackEdgeHelper& operator=(const BackEdgeHelper& other) = delete;
    
      // Temporarily removes all the back edges in graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 12 18:06:51 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/features/CollectionFeature.java

       * contains(null)} or {@code remove(null)}, but instead must return a simple {@code false}.
       */
      ALLOWS_NULL_QUERIES,
      ALLOWS_NULL_VALUES(ALLOWS_NULL_QUERIES),
    
      /**
       * Indicates that a collection disallows certain elements (other than {@code null}, whose validity
       * as an element is indicated by the presence or absence of {@link #ALLOWS_NULL_VALUES}). From the
       * documentation for {@link Collection}:
       *
       * <blockquote>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/features/CollectionFeature.java

       * contains(null)} or {@code remove(null)}, but instead must return a simple {@code false}.
       */
      ALLOWS_NULL_QUERIES,
      ALLOWS_NULL_VALUES(ALLOWS_NULL_QUERIES),
    
      /**
       * Indicates that a collection disallows certain elements (other than {@code null}, whose validity
       * as an element is indicated by the presence or absence of {@link #ALLOWS_NULL_VALUES}). From the
       * documentation for {@link Collection}:
       *
       * <blockquote>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top