- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 260 for friend (0.07 sec)
-
docs/en/docs/python-types.md
But then you have to call "that method that converts the first letter to upper case". Was it `upper`? Was it `uppercase`? `first_uppercase`? `capitalize`? Then, you try with the old programmer's friend, editor autocompletion. You type the first parameter of the function, `first_name`, then a dot (`.`) and then hit `Ctrl+Space` to trigger the completion. But, sadly, you get nothing useful:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 17.1K bytes - Viewed (0) -
schema/schema_test.go
}, { Name: "FriendID", DBName: "friend_id", BindNames: []string{"FriendID"}, DataType: schema.Uint, Tag: `gorm:"primarykey"`, Creatable: true, Updatable: true, Readable: true, PrimaryKey: true, Size: 64, }, }}, References: []Reference{{"ID", "User", "UserID", "user_friends", "", true}, {"ID", "User", "FriendID", "user_friends", "", false}}, }, }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Aug 28 02:57:17 UTC 2025 - 13.3K bytes - Viewed (0) -
tests/generics_test.go
ctx := context.Background() db := gorm.G[User](DB) u := *GetUser("GenericsPreloads_1", Config{Company: true, Pets: 3, Friends: 7}) u2 := *GetUser("GenericsPreloads_2", Config{Company: true, Pets: 5, Friends: 5}) u3 := *GetUser("GenericsPreloads_3", Config{Company: true, Pets: 7, Friends: 3}) names := []string{u.Name, u2.Name, u3.Name} db.CreateInBatches(ctx, &[]User{u3, u, u2}, 10)
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 28K bytes - Viewed (0) -
schema/field.go
field.IgnoreMigration = true case "migration": field.IgnoreMigration = true } } if v, ok := field.TagSettings["->"]; ok { field.Creatable = false field.Updatable = false if strings.ToLower(v) == "false" { field.Readable = false } else { field.Readable = true } } if v, ok := field.TagSettings["<-"]; ok { field.Creatable = true field.Updatable = true
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Aug 20 04:51:17 UTC 2025 - 32K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
String result = testBlock.readString(buffer, 2); assertEquals("Test", result); } @Test @DisplayName("Test read string with max length and srcEnd") void testReadStringWithMaxLengthAndSrcEnd() { testBlock.setUseUnicode(false); when(mockConfig.getOemEncoding()).thenReturn("UTF-8");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
* @param src source buffer * @param srcIndex starting index in the buffer * @param srcEnd ending index boundary * @param maxLen maximum length to read * @param unicode whether to use Unicode encoding * @return read string */ public String readString(final byte[] src, int srcIndex, final int srcEnd, final int maxLen, final boolean unicode) { if (unicode) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/test/java/jcifs/util/SmbCircuitBreakerTest.java
* Test class for SmbCircuitBreaker */ public class SmbCircuitBreakerTest { private SmbCircuitBreaker circuitBreaker; @BeforeEach public void setUp() { // Create circuit breaker with test-friendly settings circuitBreaker = new SmbCircuitBreaker("test", 3, 2, 1000, 3); } @Test public void testInitialState() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
if (LogStream.level > 1) { uee.printStackTrace(log); } } return str; } String readString(final byte[] src, int srcIndex, final int srcEnd, final int maxLen, final boolean useUnicode) { int len = 0; String str = null; try { if (useUnicode) { // Unicode requires word alignment
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.7K bytes - Viewed (0) -
docs/lambda/README.md
* Running on http://127.0.0.1:5000 Press CTRL+C to quit ``` ## Start MinIO with Lambda target Register MinIO with a Lambda function, we are calling our target name as `function`, but you may call it any other friendly name of your choice. ``` MINIO_LAMBDA_WEBHOOK_ENABLE_function=on MINIO_LAMBDA_WEBHOOK_ENDPOINT_function=http://localhost:5000 minio server /data & ... ... MinIO Object Storage Server Copyright: 2015-2023 MinIO, Inc.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.7K bytes - Viewed (0) -
docs/en/docs/help-fastapi.md
And there are several ways to get help too. ## Subscribe to the newsletter { #subscribe-to-the-newsletter } You can subscribe to the (infrequent) [**FastAPI and friends** newsletter](newsletter.md){.internal-link target=_blank} to stay updated about: * News about FastAPI and friends 🚀 * Guides 📝 * Features ✨ * Breaking changes 🚨 * Tips and tricks ✅ ## Follow FastAPI on X (Twitter) { #follow-fastapi-on-x-twitter }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 14K bytes - Viewed (0)