Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 322 for Negate (0.12 sec)

  1. platforms/core-configuration/base-services-groovy/src/test/groovy/org/gradle/api/specs/SpecsTest.groovy

            expect:
            Specs.negate(Specs.satisfyAll()) == Specs.satisfyNone()
        }
    
        def "negation of none is all"() {
            expect:
            Specs.negate(Specs.satisfyNone()) == Specs.satisfyAll()
        }
    
        def "negation of spec is !spec"() {
            def spec = Stub(Spec)
    
            expect:
            def negation = Specs.negate(spec)
            negation instanceof NotSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

        public final method getSecondValue(): int
        public final inner class Operation$Add
    }
    
    public final class Operation$Negate {
        // source: 'classKinds.kt'
        private final field value: int
        public method <init>(p0: int): void
        public final method getValue(): int
        public final inner class Operation$Negate
    }
    
    public final class Operation$Subtract {
        // source: 'classKinds.kt'
        private final field minuend: int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/codegen/GradleApiMetadata.kt

        when {
            includes.isEmpty() && excludes.isEmpty() -> PatternMatcher.MATCH_ALL
            includes.isEmpty() -> patternSpecFor(excludes).negate()
            excludes.isEmpty() -> patternSpecFor(includes)
            else -> patternSpecFor(includes).and(patternSpecFor(excludes).negate())
        }
    
    
    private
    fun patternSpecFor(patterns: List<String>) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:07 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

                      receiver: GET_VAR '<this>: <root>.Operation.Negate declared in <root>.Operation.Negate.<get-value>' type=<root>.Operation.Negate origin=null
            CONSTRUCTOR visibility:public <> (value:kotlin.Int) returnType:<root>.Operation.Negate [primary]
              VALUE_PARAMETER name:value index:0 type:kotlin.Int
              BLOCK_BODY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.kt

        NORTH, SOUTH, WEST, EAST
    }
    
    sealed class Operation {
        class Add(val firstValue: Int, val secondValue: Int) : Operation()
        class Subtract(val minuend: Int, val subtrahend: Int) : Operation()
        class Negate(val value: Int) : Operation()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 426 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/CharMatcher.java

        }
      }
    
      // Non-static factory implementation classes
    
      /** Implementation of {@link #negate()}. */
      private static class Negated extends CharMatcher {
    
        final CharMatcher original;
    
        Negated(CharMatcher original) {
          this.original = checkNotNull(original);
        }
    
        @Override
        public boolean matches(char c) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe_alias_test.go

    		twoArgsF func(v, x, y *Element) *Element
    	}
    	for _, tt := range []target{
    		{name: "Absolute", oneArgF: (*Element).Absolute},
    		{name: "Invert", oneArgF: (*Element).Invert},
    		{name: "Negate", oneArgF: (*Element).Negate},
    		{name: "Set", oneArgF: (*Element).Set},
    		{name: "Square", oneArgF: (*Element).Square},
    		{name: "Pow22523", oneArgF: (*Element).Pow22523},
    		{
    			name: "Mult32",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-BatchMatMulV2.mlir

    // CHECK:           [[LHSIM:%.*]] = mhlo.imag [[LHS]]
    // CHECK:           [[LHSIMNEG:%.*]] = mhlo.negate [[LHSIM]]
    // CHECK:           [[LHSCONJ:%.*]] = mhlo.complex [[LHSRE]], [[LHSIMNEG]]
    // CHECK:           [[RHSRE:%.*]] = mhlo.real [[RHS]]
    // CHECK:           [[RHSIM:%.*]] = mhlo.imag [[RHS]]
    // CHECK:           [[RHSIMNEG:%.*]] = mhlo.negate [[RHSIM]]
    // CHECK:           [[RHSCONJ:%.*]] = mhlo.complex [[RHSRE]], [[RHSIMNEG]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalar_alias_test.go

    			return false
    		}
    
    		// Ensure the arguments were not modified.
    		return x == x1 && y == y1
    	}
    
    	for name, f := range map[string]interface{}{
    		"Negate": func(v, x Scalar) bool {
    			return checkAliasingOneArg((*Scalar).Negate, v, x)
    		},
    		"Multiply": func(v, x, y Scalar) bool {
    			return checkAliasingTwoArgs((*Scalar).Multiply, v, x, y)
    		},
    		"Add": func(v, x, y Scalar) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/CharMatcher.java

        }
      }
    
      // Non-static factory implementation classes
    
      /** Implementation of {@link #negate()}. */
      private static class Negated extends CharMatcher {
    
        final CharMatcher original;
    
        Negated(CharMatcher original) {
          this.original = checkNotNull(original);
        }
    
        @Override
        public boolean matches(char c) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top