- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 608 for Causes (0.08 sec)
-
internal/ioutil/ioutil.go
} type ioret[V any] struct { val V err error } // WithDeadline will execute a function with a deadline and return a value of a given type. // If the deadline/context passes before the function finishes executing, // the zero value and the context error is returned.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 26 12:55:01 UTC 2024 - 10.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/MavenExecutionException.java
this.pomFile = pomFile; } public MavenExecutionException(String message, File pomFile, ProjectBuildingException cause) { super(message, cause); this.pomFile = pomFile; } public MavenExecutionException(String message, Throwable cause) { super(message, cause); } public File getPomFile() { return pomFile; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ParseRuntimeException.java
private static final long serialVersionUID = -5237329676597387063L; /** * {@link ParseRuntimeException}を作成します。 * * @param cause * 原因となった例外 */ public ParseRuntimeException(final ParseException cause) { super("ECL0050", asArray(cause), cause); } /** * {@link ParseRuntimeException}を作成します。 * * @param s * 解析できなかった文字列 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/SubscriberExceptionContext.java
/** * @param eventBus The {@link EventBus} that handled the event and the subscriber. Useful for * broadcasting a new event based on the error. * @param event The event object that caused the subscriber to throw. * @param subscriber The source subscriber context. * @param subscriberMethod the subscribed method. */ SubscriberExceptionContext(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Apr 22 13:05:46 UTC 2021 - 2.2K bytes - Viewed (0) -
fuzzing/fuzzingserver-config.json
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Mar 26 02:01:32 UTC 2019 - 2.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/InvalidRepositoryException.java
public InvalidRepositoryException(String message, String repositoryId, MalformedURLException cause) { super(message, cause); this.repositoryId = repositoryId; } protected InvalidRepositoryException(String message, String repositoryId, ComponentLookupException cause) { super(message, cause); this.repositoryId = repositoryId; } @Deprecated
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
tests/test_inherited_custom_class.py
def return_fast_uuid(): asyncpg_uuid = MyUuid("a10ff360-3b1e-4984-a26f-d3ab460bdb51") assert isinstance(asyncpg_uuid, uuid.UUID) assert type(asyncpg_uuid) is not uuid.UUID with pytest.raises(TypeError): vars(asyncpg_uuid) return {"fast_uuid": asyncpg_uuid} class SomeCustomClass(BaseModel): model_config = {"arbitrary_types_allowed": True} a_uuid: MyUuid
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 17 04:13:50 UTC 2024 - 3K bytes - Viewed (0) -
internal/grid/stream.go
// Done will return a channel that will be closed when the stream is done. // This mirrors context.Done(). func (s *Stream) Done() <-chan struct{} { return s.ctx.Done() } // Err will return the error that caused the stream to end. // This mirrors context.Err(). func (s *Stream) Err() error { return s.ctx.Err()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 07 15:51:52 UTC 2024 - 3.1K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionException.java
} public ArtifactResolutionException(String message, Artifact artifact, Throwable cause) { super(message, artifact, null, cause); } public ArtifactResolutionException( String message, Artifact artifact, List<ArtifactRepository> remoteRepositories, Throwable cause) { super(message, artifact, remoteRepositories, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactNotFoundException.java
artifact.getDependencyTrail()); } protected ArtifactNotFoundException( String message, Artifact artifact, List<ArtifactRepository> remoteRepositories, Throwable cause) { this( message, artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion(), artifact.getType(),
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0)