Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 156 of 156 for EmptyList (0.05 seconds)

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

        return CollectCollectors.toImmutableList();
      }
    
      /**
       * Returns the empty immutable list. This list behaves and performs comparably to {@link
       * Collections#emptyList}, and is preferable mainly for consistency and maintainability of your
       * code.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 30.6K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                            projectExecutionListener.afterProjectExecutionSuccess(
                                    new ProjectExecutionEvent(session, step.project, Collections.emptyList()));
                            reactorContext
                                    .getResult()
                                    .addBuildSummary(new BuildSuccess(step.project, clock.wallTime(), clock.execTime()));
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/Lists.java

        return list;
      }
    
      /**
       * Creates an empty {@code CopyOnWriteArrayList} instance.
       *
       * <p><b>Note:</b> if you need an immutable empty {@link List}, use {@link Collections#emptyList}
       * instead.
       *
       * @return a new, empty {@code CopyOnWriteArrayList}
       * @since 12.0
       */
      @J2ktIncompatible
      @GwtIncompatible // CopyOnWriteArrayList
      @InlineMe(
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 42.6K bytes
    - Click Count (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

            url: HttpUrl,
            cookies: List<Cookie>,
          ) {}
    
          override fun loadForRequest(url: HttpUrl): List<Cookie> {
            callReference.get().cancel()
            return emptyList()
          }
        }
        client =
          client
            .newBuilder()
            .cookieJar(DisconnectingCookieJar())
            .build()
        val call = client.newCall(newRequest("/"))
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sat Jun 21 20:36:35 GMT 2025
    - 133.2K bytes
    - Click Count (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

       * | `http://host/?a=apple&b`          | `["apple"]`                 | `[null]`                    |
       */
      fun queryParameterValues(name: String): List<String?> {
        if (queryNamesAndValues == null) return emptyList()
        val result = ArrayList<String?>(4)
        for (i in 0 until queryNamesAndValues.size step 2) {
          if (name == queryNamesAndValues[i]) {
            result.add(queryNamesAndValues[i + 1])
          }
        }
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Mon May 05 16:01:00 GMT 2025
    - 63.5K bytes
    - Click Count (0)
  6. tensorflow/c/c_api_test.cc

        EXPECT_EQ(0,
                  memcmp(tensor_data[i], TF_TensorData(v), TF_TensorByteSize(v)));
        TF_DeleteTensor(v);
      }
    }
    
    TEST_F(CApiAttributesTest, EmptyList) {
      auto desc = init("list(int)");
      TF_SetAttrIntList(desc, "v", nullptr, 0);
      auto oper = TF_FinishOperation(desc, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Mon Nov 17 00:00:38 GMT 2025
    - 97K bytes
    - Click Count (0)
Back to Top