Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for vminus1 (0.1 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

        plus(configuration.get())
    
    
    /**
     * See [Configuration.minus].
     */
    @Deprecated(deprecationMessage, replaceWith = ReplaceWith("get().minus(collection)"), level = DeprecationLevel.HIDDEN)
    operator fun <T : Configuration> NamedDomainObjectProvider<T>.minus(collection: FileCollection): FileCollection =
        get().minus(collection)
    
    
    /**
     * See [Configuration.minus].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/encoding/asn1/marshal.go

    		// form. So we'll invert and subtract 1. If the
    		// most-significant-bit isn't set then we'll need to pad the
    		// beginning with 0xff in order to keep the number negative.
    		nMinus1 := new(big.Int).Neg(n)
    		nMinus1.Sub(nMinus1, bigOne)
    		bytes := nMinus1.Bytes()
    		for i := range bytes {
    			bytes[i] ^= 0xff
    		}
    		if len(bytes) == 0 || bytes[0]&0x80 == 0 {
    			return multiEncoder([]encoder{byteFFEncoder, bytesEncoder(bytes)}), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

          this.arithmetic = arithmetic;
        }
    
        @Override
        public int add(int a, int b) {
          return arithmetic.add(a, b);
        }
    
        @Override
        public int minus(int a, int b) {
          return arithmetic.minus(a, b);
        }
    
        @Override
        public String toString() {
          return arithmetic.toString();
        }
      }
    
      private static class FailsToForwardParameters implements Adder {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. android/guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

          this.arithmetic = arithmetic;
        }
    
        @Override
        public int add(int a, int b) {
          return arithmetic.add(a, b);
        }
    
        @Override
        public int minus(int a, int b) {
          return arithmetic.minus(a, b);
        }
    
        @Override
        public String toString() {
          return arithmetic.toString();
        }
      }
    
      private static class FailsToForwardParameters implements Adder {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableSet.java

       * _could_, so we could keep it as it is. Or we could convince ourselves that hash flooding is
       * unlikely in practice there, too.)
       */
    
      /**
       * Returns an immutable set containing the given elements, minus duplicates, in the order each was
       * first specified. That is, if multiple elements are {@linkplain Object#equals equal}, all except
       * the first are ignored.
       */
      public static <E> ImmutableSet<E> of(E e1, E e2) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

            }
    
            String[] parentComponents = new String[components.length - 1];
            arraycopy(components, 0, parentComponents, 0, components.length - 1);
    
            // Same as the length of this, minus the last element, minus the dot between them
            int parentPathLength = path.length() - components[components.length - 1].length() - 1;
    
            return path(path.substring(0, parentPathLength), parentComponents);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/AbstractFileCollectionTest.groovy

            TestFileCollection collection1 = new TestFileCollection(file1, file2)
            TestFileCollection collection2 = new TestFileCollection(file2, file3)
    
            when:
            FileCollection difference = collection1.minus(collection2)
    
            then:
            difference.files == toLinkedSet(file1)
        }
    
        def "can subtract a collections using - operator"() {
            File file1 = new File("f1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //
    // - arg_immediate_0_width_m1_immh_immb__UIntimmhimmb8_1__UIntimmhimmb16_2__UIntimmhimmb32_4__UIntimmhimmb64_8:
    //     the left shift amount, in the range 0 to the operand width in bits minus 1,
    //     encoded in the "immh:immb" field. It can have the following values:
    //       (UInt(immh:immb)-8) when immh = 0001
    //       (UInt(immh:immb)-16) when immh = 001x
    //       (UInt(immh:immb)-32) when immh = 01xx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa.go

    			}
    			return
    		}
    	}
    
    	// Calculate the inverse of s in GF(N) using Fermat's method
    	// (exponentiation modulo P - 2, per Euler's theorem)
    	kInv.Exp(k, c.nMinus2, c.N)
    }
    
    // hashToNat sets e to the left-most bits of hash, according to
    // SEC 1, Section 4.1.3, point 5 and Section 4.1.4, point 3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. src/crypto/ed25519/ed25519.go

    	}
    
    	S, err := edwards25519.NewScalar().SetCanonicalBytes(sig[32:])
    	if err != nil {
    		return false
    	}
    
    	// [S]B = R + [k]A --> [k](-A) + [S]B = R
    	minusA := (&edwards25519.Point{}).Negate(A)
    	R := (&edwards25519.Point{}).VarTimeDoubleScalarBaseMult(k, minusA, S)
    
    	return bytes.Equal(sig[:32], R.Bytes())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top