- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 209 for cloneOf (1.12 sec)
-
src/test/java/jcifs/smb/SSPContextTest.java
boolean integrity) { this.signingKey = signingKey; this.established = established; this.nbName = nbName; this.supportedMechs = supportedMechs != null ? supportedMechs.clone() : new ASN1ObjectIdentifier[0]; this.flags = flags; this.integrity = integrity; } @Override public byte[] getSigningKey() throws CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.2K bytes - Viewed (0) -
api/maven-api-metadata/src/main/mdo/metadata.mdo
<defaults> <default> <key>package</key> <value>org.apache.maven.artifact.repository.metadata</value> </default> </defaults> <classes> <class rootElement="true" xml.tagName="metadata" java.clone="deep"> <name>Metadata</name> <version>1.0.0+</version> <fields> <field xml.attribute="true" xml.tagName="modelVersion"> <name>modelVersion</name> <version>1.1.0+</version>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed May 15 17:32:27 UTC 2024 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
if (key == null || sessionId == null) { throw new IllegalArgumentException("Session ID and key must not be null"); } // Clone the key to prevent external modification byte[] keyClone = key.clone(); SecretKey secretKey = new SecretKeySpec(keyClone, algorithm); // Store in memory sessionKeys.put(sessionId, secretKey);
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/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
this.cipherId = cipherId; this.dialect = dialect; this.keyManager = keyManager; this.sessionKey = sessionKey != null ? sessionKey.clone() : null; this.preauthIntegrityHash = preauthHash != null ? preauthHash.clone() : null; // Generate unique session ID for key management this.sessionId = String.format("smb-enc-%d-%d", System.currentTimeMillis(), secureRandom.nextLong());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/math/QuantilesBenchmark.java
datasets[i][j] = rng.nextDouble(); } } } private double[] dataset(int i) { // We must test on a fresh clone of the dataset each time. Doing sorts and quickselects on a // dataset which is already sorted or partially sorted is cheating. return datasets[i & 0xFF].clone(); } @Benchmark double median(int reps) { double dummy = 0.0; for (int i = 0; i < reps; i++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 3.2K bytes - Viewed (0) -
util/update_snapshot_docs.sh
#!/bin/bash set -e -u echo "Publishing Javadoc and JDiff..." cd $HOME git clone -q -b gh-pages "https://x-access-token:${GITHUB_TOKEN}@github.com/google/guava.git" gh-pages > /dev/null cd gh-pages git config --global user.name "$GITHUB_ACTOR" git config --global user.email "$******@****.***" ./updaterelease.sh snapshot git push -fq origin gh-pages > /dev/null
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Mar 16 16:48:28 UTC 2021 - 439 bytes - Viewed (0) -
cmd/data-scanner_test.go
*/ lrObjInfos := slices.Clone(objInfos) lrObjInfos[3].UserDefined = objRetentionMeta var lrWants []ObjectInfo lrWants = append(lrWants, lrObjInfos[:4]...) /* replObjInfos: objInfos with following modifications version stack for obj-1 v1 uuid-1 modTime -4m "VersionPurgeStatus: replication.VersionPurgePending" */ replObjInfos := slices.Clone(objInfos)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/HMACT64.java
super("HMACT64"); this.ipad = hmac.ipad; this.opad = hmac.opad; this.md5 = (MessageDigest) hmac.md5.clone(); } @Override public Object clone() { try { return new HMACT64(this); } catch (final CloneNotSupportedException ex) { throw new IllegalStateException(ex.getMessage()); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/util/HMACT64.java
super("HMACT64"); this.ipad = hmac.ipad; this.opad = hmac.opad; this.md5 = (MessageDigest) hmac.md5.clone(); } @Override public Object clone() { try { return new HMACT64(this); } catch (final CloneNotSupportedException ex) { throw new IllegalStateException(ex.getMessage()); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.6K bytes - Viewed (0) -
CONTRIBUTING.md
### Setup your MinIO GitHub Repository Fork [MinIO upstream](https://github.com/minio/minio/fork) source repository to your own personal repository. Copy the URL of your MinIO fork (you will need it for the `git clone` command below). ```sh git clone https://github.com/minio/minio cd minio go install -v ls $(go env GOPATH)/bin/minio ``` ### Set up git remote as ``upstream`` ```sh $ cd minio
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Aug 05 18:35:53 UTC 2024 - 2.9K bytes - Viewed (0)