Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 825 for ELEMENT (0.12 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

                    prefixes.put(element, getParent(prefixElement));
                    return true;
                }
                return false;
            }
    
            private void renameTo(T element, String newName) {
                elementsByName.remove(getCurrentlyAssignedName(element), element);
                elementsByName.put(newName, element);
                newNames.put(element, newName);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/field/fe.go

    // and returns r and 0.
    func (r *Element) SqrtRatio(u, v *Element) (R *Element, wasSquare int) {
    	t0 := new(Element)
    
    	// r = (u * v3) * (u * v7)^((p-5)/8)
    	v2 := new(Element).Square(v)
    	uv3 := new(Element).Multiply(u, t0.Multiply(v2, v))
    	uv7 := new(Element).Multiply(uv3, t0.Square(v2))
    	rr := new(Element).Multiply(uv3, t0.Pow22523(uv7))
    
    	check := new(Element).Multiply(v, t0.Square(rr)) // check = v * r^2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicatorTest.groovy

        }
    
        def "handles calculated name matches existing element name"() {
            given:
            element("root") {
                element("root-foo-bar") {}
                element("foo-bar") {}
                element("foo") {
                    element("bar") {}
                }
                element("baz") {
                    element("bar") {}
                }
            }
    
            when:
            deduplicateNames()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensionsTest.kt

                }
                assertThat(domainObject, sameInstance(element))
            }
    
            container.apply {
                // regular syntax
                val domainObject by getting
                assertThat(domainObject, sameInstance(element))
            }
        }
    
        @Test
        fun `can configure named element by getting`() {
    
            val element = DomainObject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

      // Query Operations
    
      /**
       * Returns the number of occurrences of {@code element} in this multiset.
       *
       * @param element the element to look for
       * @return the nonnegative number of occurrences of the element
       */
      @Override
      public int count(@CheckForNull Object element) {
        AtomicInteger existingCounter = Maps.safeGet(countMap, element);
        return (existingCounter == null) ? 0 : existingCounter.get();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/collections/AbstractIterationOrderRetainingElementSource.java

        public void realizePending() {
            for (Element<T> element : inserted) {
                if (!element.isRealized()) {
                    modCount++;
                    element.realize();
                }
            }
        }
    
        @Override
        public void realizePending(Class<?> type) {
            for (Element<T> element : inserted) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 20:04:06 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multiset.java

       * #add(Object, int) add}{@code (element, 1)} instead.
       *
       * @param element the element to add one occurrence of; may be null only if explicitly allowed by
       *     the implementation
       * @return {@code true} always, since this call is required to modify the multiset, unlike other
       *     {@link Collection} types
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Multiset.java

       * #add(Object, int) add}{@code (element, 1)} instead.
       *
       * @param element the element to add one occurrence of; may be null only if explicitly allowed by
       *     the implementation
       * @return {@code true} always, since this call is required to modify the multiset, unlike other
       *     {@link Collection} types
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  9. subprojects/core-api/src/test/groovy/org/gradle/api/tasks/util/PatternSetTest.groovy

            basePatternSet.include { FileTreeElement element -> element.file.name.contains('1') }
            basePatternSet.exclude '*b*'
            basePatternSet.exclude { FileTreeElement element -> element.file.name.contains('2') }
    
            patternSet = basePatternSet.intersect()
            patternSet.include '*c*'
            patternSet.include { FileTreeElement element -> element.file.name.contains('3') }
            patternSet.exclude '*d*'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableMultiset.java

         */
        @CanIgnoreReturnValue
        public Builder<E> addCopies(E element, int occurrences) {
          contents.add(checkNotNull(element), occurrences);
          return this;
        }
    
        /**
         * Adds or removes the necessary occurrences of an element such that the element attains the
         * desired count.
         *
         * @param element the element to add or remove occurrences of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top