Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for COMPLEMENT (0.26 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultResolvedVersionConstraintTest.groovy

            e.rejectedSelector instanceof InverseVersionSelector
            e.rejectedSelector.selector == complement
            !e.rejectAll
    
            where:
            strictVersion    | complement
            '1.0'            | '!(1.0)'
            '[1.0, 2.0]'     | '!([1.0, 2.0])'
            '[1.0, 2.0)'     | '!([1.0, 2.0))'
            '(, 2.0)'        | '!((, 2.0))'
            '(, 2.0]'        | '!((, 2.0])'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionSelectorSchemeTest.groovy

            when:
            def reject = matcher.complementForRejection(normal)
    
            then:
            reject instanceof InverseVersionSelector
            reject.selector == complement
    
            where:
            selector         | complement
            '20'             | '!(20)'
            '[3,10]'         | '!([3,10])'
            '(,10)'          | '!((,10))'
            'latest.release' | '!(latest.release)'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionSelectorScheme.java

        /**
         * Creates another version selector which complements the provided one, but also makes sense to use
         * in a rejection rule. It will therefore fail when computing a complement for this use case doesn't
         * make sense.
         * @param selector the selector to create a complement for
         * @return a selector that complements the provided one and can be used in a reject rule
         */
        VersionSelector complementForRejection(VersionSelector selector);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/expr0.go

    	_ = byte /* ERROR "overflows byte" */ (0) - byte(1)
    	_ = ~ /* ERROR "cannot use ~ outside of interface or type constraint (use ^ for bitwise complement)" */ byte(0)
    
    	// int
    	i0 = 1
    	i1 int = i0
    	i2 = +1
    	i3 = +i0
    	i4 int = +1
    	i5 int = +i4
    	i6 = -1
    	i7 = -i0
    	i8 int = -1
    	i9 int = -i4
    	i10 = !i0 /* ERROR "not defined" */
    	i11 = ^1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/AbstractRangeSetTest.java

    @GwtIncompatible // TreeRangeSet
    public abstract class AbstractRangeSetTest extends TestCase {
      public static void testInvariants(RangeSet<?> rangeSet) {
        testInvariantsInternal(rangeSet);
        testInvariantsInternal(rangeSet.complement());
      }
    
      private static <C extends Comparable<?>> void testInvariantsInternal(RangeSet<C> rangeSet) {
        assertEquals(rangeSet.asRanges().isEmpty(), rangeSet.isEmpty());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/index.md

    Although the [Tutorial - User Guide](../tutorial/index.md){.internal-link target=_blank} and this **Advanced User Guide** are written as a guided tutorial (like a book) and should be enough for you to **learn FastAPI**, you might want to complement it with additional courses.
    
    Or it might be the case that you just prefer to take other courses because they adapt better to your learning style.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/archive/tar/strconv.go

    //
    // If operating in binary mode, this assumes strict GNU binary mode; which means
    // that the first byte can only be either 0x80 or 0xff. Thus, the first byte is
    // equivalent to the sign bit in two's complement form.
    func fitsInBase256(n int, x int64) bool {
    	binBits := uint(n-1) * 8
    	return n >= 9 || (x >= -1<<binBits && x < 1<<binBits)
    }
    
    // parseNumeric parses the input as being encoded in either base-256 or octal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/reduce_type_precision.cc

    // This pattern checks if an i8 arith::ConstantOp tensor has all values within
    // the INT4 range, i.e. [-8,7] and converts it into i4 if so. This assumes that
    // the input is sign-extended two's complement.
    class CheckRangeAndConvertI8ToI4 : public OpRewritePattern<arith::ConstantOp> {
     public:
      using OpRewritePattern<arith::ConstantOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(arith::ConstantOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/encoding/binary/varint.go

    //   encoding: Positive values x are written as 2*x + 0, negative values
    //   are written as 2*(^x) + 1; that is, negative numbers are complemented
    //   and whether to complement is encoded in bit 0.
    //
    // Design note:
    // At most 10 bytes are needed for 64-bit values. The encoding could
    // be more dense: a full 64-bit value needs an extra byte just to hold bit 63.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    [[sec:preferred-version]]
    `prefer`::
    This is a very soft version declaration.
    It applies only if there is no stronger non dynamic opinion on a version for the module.
    This term does not support dynamic versions.
    +
    Definition can complement `strictly` or `require`.
    +
    When defined, this overrides any previous `prefer` declaration and clears previous `reject`.
    
    There is also an additional term outside of the level hierarchy:
    
    [[sec:rejected-version]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top