- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 15 for E501 (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
pyproject.toml
"W", # pycodestyle warnings "F", # pyflakes "I", # isort "B", # flake8-bugbear "C4", # flake8-comprehensions "UP", # pyupgrade ] ignore = [ "E501", # line too long, handled by black "B008", # do not perform function calls in argument defaults "C901", # too complex "W191", # indentation contains tabs ] [tool.ruff.lint.per-file-ignores]Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 27 12:54:56 GMT 2025 - 9.3K bytes - Click Count (0) -
tests/test_tutorial/test_body/test_tutorial003.py
def test_put_all(client: TestClient): response = client.put( "/items/123", json={"name": "Foo", "price": 50.1, "description": "Some Foo", "tax": 0.3}, ) assert response.status_code == 200 assert response.json() == { "item_id": 123, "name": "Foo", "price": 50.1, "description": "Some Foo", "tax": 0.3, } def test_put_only_required(client: TestClient):
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Dec 26 10:43:02 GMT 2025 - 5.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java
cache.put(10, 20); fakeTicker.advance(500, MILLISECONDS); cache.put(20, 22); cache.put(5, 10); fakeTicker.advance(501, MILLISECONDS); assertThat(cache.asMap().values().contains(22)).isTrue(); assertThat(cache.asMap().values().contains(10)).isTrue(); assertThat(cache.asMap().values().contains(20)).isFalse(); }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Sep 30 22:03:28 GMT 2025 - 14.8K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcIntegrationTest.java
sidArray.sids[1].sid.identifier_authority = new byte[] { 0, 0, 0, 0, 0, 5 }; sidArray.sids[1].sid.sub_authority_count = 1; sidArray.sids[1].sid.sub_authority = new int[] { 501 }; // Encode to buffer byte[] buffer = new byte[1024]; NdrBuffer encodeBuffer = new NdrBuffer(buffer, 0); sidArray.encode(encodeBuffer); // Decode from buffer
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
String[] roles = new String[] { SuggestConstants.DEFAULT_ROLE, "role1", "role2", "role3" }; items.add(new SuggestItem(new String[] { "ドキュメント" + 1 }, readings, new String[] { "content" }, 15, 0, -1, tags, roles, null, SuggestItem.Kind.DOCUMENT)); } { String[][] readings = new String[2][]; readings[0] = new String[] { "-aa-a" };
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 37.4K bytes - Click Count (0) -
gradle/libs.versions.toml
[versions] agp = "8.13.1" biz-aQute-bnd = "7.1.0" checkStyle = "12.3.0" com-squareup-moshi = "1.15.2" com-squareup-okio = "3.16.4" de-mannodermaus-junit5 = "1.9.0" graalvm = "25.0.1" #noinspection UnusedVersionCatalogEntry junit-platform = "1.13.4" kotlinx-serialization = "1.9.0" ksp = "2.3.2" lintGradle = "1.0.0-alpha05" mockserverClient = "5.15.0" org-bouncycastle = "1.82" org-conscrypt = "2.5.2" org-jetbrains-coroutines = "1.10.2"
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Dec 19 22:05:50 GMT 2025 - 8.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 28 18:19:59 GMT 2025 - 21.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 28 18:19:59 GMT 2025 - 21.9K bytes - Click Count (0) -
cmd/format-erasure.go
// Does all errors indicate we need to initialize all disks?. func shouldInitErasureDisks(errs []error) bool { return countErrs(errs, errUnformattedDisk) == len(errs) } // Check if unformatted disks are equal to 50%+1 of all the drives. func quorumUnformattedDisks(errs []error) bool { return countErrs(errs, errUnformattedDisk) >= (len(errs)/2)+1 } // loadFormatErasureAll - load all format config from all input disks in parallel.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 23.1K bytes - Click Count (0) -
src/archive/tar/writer_test.go
file: "testdata/ustar.tar", tests: []testFnc{ testHeader{Header{ Typeflag: TypeReg, Name: strings.Repeat("longname/", 15) + "file.txt", Size: 6, Mode: 0644, Uid: 501, Gid: 20, Uname: "shane", Gname: "staff", ModTime: time.Unix(1360135598, 0), }, nil}, testWrite{"hello\n", 6, nil}, testClose{nil}, }, }, {
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Dec 15 16:34:13 GMT 2025 - 40.2K bytes - Click Count (0)