Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,611 for Element (5.34 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/MultisetSetCountUnconditionallyTester.java

      @Override
      void setCountCheckReturnValue(E element, int count) {
        assertEquals(
            "multiset.setCount() should return the old count",
            getMultiset().count(element),
            setCount(element, count));
      }
    
      @Override
      void setCountNoCheckReturnValue(E element, int count) {
        setCount(element, count);
      }
    
      @CanIgnoreReturnValue
      private int setCount(E element, int count) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 15:08:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer.java

        private final Map<K, Collection<? extends T>> elements = new HashMap<>();
        private final Multimap<K, K> targetToSource = LinkedHashMultimap.create();
    
        /**
         * Adds new element and returns a conflict instance if given element is conflicted. Element is conflicted when:
         *  - has more than 1 candidate
         *  - is in conflict with an existing element (via replacedBy relationship)
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/SingletonImmutableSet.java

      final transient E element;
    
      SingletonImmutableSet(E element) {
        this.element = Preconditions.checkNotNull(element);
      }
    
      @Override
      public int size() {
        return 1;
      }
    
      @Override
      public boolean contains(@CheckForNull Object target) {
        return element.equals(target);
      }
    
      @Override
      public UnmodifiableIterator<E> iterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/edwards25519.go

    	x, y, z, t field.Element
    }
    
    type incomparable [0]func()
    
    func checkInitialized(points ...*Point) {
    	for _, p := range points {
    		if p.x == (field.Element{}) && p.y == (field.Element{}) {
    			panic("edwards25519: use of uninitialized Point")
    		}
    	}
    }
    
    type projCached struct {
    	YplusX, YminusX, Z, T2d field.Element
    }
    
    type affineCached struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/util.go

    // insertAfterFunc find and insert an element after the found element.
    // If the f function returns true, the returned value will be inserted after the found element.
    func insertAfterFunc[E any](s []E, f func(e E) (bool, E)) ([]E, bool) {
    	var toInsert E
    	idx := -1
    	for k, v := range s {
    		if ok, r := f(v); ok {
    			toInsert = r
    			idx = k
    			break
    		}
    	}
    
    	if idx == -1 {
    		return s, false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

        public Builder<E> add(E element) {
          super.add(element);
          return this;
        }
    
        /**
         * Adds each element of {@code elements} to the {@code ImmutableSortedSet}, ignoring duplicate
         * elements (only the first duplicate element is added).
         *
         * @param elements the elements to add
         * @return this {@code Builder} object
         * @throws NullPointerException if {@code elements} contains a null element
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/pathelement.go

    )
    
    const (
    	// Field indicates that the content of this path element is a field's name
    	Field = "f"
    
    	// Value indicates that the content of this path element is a field's value
    	Value = "v"
    
    	// Index indicates that the content of this path element is an index in an array
    	Index = "i"
    
    	// Key indicates that the content of this path element is a key value map
    	Key = "k"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

        /**
         * This default mode for combining a DOM node during merge means that where element names match, the process will
         * try to merge the element attributes and values, rather than overriding the recessive element completely with the
         * dominant one. This means that wherever the dominant element doesn't provide the value or a particular attribute,
         * that value or attribute will be set from the recessive DOM node.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/DefaultUniqueProjectNameProvider.java

            @Override
            public String getName(ProjectState element) {
                return element.getName();
            }
    
            @Override
            public String getIdentityName(ProjectState element) {
                String identityName = element.getIdentityPath().getName();
                return identityName != null ? identityName : element.getName();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/BuildableComponentSpecTest.groovy

        }
    
        def "has intervening lifecycle task as dependency when set"() {
            when:
            element.builtBy(dependedOn1)
            element.setBuildTask(lifecycleTask)
            element.builtBy(dependedOn2)
    
            then:
            element.getBuildDependencies().getDependencies(Stub(Task)) == [lifecycleTask] as Set
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top