- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 1,303 for causes (0.07 sec)
-
src/main/java/jcifs/RuntimeCIFSException.java
} /** * @param message * @param cause */ public RuntimeCIFSException ( String message, Throwable cause ) { super(message, cause); } /** * @param message */ public RuntimeCIFSException ( String message ) { super(message); } /** * @param cause */ public RuntimeCIFSException ( Throwable cause ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.6K 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) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelTransformerException.java
public ModelTransformerException(String message) { this(message, null); } public ModelTransformerException(Throwable cause) { this(null, cause); } public ModelTransformerException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:15:53 UTC 2024 - 1.4K 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlerSystemException.java
public CrawlerSystemException(final String message, final Throwable cause) { super(message, cause); } public CrawlerSystemException(final String message) { super(message); } public CrawlerSystemException(final Throwable cause) { super(cause); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/GraphConflictResolutionException.java
public GraphConflictResolutionException(String message) { super(message); } public GraphConflictResolutionException(Throwable cause) { super(cause); } public GraphConflictResolutionException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
chainable_api.go
tx = db.getInstance() tx.Statement.Model = value return } // Clauses Add clauses // // This supports both standard clauses (clause.OrderBy, clause.Limit, clause.Where) and more // advanced techniques like specifying lock strength and optimizer hints. See the // [docs] for more depth. // // // add a simple limit clause // db.Clauses(clause.Limit{Limit: 1}).Find(&User{}) // // tell the optimizer to use the `idx_user_name` index
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Jun 24 09:42:59 UTC 2024 - 14.8K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/SubscriberRegistry.java
* UncheckedExecutionException, which has the stack trace from this thread and which has its * cause set to the underlying exception (which may be from another thread). If we someday * learn that some other exception besides IllegalArgumentException is common, then we could * add another special case to throw an instance of it, too. */ throw e; } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:16:45 UTC 2024 - 10.8K bytes - Viewed (0) -
schema/naming.go
return ret } func (ns NamingStrategy) toSchemaName(name string) string { result := strings.ReplaceAll(cases.Title(language.Und, cases.NoLower).String(strings.ReplaceAll(name, "_", " ")), " ", "") for _, initialism := range commonInitialisms { result = regexp.MustCompile(cases.Title(language.Und, cases.NoLower).String(strings.ToLower(initialism))+"([A-Z]|$|_)").ReplaceAllString(result, initialism+"$1") } return result
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed Jun 12 03:46:59 UTC 2024 - 5.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/VersionNotFoundException.java
private InvalidVersionSpecificationException cause; public VersionNotFoundException( String projectId, Dependency dependency, File pomFile, InvalidVersionSpecificationException cause) { super( projectId + ", " + formatLocationInPom(dependency) + " " + dependency.getVersion() + ", pom file " + pomFile, cause); this.projectId = projectId;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0)