- Sort Score
- Result 10 results
- Languages All
Results 511 - 520 of 633 for Initialize (0.07 sec)
-
cmd/bucket-lifecycle.go
// newTransitionState returns a transitionState object ready to be initialized // via its Init method. func newTransitionState(ctx context.Context) *transitionState { return &transitionState{ transitionCh: make(chan transitionTask, 100000), ctx: ctx, killCh: make(chan struct{}), lastDayStats: make(map[string]*lastDayTierStats), } } // Init initializes t with given objAPI and instantiates the configured number
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 33.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java
public String createdTime; /** Search/filter parameter for duplicate host version number. */ public String versionNo; /** * Creates a new DuplicateHostPager with default values. * Initializes pagination settings and clears all search parameters. */ public DuplicateHostPager() { // Default constructor with explicit documentation } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
cmd/metrics-realtime.go
} else { m.Aggregated.CPU.LoadStat = loadStat } } if types.Contains(madmin.MetricsRPC) { gr := globalGrid.Load() if gr == nil { m.Errors = append(m.Errors, fmt.Sprintf("%s: Grid not initialized", byHostName)) } else { stats := gr.ConnStats() m.Aggregated.RPC = &stats } } // Add types... // ByHost is a shallow reference, so careful about sharing.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Jun 01 05:16:24 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/DataStoreParams.java
* Uses ParamMap for automatic case format conversion between camelCase and snake_case. */ protected final Map<String, Object> params; /** * Creates a new empty DataStoreParams instance. * Initializes the internal parameter map with a ParamMap wrapper. */ public DataStoreParams() { params = new ParamMap<>(new HashMap<>()); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
/** Group name for search filtering. */ public String name; /** Version number for optimistic locking. */ public String versionNo; /** * Default constructor for GroupPager. * Initializes the pager with default values for pagination settings. */ public GroupPager() { // Default constructor } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
* Used to retrieve paging and other configuration parameters. */ @Resource protected FessConfig fessConfig; /** * Creates a new instance of DuplicateHostService. * This constructor initializes the service for managing duplicate host configuration operations * including CRUD operations and search functionality. */ public DuplicateHostService() { super(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java
public static void shutdownAll() { throw new RuntimeException("Simulated exception during shutdown"); } } // Test to verify the logger field is properly initialized public void test_loggerFieldInitialization() throws Exception { // Use reflection to access the private logger field Field loggerField = FessCurtainFinallyHook.class.getDeclaredField("logger");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java
} }; // Should not throw exception invokerAssistant.toBeDisposable(process); } // Test static constants are properly initialized public void test_staticConstants() { // Test DEFAULT_CLIENT_INVOKE_NAMES String[] clientNames = ImplementedInvokerAssistant.DEFAULT_CLIENT_INVOKE_NAMES; assertNotNull(clientNames);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java
} @Test @DisplayName("getOffset before any read - should return zero") void testOffsetInitiallyZero() { assertEquals(0L, response.getOffset(), "Offset should be initialized to 0"); } /* ------------------------------------------------------------------ */ /* 2. Parameter word reading - happy path & edge cases */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
cmd/consolelogger.go
} } // IsOnline always true in case of console logger func (sys *HTTPConsoleLoggerSys) IsOnline(_ context.Context) bool { return true } // SetNodeName - sets the node name if any after distributed setup has initialized func (sys *HTTPConsoleLoggerSys) SetNodeName(nodeName string) { if !globalIsDistErasure { sys.nodeName = "" return } host, err := xnet.ParseHost(globalLocalNodeName) if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.4K bytes - Viewed (0)