- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 1,310 for interfere (0.76 sec)
-
src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java
} } @Test @DisplayName("Test SecurityInfo interface is public") void testInterfaceIsPublic() { int modifiers = SecurityInfo.class.getModifiers(); assertTrue(Modifier.isPublic(modifiers), "SecurityInfo interface should be public"); assertTrue(Modifier.isInterface(modifiers), "SecurityInfo should be an interface"); } @Test @DisplayName("Test constant values range")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.5K bytes - Viewed (0) -
utils/tests/utils.go
) func AssertObjEqual(t *testing.T, r, e interface{}, names ...string) { for _, name := range names { rv := reflect.Indirect(reflect.ValueOf(r)) ev := reflect.Indirect(reflect.ValueOf(e)) if rv.IsValid() != ev.IsValid() { t.Errorf("%v: expect: %+v, got %+v", utils.FileWithLineNum(), r, e) return } got := rv.FieldByName(name).Interface() expect := ev.FieldByName(name).Interface() t.Run(name, func(t *testing.T) {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Mar 10 09:21:56 UTC 2023 - 3.9K bytes - Viewed (0) -
schema/constraint.go
Constraint string // length(phone) >= 10 *Field } func (chk *CheckConstraint) GetName() string { return chk.Name } func (chk *CheckConstraint) Build() (sql string, vars []interface{}) { return "CONSTRAINT ? CHECK (?)", []interface{}{clause.Column{Name: chk.Name}, clause.Expr{SQL: chk.Constraint}} } // ParseCheckConstraints parse schema check constraints func (schema *Schema) ParseCheckConstraints() map[string]CheckConstraint {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Mar 18 07:33:54 UTC 2024 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
import jcifs.Configuration; import jcifs.FileNotifyInformation; import jcifs.internal.smb1.trans.nt.NtTransNotifyChangeResponse; import jcifs.internal.smb2.notify.Smb2ChangeNotifyResponse; /** * Test class for NotifyResponse interface and its implementations */ class NotifyResponseTest { @Mock private Configuration mockConfig; @Mock private FileNotifyInformation mockNotifyInfo1; @Mock
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
gorm.go
} // Expr returns clause.Expr, which can be used to pass SQL expression as params func Expr(expr string, args ...interface{}) clause.Expr { return clause.Expr{SQL: expr, Vars: args} } // SetupJoinTable setup join table schema func (db *DB) SetupJoinTable(model interface{}, field string, joinTable interface{}) error { var ( tx = db.getInstance() stmt = tx.Statement
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Aug 26 06:24:29 UTC 2025 - 12.8K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PackagingProvider.java
import org.apache.maven.api.di.Named; /** * Service provider interface for registering custom {@link Packaging} implementations. * <p> * This interface allows plugins and extensions to define and register additional packaging types * beyond the standard ones provided by Maven (like jar, war, ear, etc.). Implementations of this * interface will be discovered through the Java ServiceLoader mechanism and their provided
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2K bytes - Viewed (0) -
schema/constraint_test.go
for _, name := range []string{"Name", "Constraint"} { if reflect.ValueOf(result).FieldByName(name).Interface() != reflect.ValueOf(v).FieldByName(name).Interface() { t.Errorf( "check %v %v should equal, expects %v, got %v", k, name, reflect.ValueOf(result).FieldByName(name).Interface(), reflect.ValueOf(v).FieldByName(name).Interface(), ) } } } } func TestParseUniqueConstraints(t *testing.T) {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun Feb 04 07:49:19 UTC 2024 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/NetbiosNameTest.java
import org.mockito.Mock; /** * Test class for NetbiosName interface functionality */ @DisplayName("NetbiosName Tests") class NetbiosNameTest extends BaseTest { @Mock private NetbiosName mockNetbiosName; @Test @DisplayName("Should define interface methods") void testNetbiosNameInterface() { // Verify interface methods exist try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/LifecycleProvider.java
/** * Service provider interface for registering custom {@link Lifecycle} implementations. * <p> * This interface allows plugins and extensions to define and register additional build lifecycles * beyond the standard ones provided by Maven (like clean, default, site). Lifecycles define a sequence * of phases that can be executed during a build. * <p>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.2K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PathScopeProvider.java
/** * Service provider interface for registering custom {@link PathScope} implementations. * <p> * This interface allows plugins and extensions to define and register additional path scopes * beyond the standard ones provided by Maven. Path scopes define how dependencies are used * in different contexts, such as compilation, testing, or runtime. * <p>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.1K bytes - Viewed (0)