Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for menus (0.1 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        return true;
      }
    
      // Display action menu (triggered by right-click on a frame)
      function showActionMenu(e, box) {
        if (box.src == 0) return; // No action menu for root
        e.preventDefault(); // Disable browser context menu
        const src = stacks.Sources[box.src];
        actionTitle.innerText = src.Display[src.Display.length-1];
        const menu = actions;
        menu.style.display = 'block';
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSet.java

       * 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) {
        return construct(2, e1, e2);
      }
    
      /**
       * Returns an immutable set containing the given elements, minus duplicates, in the order each was
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

            }
        }
    
        /**
         * Same behavior as Groovy minus operator between Strings
         *
         * @param originalString original string
         * @param removeString string to remove
         * @return string with removeString removed or the original string if it did not contain removeString
         */
        public static String minus(String originalString, String removeString) {
            String s = originalString.toString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

            fileCollectionFactory.resolving(
                readList().map { element ->
                    when (element) {
                        is File -> element
                        is SubtractingFileCollectionSpec -> element.left.minus(element.right)
                        is FilteredFileCollectionSpec -> element.collection.filter(element.filter)
                        is ProviderBackedFileCollectionSpec -> element.provider
                        is FileTree -> element
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/CompactHashSet.java

       * collection in unspecified order.
       *
       * @param collection the elements that the set should contain
       * @return a new {@code CompactHashSet} containing those elements (minus duplicates)
       */
      public static <E extends @Nullable Object> CompactHashSet<E> create(
          Collection<? extends E> collection) {
        CompactHashSet<E> set = createWithExpectedSize(collection.size());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactHashSet.java

       * collection in unspecified order.
       *
       * @param collection the elements that the set should contain
       * @return a new {@code CompactHashSet} containing those elements (minus duplicates)
       */
      public static <E extends @Nullable Object> CompactHashSet<E> create(
          Collection<? extends E> collection) {
        CompactHashSet<E> set = createWithExpectedSize(collection.size());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. src/crypto/rsa/rsa.go

    // used for another by an attacker. If not required it can be empty.
    //
    // The message must be no longer than the length of the public modulus minus
    // twice the hash length, minus a further 2.
    func EncryptOAEP(hash hash.Hash, random io.Reader, pub *PublicKey, msg []byte, label []byte) ([]byte, error) {
    	// Note that while we don't commit to deterministic execution with respect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            given:
            file('files/a/one.txt').createFile()
            file('files/b/two.txt').createFile()
            buildFile """
                def files = files('files/a', 'files/b').minus(files('files/b'))
                task copy(type: Copy) {
                    from files
                    into 'dest'
                }
            """
    
            when:
            run 'copy'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. src/crypto/rsa/pkcs1v15.go

    	SessionKeyLen int
    }
    
    // EncryptPKCS1v15 encrypts the given message with RSA and the padding
    // scheme from PKCS #1 v1.5.  The message must be no longer than the
    // length of the public modulus minus 11 bytes.
    //
    // The random parameter is used as a source of entropy to ensure that
    // encrypting the same message twice doesn't result in the same
    // ciphertext. Most applications should use [crypto/rand.Reader]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            return result
        }
    
        private companion object {
            private val operatorWithAssignmentVariant = setOf(
                OperatorNameConventions.PLUS,
                OperatorNameConventions.MINUS,
                OperatorNameConventions.TIMES,
                OperatorNameConventions.DIV,
                OperatorNameConventions.REM,
                OperatorNameConventions.MOD,
            )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top