- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 710 for Changed (0.04 sec)
-
src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java
// Execute String result = pingSearchEngineJob.execute(); // Assert assertEquals("Status of test-cluster is changed to GREEN.", result); } // Test normal operation with YELLOW status and no state change public void test_execute_yellowStatusNoChange() { // Setup mock components SearchEngineClient searchEngineClient = new SearchEngineClient() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
refreshIfEmpty(); boolean changed = delegate.remove(o); if (changed) { totalSize--; removeIfEmpty(); } return changed; } @Override public boolean removeAll(Collection<?> c) { if (c.isEmpty()) { return false; } int oldSize = size(); // calls refreshIfEmpty boolean changed = delegate.removeAll(c); if (changed) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 12 15:51:57 UTC 2025 - 48.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.29.md
- [Changes by Kind](#changes-by-kind-2) - [API Change](#api-change) - [Feature](#feature-1) - [Bug or Regression](#bug-or-regression) - [Dependencies](#dependencies-2) - [Added](#added-2) - [Changed](#changed-2) - [Removed](#removed-2) - [v1.29.12](#v12912) - [Downloads for v1.29.12](#downloads-for-v12912)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Mar 12 00:36:01 UTC 2025 - 429.6K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
public void test_changePassword_success() { // Test successful password change when LDAP admin sync is disabled testLdapManager.changePasswordResult = true; testFessConfig.ldapAdminSyncPassword = false; boolean result = ldapChain.changePassword("testuser", "newpassword"); assertFalse(result); // returns !changed || syncPassword = !true || false = false
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessEventType.java
/** * Enumeration of SMB Witness Event Types as defined in MS-SWN specification. * These events represent different types of cluster state changes that clients * can be notified about. */ public enum WitnessEventType { /** * Resource state changed - general resource state modification */ RESOURCE_CHANGE(1), /** * Client should move to different node - directed failover */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 2.5K bytes - Viewed (0) -
doc/godebug.md
the Go 1.23 behavior. ### Go 1.23 Go 1.23 changed the channels created by package time to be unbuffered (synchronous), which makes correct use of the [`Timer.Stop`](/pkg/time/#Timer.Stop) and [`Timer.Reset`](/pkg/time/#Timer.Reset) method results much easier. The [`asynctimerchan` setting](/pkg/time/#NewTimer) disables this change. There are no runtime metrics for this change,
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jul 08 18:30:38 UTC 2025 - 22.9K bytes - Viewed (0) -
okhttp-osgi-tests/build.gradle.kts
- The compressed index.xml file contains a timestamp property which changes with every test execution, such that running the test actually changes the test classpath itself. This means that it can"t benefit from incremental build acceleration, because on every execution it sees that the classpath has changed, and so to be safe, it needs to re-run.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:17:18 UTC 2025 - 2.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- [Container Images](#container-images-5) - [Changelog since v1.32.2](#changelog-since-v1322) - [Changes by Kind](#changes-by-kind-5) - [API Change](#api-change) - [Bug or Regression](#bug-or-regression-5) - [Dependencies](#dependencies-5) - [Added](#added-5) - [Changed](#changed-5) - [Removed](#removed-5) - [v1.32.2](#v1322) - [Downloads for v1.32.2](#downloads-for-v1322)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.31.md
- [Changes by Kind](#changes-by-kind-7) - [API Change](#api-change) - [Feature](#feature-4) - [Bug or Regression](#bug-or-regression-7) - [Dependencies](#dependencies-7) - [Added](#added-7) - [Changed](#changed-7) - [Removed](#removed-7) - [v1.31.4](#v1314) - [Downloads for v1.31.4](#downloads-for-v1314)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:49:57 UTC 2025 - 429.6K bytes - Viewed (0) -
tests/submodel_test.go
import ( "testing" "gorm.io/gorm" ) type Man struct { ID int Age int Name string Detail string } // Panic-safe BeforeUpdate hook that checks for Changed("age") func (m *Man) BeforeUpdate(tx *gorm.DB) (err error) { if !tx.Statement.Changed("age") { return nil } return nil } func TestSubModel(t *testing.T) { man := Man{Age: 18, Name: "random-name"} if err := DB.Create(&man).Error; err != nil {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Aug 20 04:51:17 UTC 2025 - 944 bytes - Viewed (0)