Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,982 for list1 (0.04 sec)

  1. 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)
  2. android/guava/src/com/google/common/collect/SortedLists.java

        return binarySearch(
            list, keyFunction, key, Ordering.natural(), presentBehavior, absentBehavior);
      }
    
      /**
       * Binary searches the list for the specified key, using the specified key function.
       *
       * <p>Equivalent to {@link #binarySearch(List, Object, Comparator, KeyPresentBehavior,
       * KeyAbsentBehavior)} using {@link Lists#transform(List, Function) Lists.transform(list,
       * keyFunction)}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom

      </ciManagement>
      <inceptionYear>2001</inceptionYear>
      <mailingLists>
        <mailingList>
          <name>Plexus Developer List</name>
          <subscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</subscribe>
          <unsubscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</unsubscribe>
          <archive>http://lists.codehaus.org/pipermail/plexus-dev/</archive>
        </mailingList>
      </mailingLists>
      <developers>
        <developer>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ClassBasedMetadataRuleWrapper.java

    package org.gradle.api.internal.artifacts.dsl;
    
    import com.google.common.collect.Lists;
    import org.gradle.api.artifacts.ComponentMetadataDetails;
    import org.gradle.internal.Describables;
    import org.gradle.internal.DisplayName;
    import org.gradle.internal.action.ConfigurableRule;
    import org.gradle.internal.rules.SpecRuleAction;
    
    import java.util.Collection;
    import java.util.List;
    import java.util.stream.Collectors;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/lower-static-tensor-list-default-to-single-batch.mlir

    // RUN: tf-opt "-tfl-lower-static-tensor-list=allow-tensorlist-pass-through default-to-single-batch=false" -split-input-file %s | FileCheck %s
    
    // -----
    
    func.func @tensorlistReserveConstantUnknownElementShapeDim(%arg0: tensor<i32>, %arg1: tensor<i32>) -> tensor<?x7xf32> {
      %cst = arith.constant dense<[-1, 7]> : tensor<2xi32>
      %0 = "tf.TensorListReserve"(%cst, %arg0) : (tensor<2xi32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<?x7xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 14:24:59 UTC 2022
    - 766 bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ListSerializer.java

     * limitations under the License.
     */
    package org.gradle.internal.serialize;
    
    import com.google.common.collect.Lists;
    
    import java.util.Collections;
    import java.util.List;
    
    public class ListSerializer<T> extends AbstractCollectionSerializer<T, List<T>> implements Serializer<List<T>> {
    
        public ListSerializer(Serializer<T> entrySerializer) {
            super(entrySerializer);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/StringsJavadocOptionFileOption.java

     */
    
    package org.gradle.external.javadoc.internal;
    
    import com.google.common.collect.Lists;
    
    import java.io.IOException;
    import java.util.List;
    
    public class StringsJavadocOptionFileOption extends AbstractListJavadocOptionFileOption<List<String>> {
        public StringsJavadocOptionFileOption(String option, List<String> value, String joinBy) {
            super(option, value, joinBy);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrSpec.java

     * limitations under the License.
     */
    
    package org.gradle.api.plugins.antlr.internal;
    
    import com.google.common.collect.Lists;
    
    import java.io.File;
    import java.io.Serializable;
    import java.util.List;
    import java.util.Set;
    
    public class AntlrSpec implements Serializable {
    
        private List<String> arguments;
        private Set<File> inputDirectories;
        private Set<File> grammarFiles;
        private String maxHeapSize;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top