- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 321 for openid (0.07 sec)
-
docs/pl/docs/index.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 19.3K bytes - Viewed (0) -
istioctl/pkg/dashboard/dashboard.go
CommandShort: "Open admin web UI for a proxy", CommandLong: `Open the admin dashboard for a proxy, like envoy and ztunnel pods`, CommandExample: ` # Open envoy admin dashboard for the productpage-123-456.default pod istioctl dashboard proxy productpage-123-456.default # Open envoy admin dashboard for one pod under a deployment istioctl dashboard proxy deployment/productpage-v1
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Apr 15 01:29:35 UTC 2024 - 20.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/NullPointerTester.java
TypeVariable<?> typeVar = (TypeVariable<?>) type; for (AnnotatedType bound : typeVar.getAnnotatedBounds()) { // Until Java 15, the isNullableTypeVariable case here won't help: // https://bugs.openjdk.java.net/browse/JDK-8202469 if (containsNullable(bound.getAnnotations()) || isNullableTypeVariable(bound.getType())) { return true; } } return false; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 23.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
if ( getType() == TYPE_NAMED_PIPE ) { // try opening the pipe for reading? return true; } return exists(); // try opening and catch sharing violation? } @Override public boolean canWrite () throws SmbException { if ( getType() == TYPE_NAMED_PIPE ) { // try opening the pipe for writing? return true; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
* and released to the public domain, as explained at * http://creativecommons.org/licenses/publicdomain * * As of 2010/06/11, this method is identical to the (package private) hash method in OpenJDK 7's * java.util.HashMap class. */ // Copied from java/com/google/common/collect/Hashing.java private static int smear(int hashCode) { hashCode ^= (hashCode >>> 20) ^ (hashCode >>> 12);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 26 12:58:35 UTC 2024 - 20.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/tls/HostnameVerifierTest.kt
assertThat(verifier.verify("tel.com", session)).isFalse() assertThat(verifier.verify("k.com", session)).isFalse() } @Test fun specialKInExternalCert() { // OpenJDK related test. platform.assumeNotConscrypt() // Expecting actual: // ["â¡.com", "âª.com"] // to contain exactly (and in same order): // ["���.com", "���.com"]
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 40.3K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/ClassPath.java
* not look for classes in the <i>module path</i>. * <li>It understands only {@code file:} URLs. This means that it does not understand <a * href="https://openjdk.java.net/jeps/220">{@code jrt:/} URLs</a>, among <a * href="https://github.com/classgraph/classgraph/wiki/Classpath-specification-mechanisms">others</a>.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jan 05 17:43:40 UTC 2022 - 24.9K bytes - Viewed (0) -
src/archive/zip/writer.go
if !w.hasDataDescriptor() { return nil } // Write data descriptor. This is more complicated than one would // think, see e.g. comments in zipfile.c:putextended() and // https://bugs.openjdk.org/browse/JDK-7073588. // The approach here is to write 8 byte sizes if needed without // adding a zip64 extra in the local header (too late anyway). var buf []byte if w.isZip64() {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:32:33 UTC 2024 - 19.4K bytes - Viewed (0) -
src/archive/zip/zip_test.go
} // read back zip file and check that we get to the end of it r, err := NewReader(buf, buf.Size()) if err != nil { t.Fatal("reader:", err) } f0 := r.File[0] rc, err := f0.Open() if err != nil { t.Fatal("opening:", err) } rc.(*checksumReader).hash = fakeHash32{} for i := 0; i < chunks; i++ { _, err := io.ReadFull(rc, chunk) if err != nil { t.Fatal("read:", err) } }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu May 23 01:00:11 UTC 2024 - 19.6K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
* New: Upgrade to Conscrypt 2.0.0. OkHttp works with other versions of Conscrypt but this is the version we're testing against. ```kotlin implementation("org.conscrypt:conscrypt-openjdk-uber:2.0.0") ``` * New: Update the embedded public suffixes list. ## Version 3.13.1 _2019-02-05_
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0)