- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 887 for Hannon (0.09 sec)
-
okhttp/src/main/kotlin/okhttp3/ConnectionListener.kt
- */
- package okhttp3
- import okio.IOException
- /**
- * Listener for connection events. Extend this class to monitor the new connections and closes.
- *
- * All event methods must execute fast, without external locking, cannot throw exceptions,
- * attempt to mutate the event parameters, or be reentrant back into the client.
- * Any IO - writing to files or network should be done asynchronously.
- */
- @ExperimentalOkHttpApi
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 23 14:31:42 UTC 2024 - 2.2K bytes - Viewed (0) -
cni/pkg/pluginlistener/listener.go
- return nil, fmt.Errorf("failed to remove unix://%s: %v", path, err)
- }
- // Attempt to create the folder in case it doesn't exist
- if err := os.MkdirAll(filepath.Dir(path), 0o750); err != nil {
- // If we cannot create it, just warn here - we will fail later if there is a real error
- log.Warnf("Failed to create directory for %v: %v", path, err)
- }
- var err error
- listener, err := net.Listen("unix", path)
- if err != nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jan 26 20:34:28 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/exbhv/GroupBhv.java
- return result;
- } catch (InstantiationException | IllegalAccessException e) {
- final String msg = "Cannot create a new instance: " + entityType.getName();
- throw new IllegalBehaviorStateException(msg, e);
- }
- }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrException.java
- */
- package jcifs.smb1.dcerpc.ndr;
- import java.io.IOException;
- public class NdrException extends IOException {
- public static final String NO_NULL_REF = "ref pointer cannot be null";
- public static final String INVALID_CONFORMANCE = "invalid array conformance";
- public NdrException( String msg ) {
- super( msg );
- }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Cache.kt
- val key = key(request.url)
- val snapshot: DiskLruCache.Snapshot =
- try {
- cache[key] ?: return null
- } catch (_: IOException) {
- return null // Give up because the cache cannot be read.
- }
- val entry: Entry =
- try {
- Entry(snapshot.getSource(ENTRY_METADATA))
- } catch (_: IOException) {
- snapshot.closeQuietly()
- return null
- }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 26.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/transport/Transport.java
- }
- public void run() {
- Thread run_thread = Thread.currentThread();
- Exception ex0 = null;
- try {
- /* We cannot synchronize (run_thread) here or the caller's
- * thread.wait( timeout ) cannot reaquire the lock and
- * return which would render the timeout effectively useless.
- */
- doConnect();
- } catch( Exception ex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 9K bytes - Viewed (0) -
common-protos/k8s.io/api/events/v1beta1/generated.proto
- // reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
- // This field cannot be empty for new Events.
- // +optional
- optional string reportingController = 4;
- // reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`.
- // This field cannot be empty for new Events and it can have at most 128 characters.
- // +optional
- optional string reportingInstance = 5;
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 5.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/deployer/SimpleArtifactMetadataSource.java
- public ResolutionGroup retrieve(
- Artifact artifact, ArtifactRepository localRepository, List<ArtifactRepository> remoteRepositories) {
- throw new UnsupportedOperationException("Cannot retrieve metadata in this test case");
- }
- public List<ArtifactVersion> retrieveAvailableVersions(
- Artifact artifact, ArtifactRepository localRepository, List<ArtifactRepository> remoteRepositories) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/SettableFuture.java
- * other {@code Future}, be {@linkplain #cancel cancelled}.
- *
- * <p>{@code SettableFuture} is the recommended {@code ListenableFuture} implementation when your
- * task cannot be implemented with {@link ListeningExecutorService}, the various {@link Futures}
- * utility methods, or {@link ListenableFutureTask}. Those APIs have less opportunity for developer
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 01 17:18:04 UTC 2021 - 2.4K bytes - Viewed (0) -
docs/debugging/README.md
- mc: Decryption key: ad2b43d847fdb14e54c5836200177f7158b3f745433525f5d23c0e0208e50c9948540b54
- mc: The decryption key will ONLY be shown here. It cannot be recovered.
- mc: The encrypted file can safely be shared without the decryption key.
- mc: Even with the decryption key, data stored with encryption cannot be accessed.
- ```
- This file can be decrypted using the decryption tool below:
- ### Installing decryption tool
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Feb 25 01:17:53 UTC 2022 - 8.7K bytes - Viewed (0)