- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 358 for 13 (0.02 sec)
-
.teamcity/src/main/kotlin/model/CIBuildModel.kt
Os.LINUX, JvmCategory.MIN_VERSION, DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE, ), TestCoverage(13, TestType.NO_DAEMON, Os.WINDOWS, JvmCategory.MAX_LTS_VERSION), TestCoverage( 14, TestType.PLATFORM, Os.MACOS,Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Nov 05 13:00:26 UTC 2025 - 27.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
String ver, pkgs; ver = System.getProperty("java.version"); if (ver.startsWith("1.1.") || ver.startsWith("1.2.")) { throw new RuntimeException("jcifs.smb1-0.7.0b4+ requires Java 1.3 or above. You are running " + ver); } pkgs = System.getProperty("java.protocol.handler.pkgs"); if (pkgs == null) { System.setProperty("java.protocol.handler.pkgs", "jcifs.smb1");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
docs/ko/docs/python-types.md
위와 같은 타입은 **Generic(제네릭) 타입** 혹은 **Generics(제네릭스)**라고 불립니다. ### 타입으로서의 클래스 변수의 타입으로 클래스를 선언할 수도 있습니다. 이름(name)을 가진 `Person` 클래스가 있다고 해봅시다. {* ../../docs_src/python_types/tutorial010.py hl[1:3] *} 그렇게 하면 변수를 `Person`이라고 선언할 수 있게 됩니다. {* ../../docs_src/python_types/tutorial010.py hl[6] *} 그리고 역시나 모든 에디터 도움을 받게 되겠죠. <img src="/img/python-types/image06.png"> ## Pydantic 모델Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 10.2K bytes - Viewed (0) -
LICENSE
to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Remote Network Interaction; Use with the GNU General Public License. Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 33.7K bytes - Viewed (0) -
docs/de/docs/python-types.md
Sie können auch eine Klasse als Typ einer Variablen deklarieren. Nehmen wir an, Sie haben eine Klasse `Person`, mit einem Namen: {* ../../docs_src/python_types/tutorial010_py39.py hl[1:3] *} Dann können Sie eine Variable vom Typ `Person` deklarieren: {* ../../docs_src/python_types/tutorial010_py39.py hl[6] *} Und wiederum bekommen Sie die volle Editor-Unterstützung:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 17.9K bytes - Viewed (1) -
CHANGELOG/CHANGELOG-1.17.md
- [Changes by Kind](#changes-by-kind-13) - [Feature](#feature-3) - [Bug or Regression](#bug-or-regression-12) - [Other (Cleanup or Flake)](#other-cleanup-or-flake-8) - [v1.17.4](#v1174) - [Downloads for v1.17.4](#downloads-for-v1174) - [Client Binaries](#client-binaries-13) - [Server Binaries](#server-binaries-13) - [Node Binaries](#node-binaries-13)Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
// [08] plugin:descriptor // [09] resources:resources // [10] compiler:compile // [11] resources:testResources // [12] compiler:testCompile // [13] surefire:test // [14] jar:jar // [15] install:install // assertListEquals( List.of( "clean:clean",Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 22.9K bytes - Viewed (0) -
docs/zh/docs/tutorial/query-params-str-validations.md
/// 你可以添加 `title`: {* ../../docs_src/query_params_str_validations/tutorial007.py hl[10] *} 以及 `description`: {* ../../docs_src/query_params_str_validations/tutorial008.py hl[13] *} ## 别名参数 假设你想要查询参数为 `item-query`。 像下面这样: ``` http://127.0.0.1:8000/items/?item-query=foobaritems ``` 但是 `item-query` 不是一个有效的 Python 变量名称。 最接近的有效名称是 `item_query`。Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Feb 15 16:23:59 UTC 2025 - 7.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java
assertThat(cache.asMap().containsKey(2456)).isFalse(); assertThat(cache.asMap().containsKey(2)).isFalse(); cache.put(654, 2675); cache.put(2456, 56); cache.put(2, 15); cache.put(1, 3); cache.invalidateAll(ImmutableSet.of(1, 2)); assertThat(cache.asMap().containsKey(1)).isFalse(); assertThat(cache.asMap().containsKey(2)).isFalse();
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 30 22:03:28 UTC 2025 - 14.8K bytes - Viewed (0) -
ci/official/utilities/code_check_full.bats
license_query "deps($LICENSES_TARGET)" > $BATS_TEST_TMPDIR/actual_licenses # Column 1 is left only, Column 2 is right only, Column 3 is shared lines # Select lines unique to actual_licenses, i.e. extra licenses. comm -1 -3 $BATS_TEST_TMPDIR/expected_licenses $BATS_TEST_TMPDIR/actual_licenses | grep -v -f $BATS_TEST_TMPDIR/allowed_to_be_extra > $BATS_TEST_TMPDIR/actual_extra_licenses || true # Select lines unique to expected_licenses, i.e. missing licenses
Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Fri Dec 19 18:47:57 UTC 2025 - 13.5K bytes - Viewed (0)