Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for emptyArray (0.1 sec)

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

    @SuppressWarnings("serial") // uses writeReplace(), not default serialization
    @ElementTypesAreNonnullByDefault
    class RegularImmutableMultiset<E> extends ImmutableMultiset<E> {
      private static final ImmutableEntry<?>[] EMPTY_ARRAY = new ImmutableEntry<?>[0];
      static final ImmutableMultiset<Object> EMPTY = create(ImmutableList.<Entry<Object>>of());
    
      static <E> ImmutableMultiset<E> create(Collection<? extends Entry<? extends E>> entries) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RulesVisitor.java

                statements.add(new EmptyStatement());
                BlockStatement block = new BlockStatement(statements, new VariableScope());
                closureExpression = new ClosureExpression(Parameter.EMPTY_ARRAY, block);
                closureExpression.setVariableScope(block.getVariableScope());
                String modelPath = extractModelPathFromMethodTarget(call);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top