- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 650 for creation (0.04 sec)
-
guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java
CollectionFeature.REJECTS_DUPLICATES_AT_CREATION, CollectionFeature.ALLOWS_NULL_QUERIES) .createTestSuite()); return suite; } // Creation tests public void testEmptyBuilder() { ImmutableSortedMap<String, Integer> map = ImmutableSortedMap.<String, Integer>naturalOrder().build(); assertEquals(Collections.<String, Integer>emptyMap(), map);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
throw new ArtifactTransferFailedException(getMessage(e, "Error transferring artifact."), e); } } // // Artifact Repository Creation // @Override public ArtifactRepository buildArtifactRepository(Repository repo) throws InvalidRepositoryException { if (repo != null) { String id = repo.getId();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 31.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/ImmutableIntArrayTest.java
import junit.framework.TestSuite; import org.jspecify.annotations.NullUnmarked; /** * @author Kevin Bourrillion */ @GwtCompatible @NullUnmarked public class ImmutableIntArrayTest extends TestCase { // Test all creation paths very lazily: by assuming asList() works public void testOf0() { assertThat(ImmutableIntArray.of().asList()).isEmpty(); } public void testOf1() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.2K bytes - Viewed (0) -
cmd/bucket-metadata.go
return b.LockEnabled || (b.objectLockConfig != nil && b.objectLockConfig.Enabled()) } // SetCreatedAt preserves the CreatedAt time for bucket across sites in site replication. It defaults to // creation time of bucket on this cluster in all other cases. func (b *BucketMetadata) SetCreatedAt(createdAt time.Time) { if b.Created.IsZero() { b.Created = UTCNow() } if !createdAt.IsZero() {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 16 14:27:42 UTC 2025 - 18.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multiset.java
* both a distinct element and the count of that element. * * <p>In addition to these required methods, implementations of {@code Multiset} are expected to * provide two {@code static} creation methods: {@code create()}, returning an empty multiset, and * {@code create(Iterable<? extends E>)}, returning a multiset containing the given initial
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 19.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableListTest.java
.named("ImmutableList, unhashable values") .withFeatures(CollectionSize.ANY, ALLOWS_NULL_QUERIES) .createTestSuite()); return suite; } // Creation tests public void testCreation_noArgs() { List<String> list = ImmutableList.of(); assertEquals(emptyList(), list); } public void testCreation_oneElement() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 23.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.7.md
* requests for a TLS client certificate for any node are approved if the CSR creator has `create` permission on the `certificatesigningrequests` resource and `nodeclient` subresource in the `certificates.k8s.io` API group
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 308.7K bytes - Viewed (1) -
guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java
import org.jspecify.annotations.NullUnmarked; /** * @author Kevin Bourrillion */ @GwtCompatible @NullUnmarked public class ImmutableDoubleArrayTest extends TestCase { // Test all creation paths very lazily: by assuming asList() works public void testOf0() { assertThat(ImmutableDoubleArray.of().asList()).isEmpty(); } public void testOf1() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
SecretKey secretKey = new SecretKeySpec(keyClone, algorithm); // Store in memory sessionKeys.put(sessionId, secretKey); rawKeys.put(sessionId, keyClone); // Track creation time for rotation (only for non-archived keys) if (!sessionId.contains(".v")) { keyCreationTimes.put(sessionId, System.currentTimeMillis()); keyVersions.putIfAbsent(sessionId, 0); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
SMBUtil.writeInt2(SMB2_CLOSE_FLAG_POSTQUERY_ATTIB, buffer, bufferIndex + 2); // Reserved (4 bytes) SMBUtil.writeInt4(0, buffer, bufferIndex + 4); // Creation Time (8 bytes) long creationTime = System.currentTimeMillis() * 10000L + 116444736000000000L; SMBUtil.writeInt8(creationTime, buffer, bufferIndex + 8); // Last Access Time (8 bytes)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 26.9K bytes - Viewed (0)