- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 2,641 for segfault (0.14 sec)
-
guava-tests/test/com/google/common/base/OptionalTest.java
} @SuppressWarnings("OptionalOfRedundantMethod") // Unit tests for Optional public void testOr_t_present() { assertEquals("a", Optional.of("a").or("default")); } public void testOr_t_absent() { assertEquals("default", Optional.absent().or("default")); } @SuppressWarnings("OptionalOfRedundantMethod") // Unit tests for Optional public void testOr_supplier_present() {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 10.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java
/** * Query only snapshot repositories to discover versions. */ SNAPSHOT, /** * Query both release and snapshot repositories to discover versions. * This is the default behavior. */ RELEASE_OR_SNAPSHOT } /** * Gets the artifact coordinates whose version range should be resolved.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 10.4K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java
runtimeInformation); org.apache.maven.api.RemoteRepository remoteRepository = session.getRemoteRepository( new RemoteRepository.Builder("mirror", "default", "file:target/test-classes/repo").build()); this.session = session.withRemoteRepositories(Collections.singletonList(remoteRepository)); InternalSession.associate(rss, this.session); sessionScope.enter();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BooleanConversionUtil.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FessAppService.java
* throughout the Fess search application. */ public abstract class FessAppService { /** * Default constructor. */ public FessAppService() { // Default constructor } /** * Wraps a query string with wildcard characters to enable partial matching.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/cisupport/CIInfo.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Apr 13 18:50:07 UTC 2025 - 1.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojosExecutionStrategy.java
import java.util.List; import org.apache.maven.execution.MavenSession; import org.apache.maven.lifecycle.LifecycleExecutionException; /** * Interface allows overriding default mojo execution strategy For example it is possible wrap some mojo execution to * decorate default functionality or skip some executions */ public interface MojosExecutionStrategy { /** * Entry point to the execution strategy *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
docs_src/sql_databases/tutorial001_an_py39.py
from sqlmodel import Field, Session, SQLModel, create_engine, select class Hero(SQLModel, table=True): id: Union[int, None] = Field(default=None, primary_key=True) name: str = Field(index=True) age: Union[int, None] = Field(default=None, index=True) secret_name: str sqlite_file_name = "database.db" sqlite_url = f"sqlite:///{sqlite_file_name}" connect_args = {"check_same_thread": False}
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Oct 09 19:44:42 UTC 2024 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/LogStreamTest.java
@Test void testDefaultLevel() { // Test that default level is 1 assertEquals(1, LogStream.level); } @Test void testLevelValuesDocumentation() { // Test various level values as documented // 0 - nothing LogStream.setLevel(0); assertEquals(0, LogStream.level); // 1 - critical [default] LogStream.setLevel(1);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java
sb.style(AttributedStyle.DEFAULT.bold().foreground(69)); } else { sb.style(AttributedStyle.DEFAULT.foreground(AttributedStyle.CYAN)); } } else { sb.style(AttributedStyle.DEFAULT.boldOff().foregroundOff()); } } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 10.1K bytes - Viewed (0)