- Sort Score
- Num 10 results
- Language All
Results 181 - 190 of 268 for setters (0.18 seconds)
-
docs/tr/docs/tutorial/path-params.md
Aynı tip tanımlarını `str`, `float`, `bool` ve daha birçok karmaşık veri tipiyle kullanabilirsiniz. Bunların birkaçı, eğitimin sonraki bölümlerinde ele alınacaktır. ## Sıralama Önemlidir { #order-matters } *Path operation*'lar oluştururken sabit bir path'e sahip olduğunuz durumlarla karşılaşabilirsiniz. Örneğin `/users/me`'nin, geçerli kullanıcı hakkında veri almak için kullanıldığını varsayalım.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 9.7K bytes - Click Count (0) -
src/test/java/jcifs/internal/dfs/DfsReferralRequestBufferTest.java
int maxReferralLevel = 3; buffer = new DfsReferralRequestBuffer(path, maxReferralLevel); assertNotNull(buffer); // Verify through encode since there are no getters int expectedSize = 4 + 2 * path.length(); assertEquals(expectedSize, buffer.size()); } @Test @DisplayName("Should create buffer with empty path")Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 17.5K bytes - Click Count (0) -
guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java
} catch (AssertionError expected) { return; } fail(); } private static class BadEqualsFactory { /** oneConstantOnly matters now since it can be either null or the constant. */ @Keep public static Object bad(String a, int b, @Nullable OneConstantEnum oneConstantOnly) { return new GoodEquals(a, b); } }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 36.3K bytes - Click Count (0) -
android/guava/src/com/google/common/base/CharMatcher.java
return JavaDigit.INSTANCE; } /** * Determines whether a character is a BMP letter according to {@linkplain * Character#isLetter(char) Java's definition}. If you only care to match letters of the Latin * alphabet, you can use {@code inRange('a', 'z').or(inRange('A', 'Z'))}. * * @deprecated Most letters are supplementary characters; see the class documentation.Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 53.9K bytes - Click Count (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
- Update read/write operations for RDMA --- ### Phase 6: Witness Protocol **Priority: LOW** | **Estimated Effort: 4-5 weeks** Witness protocol enables rapid failover notification for clustered file servers. #### 6.1 Core Witness Infrastructure ``` Package: jcifs.internal.witness ├── WitnessClient.java - Witness client implementation ├── WitnessRegistration.java - Client registration with witness
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 10.7K bytes - Click Count (0) -
docs/uk/docs/tutorial/path-params.md
Ви можете використовувати ті самі оголошення типів з `str`, `float`, `bool` та багатьма іншими складними типами даних. Декілька з них розглядаються в наступних розділах посібника. ## Порядок має значення { #order-matters } Під час створення *операцій шляху* можуть виникати ситуації, коли у вас є фіксований шлях. Наприклад, `/users/me` — припустімо, це для отримання даних про поточного користувача.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 14K bytes - Click Count (0) -
cmd/namespace-lock.go
"runtime" "sort" "strings" "sync" "time" "github.com/minio/minio/internal/dsync" "github.com/minio/minio/internal/logger" "github.com/minio/minio/internal/lsync" ) // local lock servers var globalLockServer *localLocker // RWLocker - locker interface to introduce GetRLock, RUnlock. type RWLocker interface { GetLock(ctx context.Context, timeout *dynamicTimeout) (lkCtx LockContext, timedOutErr error)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 9.2K bytes - Click Count (0) -
cmd/utils.go
xfixl := len(xfix) strl := len(str) // short-circuit empty strings if xfixl == 0 || strl == 0 { return "" } // maximum possible length maxl := min(strl, xfixl) // compare letters if pre { // prefix, iterate left to right for i := range maxl { if xfix[i] != str[i] { xfix = xfix[:i] break } } } else { // suffix, iterate right to left
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 33K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java
super(config); this.extended = extended; this.fileType = fileType; } // Use setter methods to configure extended and fileType in parent class public void configureForTest(boolean extended, int fileType) { setExtended(extended); this.fileType = fileType; }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 19.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/fscc/SmbInfoAllocationTest.java
byte[] buffer = new byte[22]; int idFileSystem = 0x22222222; int sectPerAlloc = 8; long alloc = 10000L; long free = 5000L; int bytesPerSect = 32768; // 32KB sectors // Encode test data int offset = 0; SMBUtil.writeInt4(idFileSystem, buffer, offset); offset += 4; SMBUtil.writeInt4(sectPerAlloc, buffer, offset); offset += 4;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.2K bytes - Click Count (0)