Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,127 for list1 (0.28 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/MultilineStringsJavadocOptionFileOption.java

     * limitations under the License.
     */
    
    package org.gradle.external.javadoc.internal;
    
    import com.google.common.collect.Lists;
    
    import java.io.IOException;
    import java.util.List;
    
    public class MultilineStringsJavadocOptionFileOption extends AbstractListJavadocOptionFileOption<List<String>> {
    
        // We should never attempt to join strings so if you see this, there's a problem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/ListMultimapAsMapTester.java

          assertTrue(multimap().asMap().remove(key) instanceof List);
        }
      }
    
      @CollectionSize.Require(SEVERAL)
      public void testEquals() {
        resetContainer(
            Helpers.mapEntry(k0(), v0()), Helpers.mapEntry(k1(), v0()), Helpers.mapEntry(k0(), v3()));
        Map<K, Collection<V>> expected = Maps.newHashMap();
        expected.put(k0(), Lists.newArrayList(v0(), v3()));
        expected.put(k1(), Lists.newArrayList(v0()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/ListMultimapAsMapTester.java

          assertTrue(multimap().asMap().remove(key) instanceof List);
        }
      }
    
      @CollectionSize.Require(SEVERAL)
      public void testEquals() {
        resetContainer(
            Helpers.mapEntry(k0(), v0()), Helpers.mapEntry(k1(), v0()), Helpers.mapEntry(k0(), v3()));
        Map<K, Collection<V>> expected = Maps.newHashMap();
        expected.put(k0(), Lists.newArrayList(v0(), v3()));
        expected.put(k1(), Lists.newArrayList(v0()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/LimitedDescription.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.util.internal;
    
    import com.google.common.collect.Lists;
    
    import java.util.LinkedList;
    import java.util.List;
    
    /**
     * Discards old entries when current count is over the limit.
     *
     * @deprecated Used only by a deprecated public class GFileUtils. Prefer Guava's EvictionQueue in the new code.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/YesNoQuestionPromptEvent.java

     */
    
    package org.gradle.internal.logging.events;
    
    import com.google.common.collect.Lists;
    import org.apache.commons.lang.BooleanUtils;
    import org.apache.commons.lang.StringUtils;
    
    import java.util.List;
    
    public class YesNoQuestionPromptEvent extends PromptOutputEvent {
        public static final List<String> YES_NO_CHOICES = Lists.newArrayList("yes", "no");
        private final String question;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/body-nested-models.md

    ## Campos do tipo Lista
    
    Você pode definir um atributo como um subtipo. Por exemplo, uma `list` do Python:
    
    ```Python hl_lines="14"
    {!../../../docs_src/body_nested_models/tutorial001.py!}
    ```
    
    Isso fará com que tags seja uma lista de itens mesmo sem declarar o tipo dos elementos desta lista.
    
    ## Campos do tipo Lista com um parâmetro de tipo
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/OptionLessStringsJavadocOptionFileOption.java

    package org.gradle.external.javadoc.internal;
    
    import com.google.common.collect.Lists;
    
    import java.io.IOException;
    import java.util.List;
    
    public class OptionLessStringsJavadocOptionFileOption implements OptionLessJavadocOptionFileOptionInternal<List<String>> {
        private List<String> value;
    
        public OptionLessStringsJavadocOptionFileOption(List<String> value) {
            this.value = value;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/CollectionFuture.java

          extends CollectionFuture<V, List<@Nullable V>> {
        ListFuture(
            ImmutableCollection<? extends ListenableFuture<? extends V>> futures,
            boolean allMustSucceed) {
          super(futures, allMustSucceed);
          init();
        }
    
        @Override
        public List<@Nullable V> combine(List<@Nullable Present<V>> values) {
          List<@Nullable V> result = newArrayListWithCapacity(values.size());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/mutation/common/val.go

    // For objects, the expected type is map[string]any
    // For lists, the expected type is []any
    // For maps, the expected type is map[string]any
    // For anything else, it is converted via value.Value()
    //
    // It will return an error if the request type is a map but the key
    // is not a string.
    func convertField(value ref.Val) (any, error) {
    	// special handling for lists, where the elements are converted with Value() instead of ConvertToNative
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 21:55:08 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/GroupsJavadocOptionFileOption.java

            for (Map.Entry<String, List<String>> entry : value.entrySet()) {
                duplicateValue.put(entry.getKey(), Lists.newArrayList(entry.getValue()));
            }
            return new GroupsJavadocOptionFileOption(option, duplicateValue);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top