- Sort Score
- Num 10 results
- Language All
Results 621 - 630 of 2,849 for Gist (0.21 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava-tests/test/com/google/common/math/StatsTesting.java
List<Double> xValues, List<Double> yValues, int partitionSize) { checkArgument(xValues.size() == yValues.size()); checkArgument(partitionSize > 0); PairedStatsAccumulator accumulator = new PairedStatsAccumulator(); List<List<Double>> xPartitions = Lists.partition(xValues, partitionSize); List<List<Double>> yPartitions = Lists.partition(yValues, partitionSize);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 05:21:26 GMT 2026 - 24K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/BulkBody.java
package org.codelibs.fess.app.web.api.admin.documents; import java.util.List; import java.util.Map; /** * Request body for bulk document operations containing a list of documents. */ public class BulkBody { /** * Creates a new instance of BulkBody. */ public BulkBody() { // Default constructor } /** * List of documents to be processed in bulk operations. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.1K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+pull-request+part-1-fips.yml
triggers: - github-pull-request: org-list: - elastic allow-whitelist-orgs-as-admins: true trigger-phrase: '.*run\W+elasticsearch-ci/part-1-fips.*' github-hooks: true status-context: elasticsearch-ci/part-1-fips cancel-builds-on-update: true black-list-target-branches: - 6.8 excluded-regions:Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 16 01:16:48 GMT 2021 - 1.4K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTask.kt
} /** * Sorts the given list of [AcceptedApiChange]s by type and member. * <p> * This sort ought to remain consistent with the sort used by the [EnrichedReportRenderer]. */ @Suppress("KDocUnresolvedReference") protected fun sortChanges(originalChanges: List<AcceptedApiChange>) = originalChanges.toMutableList().sortedBy { it.type + '#' + it.member }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jun 04 14:00:46 GMT 2024 - 2.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CookieJar.kt
url: HttpUrl, cookies: List<Cookie>, ) /** * Load cookies from the jar for an HTTP request to [url]. This method returns a possibly * empty list of cookies for the network request. * * Simple implementations will return the accepted cookies that have not yet expired and that * [match][Cookie.matches] [url]. */ fun loadForRequest(url: HttpUrl): List<Cookie> companion object {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 2.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/InjectWarnings.java
import org.gradle.api.tasks.Internal; import java.util.List; import java.util.Objects; /** * A transformation to inject an expected warning for a given test. */ public class InjectWarnings extends FeatureInjector implements RestTestTransformByParentObject { private static JsonNodeFactory jsonNodeFactory = JsonNodeFactory.withExactBigDecimals(false); private final List<String> warnings; private final String testName;Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 3K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+pull-request+part-2-fips.yml
triggers: - github-pull-request: org-list: - elastic allow-whitelist-orgs-as-admins: true trigger-phrase: '.*run\W+elasticsearch-ci/part-2-fips.*' github-hooks: true status-context: elasticsearch-ci/part-2-fips cancel-builds-on-update: true black-list-target-branches: - 6.8 excluded-regions:Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 16 01:16:48 GMT 2021 - 1.4K bytes - Click Count (0) -
guava-testlib/test/com/google/common/collect/testing/SafeTreeSetTest.java
protected Set<String> create(String[] elements) { return new SafeTreeSet<>(asList(elements)); } @Override public List<String> order(List<String> insertionOrder) { return new ArrayList<>(Sets.newTreeSet(insertionOrder)); } }) .withFeatures( CollectionSize.ANY,
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 4.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.rank.fusion; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import org.apache.lucene.search.TotalHits.Relation; import org.codelibs.fess.entity.FacetInfo; import org.codelibs.fess.entity.GeoInfo;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 14.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/body-nested-models.md
## 列表欄位 { #list-fields } 你可以將屬性定義為某個子型別。例如,Python 的 `list`: {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *} 這會讓 `tags` 成為一個列表,儘管尚未宣告列表元素的型別。 ## 具有型別參數的列表欄位 { #list-fields-with-type-parameter } 不過,Python 有一種專門的方式來宣告具有內部型別(「型別參數」)的列表: ### 宣告帶有型別參數的 `list` { #declare-a-list-with-a-type-parameter } 要宣告具有型別參數(內部型別)的型別,例如 `list`、`dict`、`tuple`,使用方括號 `[` 與 `]` 傳入內部型別作為「型別參數」:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.5K bytes - Click Count (0)