Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 129 for list (0.26 sec)

  1. tensorflow/c/c_api_test.cc

    TEST_F(CApiAttributesTest, StringList) {
      std::vector<string> list = {"bugs", "bunny", "duck"};
      std::unique_ptr<const void*[]> list_ptrs;
      std::unique_ptr<size_t[]> list_lens;
      StringVectorToArrays(list, &list_ptrs, &list_lens);
      int list_total_size = 0;
      for (const auto& s : list) {
        list_total_size += s.size();
      }
    
      auto desc = init("list(string)");
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  2. common/scripts/metallb-native.yaml

      - get
      - list
      - watch
    - apiGroups:
      - metallb.io
      resources:
      - bgpadvertisements
      verbs:
      - get
      - list
      - watch
    - apiGroups:
      - metallb.io
      resources:
      - l2advertisements
      verbs:
      - get
      - list
      - watch
    - apiGroups:
      - metallb.io
      resources:
      - communities
      verbs:
      - get
      - list
      - watch
    ---
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                propMap.put(API_GSA_RESPONSE_HEADER_LIST, list);
            }
            return list;
        }
    
        String getApiJsonResponseHeaders();
    
        default List<Pair<String, String>> getApiJsonResponseHeaderList() {
            @SuppressWarnings("unchecked")
            List<Pair<String, String>> list = (List<Pair<String, String>>) propMap.get(API_JSON_RESPONSE_HEADER_LIST);
            if (list == null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SetsTest.java

                list(0, 0, 0),
                list(0, 0, 1),
                list(0, 1, 0),
                list(0, 1, 1),
                list(1, 0, 0),
                list(1, 0, 1),
                list(1, 1, 0),
                list(1, 1, 1))
            .inOrder();
      }
    
      public void testCartesianProduct_contains() {
        Set<List<Integer>> actual = Sets.cartesianProduct(set(1, 2), set(3, 4));
        assertTrue(actual.contains(list(1, 3)));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 49.3K bytes
    - Viewed (0)
  5. tests/test_generate_unique_id_function.py

        router = APIRouter()
    
        @app.post("/", response_model=List[Item], responses={404: {"model": List[Message]}})
        def post_root(item1: Item, item2: Item):
            return item1, item2  # pragma: nocover
    
        @router.post(
            "/router", response_model=List[Item], responses={404: {"model": List[Message]}}
        )
        def post_router(item1: Item, item2: Item):
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Jan 13 15:10:26 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        }
    
        protected void setAttributeValue(final List<SearchResult> result, final String name, final Consumer<Object> consumer) {
            final List<Object> attrList = getAttributeValueList(result, name);
            if (!attrList.isEmpty()) {
                consumer.accept(attrList.get(0));
            }
        }
    
        protected List<Object> getAttributeValueList(final List<SearchResult> result, final String name) {
            try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                // profile activation
                profileActivationContext.setProjectProperties(model.getProperties());
    
                List<Profile> interpolatedProfiles =
                        interpolateActivations(model.getProfiles(), profileActivationContext, problems);
    
                // profile injection
                List<Profile> activePomProfiles =
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

        @SuppressWarnings("nullness")
        ListenableFuture<List<V>> nonNull = nullable;
        return nonNull;
      }
    
      /**
       * Creates a new {@code ListenableFuture} whose value is a list containing the values of all its
       * input futures, if all succeed.
       *
       * <p>The list of results is in the same order as the input list.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Synchronized.java

          }
        }
    
        @Override
        public E last() {
          synchronized (mutex) {
            return delegate().last();
          }
        }
    
        private static final long serialVersionUID = 0;
      }
    
      private static <E extends @Nullable Object> List<E> list(
          List<E> list, @CheckForNull Object mutex) {
        return (list instanceof RandomAccess)
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 53.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

        }
    
        @Override
        protected Collection<List<E>> delegate() {
          return delegate;
        }
    
        @Override
        public boolean contains(@CheckForNull Object object) {
          if (!(object instanceof List)) {
            return false;
          }
          List<?> list = (List<?>) object;
          if (list.size() != axes.size()) {
            return false;
          }
          int i = 0;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
Back to top