Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for menus (0.4 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. src/fmt/format.go

    	padByte := byte(' ')
    	// Zero padding is allowed only to the left.
    	if f.zero && !f.minus {
    		padByte = byte('0')
    	}
    	// Fill padding with padByte.
    	padding := buf[oldLen:newLen]
    	for i := range padding {
    		padding[i] = padByte
    	}
    	*f.buf = buf[:newLen]
    }
    
    // pad appends b to f.buf, padded on left (!f.minus) or right (f.minus).
    func (f *fmt) pad(b []byte) {
    	if !f.widPresent || f.wid == 0 {
    		f.buf.write(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      }
    
      // Set click handlers on every menu header.
      for (const menu of document.getElementsByClassName('submenu')) {
        const hdr = menu.parentElement;
        if (hdr == null) return;
        if (hdr.classList.contains('disabled')) return;
        function showMenu(e) {
          // menu is a child of hdr, so this event can fire for clicks
          // inside menu. Ignore such clicks.
          if (e.target.parentElement != hdr) return;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top