Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for ancestor (0.18 sec)

  1. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        @CheckForNull final WrappedCollection ancestor;
        @CheckForNull final Collection<V> ancestorDelegate;
    
        WrappedCollection(
            @ParametricNullness K key,
            Collection<V> delegate,
            @CheckForNull WrappedCollection ancestor) {
          this.key = key;
          this.delegate = delegate;
          this.ancestor = ancestor;
          this.ancestorDelegate = (ancestor == null) ? null : ancestor.getDelegate();
        }
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 48K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/FauxveridesTest.java

                  descendant.getSimpleName(), ancestor.getSimpleName(), missing));
        }
      }
    
      private static Set<MethodSignature> getAllRequiredToFauxveride(Class<?> ancestor) {
        return getPublicStaticMethodsBetween(ancestor, Object.class);
      }
    
      private static Set<MethodSignature> getAllFauxveridden(Class<?> descendant, Class<?> ancestor) {
        return getPublicStaticMethodsBetween(descendant, ancestor);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Oct 31 16:03:42 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/FauxveridesTest.java

                  descendant.getSimpleName(), ancestor.getSimpleName(), missing));
        }
      }
    
      private static Set<MethodSignature> getAllRequiredToFauxveride(Class<?> ancestor) {
        return getPublicStaticMethodsBetween(ancestor, Object.class);
      }
    
      private static Set<MethodSignature> getAllFauxveridden(Class<?> descendant, Class<?> ancestor) {
        return getPublicStaticMethodsBetween(descendant, ancestor);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Oct 31 16:03:42 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        @CheckForNull final WrappedCollection ancestor;
        @CheckForNull final Collection<V> ancestorDelegate;
    
        WrappedCollection(
            @ParametricNullness K key,
            Collection<V> delegate,
            @CheckForNull WrappedCollection ancestor) {
          this.key = key;
          this.delegate = delegate;
          this.ancestor = ancestor;
          this.ancestorDelegate = (ancestor == null) ? null : ancestor.getDelegate();
        }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 46.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

        checkState(isUnderRegistrySuffix(), "Not under a registry suffix: %s", name);
        return ancestor(registrySuffixIndex() - 1);
      }
    
      /** Indicates whether this domain is composed of two or more parts. */
      public boolean hasParent() {
        return parts.size() > 1;
      }
    
      /**
       * Returns an {@code InternetDomainName} that is the immediate ancestor of this one; that is, the
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  6. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

          <![CDATA[
          This is a list of ArtifactRepository instances used to resolve the Artifacts associated
          with the current POM.
    
          NOTE: This list will contain entries for repositories specified by ancestor POMs, including
          the default built-in super-POM, which is the parent of all POMs.
        ]]></description>
      </expression>
      <expression>
        <syntax>project.pluginArtifactRepositories</syntax>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 5.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ArrayListMultimapTest.java

        assertTrue(multimap.replaceValues("bar", asList(2, 4)) instanceof RandomAccess);
      }
    
      /** Test throwing ConcurrentModificationException when a sublist's ancestor's delegate changes. */
      public void testSublistConcurrentModificationException() {
        ListMultimap<String, Integer> multimap = create();
        multimap.putAll("foo", asList(1, 2, 3, 4, 5));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/ArrayListMultimapTest.java

        assertTrue(multimap.replaceValues("bar", asList(2, 4)) instanceof RandomAccess);
      }
    
      /** Test throwing ConcurrentModificationException when a sublist's ancestor's delegate changes. */
      public void testSublistConcurrentModificationException() {
        ListMultimap<String, Integer> multimap = create();
        multimap.putAll("foo", asList(1, 2, 3, 4, 5));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  9. internal/s3select/sql/aggregation.go

    	case aggFnAvg, aggFnSum, aggFnMax, aggFnMin, aggFnCount:
    		return e.evalAggregationNode(r, tableAlias)
    	default:
    		// TODO: traverse arguments and call aggregateRow on
    		// them if they could be an ancestor of an
    		// aggregation.
    	}
    	return nil
    }
    
    // getAggregate() implementation for each AST node follows. This is
    // called after calling aggregateRow() on each input row, to calculate
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

    // Since this class only needs CAS on one field, we can avoid this bug by extending AtomicReference
    // instead of using an AtomicReferenceFieldUpdater. This reference stores Thread instances
    // and DONE/INTERRUPTED - they have a common ancestor of Runnable.
    abstract class InterruptibleTask<T extends @Nullable Object>
        extends AtomicReference<@Nullable Runnable> implements Runnable {
      static {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Sep 29 21:34:48 GMT 2023
    - 9.9K bytes
    - Viewed (0)
Back to top