- Sort Score
- Num 10 results
- Language All
Results 691 - 700 of 1,340 for key7 (0.02 seconds)
-
android/guava/src/com/google/common/graph/AbstractDirectedNetworkConnections.java
* @param <E> Edge parameter type */ abstract class AbstractDirectedNetworkConnections<N, E> implements NetworkConnections<N, E> { /** Keys are edges incoming to the origin node, values are the source node. */ final Map<E, N> inEdgeMap; /** Keys are edges outgoing from the origin node, values are the target node. */ final Map<E, N> outEdgeMap; private int selfLoopCount;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 4.5K bytes - Click Count (0) -
docs/ko/docs/advanced/additional-responses.md
```Python old_dict = { "old key": "old value", "second old key": "second old value", } new_dict = {**old_dict, "new key": "new value"} ``` 여기서 `new_dict`는 `old_dict`의 모든 키-값 쌍에 더해 새 키-값 쌍까지 포함합니다: ```Python { "old key": "old value", "second old key": "second old value", "new key": "new value", } ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 9.6K bytes - Click Count (0) -
docs/zh/docs/advanced/additional-responses.md
```Python old_dict = { "old key": "old value", "second old key": "second old value", } new_dict = {**old_dict, "new key": "new value"} ``` 这里,`new_dict` 将包含来自 `old_dict` 的所有键值对,再加上新的键值对: ```Python { "old key": "old value", "second old key": "second old value", "new key": "new value", } ``` 你可以使用该技巧在*路径操作*中重用一些预定义响应,并把它们与额外的自定义响应组合在一起。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 8.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectIndex.java
for (int i = 0; i < projects.size(); i++) { MavenProject project = projects.get(i); String key = BuilderCommon.getKey(project); this.getProjects().put(key, project); this.getIndices().put(key, i); } } public Map<String, MavenProject> getProjects() { return projects; }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/com/ServerData.java
public long serverTime; /** * Server's time zone offset in minutes from UTC. */ public int serverTimeZone; /** * Length of the encryption key. */ public int encryptionKeyLength; /** * Encryption key for password encryption. */ public byte[] encryptionKey; /** * Server's globally unique identifier. */ public byte[] guid;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 23.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java
* * @param path directory path * @param key lease key * @param dir directory file */ public ChangeNotificationHandle(String path, Smb2LeaseKey key, SmbFile dir) { this.directoryPath = path; this.leaseKey = key; this.directoryFile = dir; this.active = true; } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 13.7K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
} /** * @param key * @return * @throws SmbException */ protected Response createNotification(final Long key) throws SmbException { if (key == null) { // no valid header return null; } if (this.smb2) { if (key != -1) { return null; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 69.8K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java
for (Map.Entry<String, String> requirement : requirements.entrySet()) { String key = requirement.getKey(); RequirementMatcher matcher = provides.get(key); if (matcher == null) { getLog().debug("Toolchain {} is missing required property: {}", this, key); return false; } if (!matcher.matches(requirement.getValue())) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Feb 12 13:13:28 GMT 2025 - 4.8K bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt
subProjectToClassTimes .entries .filter { "UNKNOWN" != it.key } .filter { model.subprojects.getSubprojectByName(it.key) != null } .map { SubprojectTestClassTime( model.subprojects.getSubprojectByName(it.key)!!, it.value.filter { tct -> tct.sourceSet != "test"Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Apr 10 15:09:32 GMT 2025 - 7.3K bytes - Click Count (0)