- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,267 for revoke (0.12 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/connection/Exchange.kt
} fun noNewExchangesOnConnection() { codec.carrier.noNewExchanges() } fun cancel() { codec.cancel() } /** * Revoke this exchange's access to streams. This is necessary when a follow-up request is * required but the preceding exchange hasn't completed yet. */ fun detachWithViolence() { codec.cancel()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 9.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt
throw AssertionError("failed to remove ALPN", e) } catch (e: InvocationTargetException) { throw AssertionError("failed to remove ALPN", e) } } override fun getSelectedProtocol(sslSocket: SSLSocket): String? { try { val provider = Proxy.getInvocationHandler(getMethod.invoke(null, sslSocket)) as AlpnProvider if (!provider.unsupported && provider.selected == null) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 6K bytes - Viewed (0) -
.bazelrc
# following actions invoke tools (E.g `flatc`, `llvm-tblgen`, etc.) that are # only executabe on the RBE (x86) machine, so the strategy_regexp options are # added to override and run the actions using remote strategy. build:rbe_cross_compile_base_xla --strategy_regexp='Generating code from table.*=remote' build:rbe_cross_compile_base_xla --strategy_regexp='Generating flatbuffer files.*=remote'
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 28 22:02:31 UTC 2024 - 51.3K bytes - Viewed (0) -
cmd/tier-sweeper.go
} // 1. If bucket versioning is disabled, remove the remote object. // 2. If bucket versioning is suspended and // a. version id is specified, remove its remote object. // b. version id is not specified, remove null version's remote object if it exists. // 3. If bucket versioning is enabled and // a. version id is specified, remove its remote object.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Apr 17 05:09:58 UTC 2024 - 4.7K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt
currentPushRequests.remove(streamId) } } } } } internal fun pushResetLater( streamId: Int, errorCode: ErrorCode, ) { pushQueue.execute("$connectionName[$streamId] onReset") { pushObserver.onReset(streamId, errorCode) this.withLock { currentPushRequests.remove(streamId) } } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 32.6K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) pkg syscall (freebsd-arm64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) pkg syscall (freebsd-arm64), func Revoke(string) error pkg syscall (freebsd-arm64), func RouteRIB //deprecated pkg syscall (freebsd-arm64), func RouteRIB(int, int) ([]uint8, error) pkg syscall (freebsd-arm64), func Seek(int, int64, int) (int64, error)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
api/go1.16.txt
pkg syscall (darwin-arm64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) pkg syscall (darwin-arm64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) pkg syscall (darwin-arm64), func Revoke(string) error pkg syscall (darwin-arm64), func RouteRIB //deprecated pkg syscall (darwin-arm64), func RouteRIB(int, int) ([]uint8, error) pkg syscall (darwin-arm64), func Seek(int, int64, int) (int64, error)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 02 16:30:41 UTC 2022 - 479.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java
import org.codehaus.plexus.logging.Logger; import org.eclipse.aether.ConfigurationProperties; import org.eclipse.aether.util.ConfigUtils; // TODO remove the update check manager // TODO separate into retriever and publisher // TODO remove hardcoding of checksum logic /** * Manages <a href="https://maven.apache.org/wagon">Wagon</a> related operations in Maven. */ @Named @Singleton @Deprecated
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.9K bytes - Viewed (0) -
ci/official/README.md
# Advanced: Use Remote Build Execution (RBE) (internal developers only) # # RBE dramatically speeds up builds and testing. It also gives you a # public URL to share your build results with collaborators. However, # it is only available to a limited set of internal TensorFlow developers. # # RBE is incompatible with local caching, so you must remove
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 01 03:21:19 UTC 2024 - 8K bytes - Viewed (0) -
CONTRIBUTING.md
``MinIO`` uses `go mod` to manage its dependencies. - Run `go get foo/bar` in the source folder to add the dependency to `go.mod` file. To remove a dependency - Edit your code and remove the import reference. - Run `go mod tidy` in the source folder to remove dependency from `go.mod` file. ### What are the coding guidelines for MinIO?
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Aug 05 18:35:53 UTC 2024 - 2.9K bytes - Viewed (0)