- Sort Score
- Num 10 results
- Language All
Results 1681 - 1690 of 2,503 for setS (0.03 seconds)
-
guava/src/com/google/common/collect/SortedMultiset.java
package com.google.common.collect; import com.google.common.annotations.GwtCompatible; import java.util.Collection; import java.util.Comparator; import java.util.Iterator; import java.util.NavigableSet; import java.util.Set; import org.jspecify.annotations.Nullable; /** * A {@link Multiset} which maintains the ordering of its elements, according to either theirCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 5.4K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java
// <artifactId>yoko-core</artifactId> // <version>${version}</version> // </dependency> // ... // // And the range is not set so we'll check here and set it. jvz. if (range == null) { range = VersionRange.createFromVersion(artifact.getVersion()); } DefaultArtifact clone = new DefaultArtifact(
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6.9K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rerun/InternalTestRerunPluginFuncTest.groovy
dependencies { testImplementation 'junit:junit:4.13.1' } tasks.named("test").configure { maxParallelForks = 4 testLogging { // set options for log level LIFECYCLE events "started", "passed", "standard_out", "failed" exceptionFormat "short" } } """ createTest("AnotherTest")Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Sep 03 10:22:28 GMT 2021 - 8.9K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild.verify-build-environment.gradle.kts
tasks.register("verifyIsProductionBuildEnvironment") { doLast { val systemCharset = Charset.defaultCharset().name() assert(systemCharset == "UTF-8") { "Platform encoding must be UTF-8. Is currently $systemCharset. Set -Dfile.encoding=UTF-8" } }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Feb 01 09:48:30 GMT 2021 - 941 bytes - Click Count (0) -
android-test-app/src/androidTest/kotlin/okhttp/android/testapp/PublicSuffixDatabaseTest.kt
import assertk.assertions.isEqualTo import okhttp3.HttpUrl.Companion.toHttpUrl import org.junit.Test /** * Run with "./gradlew :android-test-app:connectedCheck -PandroidBuild=true" and make sure ANDROID_SDK_ROOT is set. */ class PublicSuffixDatabaseTest { @Test fun testTopLevelDomain() { assertThat("https://www.google.com/robots.txt".toHttpUrl().topPrivateDomain()).isEqualTo("google.com") }
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Jan 08 01:13:22 GMT 2024 - 1K bytes - Click Count (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
<version>1.0.0/1.1.0</version> <association> <type>Dependency</type> <multiplicity>*</multiplicity> </association> <description> A set of dependencies which the plugin requires in order to function. This enables the plugin to function independently of its POM (or at least to declare the libraries it needs to run). </description>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:28:41 GMT 2025 - 24.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
return createArtifactRepository(repositoryId, url, "default", snapshotsPolicy, releasesPolicy); } public Set<String> getRepoIds(List<ArtifactRepository> repositories) { Set<String> repoIds = new HashSet<>(); if (repositories != null) { for (ArtifactRepository repository : repositories) { repoIds.add(repository.getId());Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Feb 07 00:45:02 GMT 2025 - 33.5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java
// this will run at most twice. The first time, the firstRun flag is turned off, and if the retry flag // is set on the first run, it will be turned off and not re-set on the second try. This is because the // only way the retry flag can be set is if ( firstRun == true ). while (firstRun || retry) { ChecksumObserver md5ChecksumObserver = null;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 29.9K bytes - Click Count (0) -
docs/ko/docs/python-types.md
그리고 에디터는 여전히 이것이 `str`임을 알고, 그에 대한 지원을 제공합니다. #### Tuple과 Set { #tuple-and-set } `tuple`과 `set`도 동일하게 선언할 수 있습니다: {* ../../docs_src/python_types/tutorial007_py310.py hl[1] *} 이는 다음을 의미합니다: * 변수 `items_t`는 3개의 아이템을 가진 `tuple`이며, `int`, 또 다른 `int`, 그리고 `str`입니다. * 변수 `items_s`는 `set`이며, 각 아이템의 타입은 `bytes`입니다. #### Dict { #dict } `dict`를 정의하려면, 쉼표로 구분된 2개의 타입 매개변수를 전달합니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 13K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
} /** * Creates and returns a new instance of {@link ConcurrentSkipListSet}. * * @param <E> the element type of {@link ConcurrentSkipListSet} * @param s the sorted set to be placed in the created set * @return a new instance of {@link ConcurrentSkipListSet} * @see ConcurrentSkipListSet#ConcurrentSkipListSet(SortedSet) */Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 49.9K bytes - Click Count (0)