- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 242 for 23 (0.08 sec)
-
.teamcity/src/test/kotlin/VersionedSettingsBranchTest.kt
@ParameterizedTest @CsvSource( value = [ "master, 0", "release, 1", "release6x, 2", "release7x, 3", "release27x,23" ] ) fun branchesWithVcsTriggerEnabled(branchName: String, expectedNightlyPromotionTriggerHour: Int?) { val vsb = VersionedSettingsBranch(branchName) assertTrue(vsb.enableVcsTriggers)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jan 31 07:59:58 UTC 2023 - 2.1K bytes - Viewed (0) -
docs/security/security.md
| 5.x | ✅ | APIs subject to change in alpha releases. | | 4.x | ✅ | Android 5.0+ (API level 21+) and on Java 8+. | | 3.x | ❌ Ended 2021-12-31 | Android 2.3+ (API level 9+) and Java 7+. | ## Reporting a Vulnerability Square recognizes the important contributions the security research community can make. We therefore encourage reporting security issues with the code
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 27 10:19:17 UTC 2022 - 1.4K bytes - Viewed (0) -
cmd/storagemetric_string.go
_ = x[storageMetricDeleteVersion-18] _ = x[storageMetricWriteMetadata-19] _ = x[storageMetricUpdateMetadata-20] _ = x[storageMetricReadVersion-21] _ = x[storageMetricReadXL-22] _ = x[storageMetricReadAll-23] _ = x[storageMetricStatInfoFile-24] _ = x[storageMetricReadMultiple-25] _ = x[storageMetricDeleteAbandonedParts-26] _ = x[storageMetricDiskInfo-27] _ = x[storageMetricDeleteBulk-28] _ = x[storageMetricRenamePart-29]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Aug 12 08:38:15 UTC 2024 - 2.2K bytes - Viewed (0) -
regression-test/src/androidTest/java/okhttp/regression/LetsEncryptTest.java
@RunWith(AndroidJUnit4.class) public class LetsEncryptTest { @Test public void getFailsWithoutAdditionalCert() throws IOException { OkHttpClient client = new OkHttpClient(); boolean androidMorEarlier = Build.VERSION.SDK_INT <= 23; try { sendRequest(client, "https://valid-isrgrootx1.letsencrypt.org/robots.txt"); if (androidMorEarlier) { fail(); } } catch (SSLHandshakeException sslhe) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Nov 17 07:40:31 UTC 2020 - 6.1K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/HttpUrlTest.kt
.query("i:\u0001@/\\?#%j") .fragment("k:\u0001@/\\?#%l") .build() assertThat(url.toString()) .isEqualTo( "http://a%3A%01%40%2F%5C%3F%23%25b:c%3A%01%40%2F%5C%3F%23%25d@ef:8080/" + "g:%01@%2F%5C%3F%23%25h?i:%01@/\\?%23%25j#k:%01@/\\?#%25l", ) assertThat(url.scheme).isEqualTo("http") assertThat(url.username).isEqualTo("a:\u0001@/\\?#%b")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 67.9K bytes - Viewed (0) -
docs/de/docs/tutorial/dependencies/sub-dependencies.md
## Die Abhängigkeit verwenden Diese Abhängigkeit verwenden wir nun wie folgt: //// tab | Python 3.10+ ```Python hl_lines="23" {!> ../../docs_src/dependencies/tutorial005_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="23" {!> ../../docs_src/dependencies/tutorial005_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="24"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/HttpUrlJvmTest.kt
.host("host") .addPathSegment("=[]:;\"~|?#@^/$%*") .build() assertThat(url.toString()) .isEqualTo("http://host/=[]:;%22~%7C%3F%23@%5E%2F$%25*") assertThat(url.toUri().toString()) .isEqualTo("http://host/=%5B%5D:;%22~%7C%3F%23@%5E%2F$%25*") } @Test fun toUriQueryParameterNameSpecialCharacters() { val url = HttpUrl.Builder() .scheme("http")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosConstants.java
static final int AF_ISO = 7; static final int AUTH_DATA_RELEVANT = 1; static final int AUTH_DATA_PAC = 128; static final int DES_ENC_TYPE = 3; static final int RC4_ENC_TYPE = 23; static final String RC4_ALGORITHM = "ARCFOUR"; static final String HMAC_ALGORITHM = "HmacMD5"; static final int CONFOUNDER_SIZE = 8; static final int CHECKSUM_SIZE = 16;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 21 21:19:58 UTC 2018 - 1.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java
} public void testLinkedPutInOrder() { Multimap<String, Integer> map = create(); map.put("foo", 1); map.put("bar", 2); map.put("bar", 3); assertEquals("{foo=[1], bar=[2, 3]}", map.toString()); assertEquals("[foo=1, bar=2, bar=3]", map.entries().toString()); } public void testLinkedPutOutOfOrder() { Multimap<String, Integer> map = create(); map.put("bar", 1);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 18K bytes - Viewed (0) -
go.mod
github.com/cespare/xxhash/v2 v2.3.0 github.com/cheggaaa/pb v1.0.29 github.com/coreos/go-oidc/v3 v3.11.0 github.com/coreos/go-systemd/v22 v22.5.0 github.com/cosnicolaou/pbzip2 v1.0.3 github.com/dchest/siphash v1.2.3 github.com/dustin/go-humanize v1.0.1 github.com/eclipse/paho.mqtt.golang v1.5.0 github.com/elastic/go-elasticsearch/v7 v7.17.10 github.com/fatih/color v1.17.0 github.com/felixge/fgprof v0.9.4
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 11.1K bytes - Viewed (0)