- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for orchestrated (0.09 sec)
-
cmd/endpoint.go
// If not orchestrated // and not setup in reverse proxy if !orchestrated && !reverseProxy { // Check whether same path is not used in endpoints of a host on different port. // Only verify this on baremetal setups, DNS is not available in orchestrated // environments so we can't do much here. pathIPMap := make(map[string]set.StringSet)Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 34.5K bytes - Viewed (0) -
cmd/common-main.go
"golang.org/x/term" ) // serverDebugLog will enable debug printing var ( serverDebugLog = env.Get("_MINIO_SERVER_DEBUG", config.EnableOff) == config.EnableOn currentReleaseTime time.Time orchestrated = IsKubernetes() || IsDocker() ) func init() { if !term.IsTerminal(int(os.Stdout.Fd())) || !term.IsTerminal(int(os.Stderr.Fd())) { color.TurnOff() }
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 32.5K bytes - Viewed (3) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestratorTest.java
@DisplayName("StrategyOrchestrator") class StrategyOrchestratorTest { private StrategyOrchestrator orchestrator; private List<UpgradeStrategy> mockStrategies; @BeforeEach void setUp() { mockStrategies = List.of(mock(UpgradeStrategy.class), mock(UpgradeStrategy.class), mock(UpgradeStrategy.class)); orchestrator = new StrategyOrchestrator(mockStrategies); } private UpgradeContext createMockContext() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 12.3K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/UpgradeWorkflowIntegrationTest.java
new PluginUpgradeStrategy(), new InferenceStrategy()); StrategyOrchestrator orchestrator = new StrategyOrchestrator(strategies); applyGoal = new Apply(orchestrator); checkGoal = new Check(orchestrator); } @Nested @DisplayName("Model Version Upgrade") class ModelVersionUpgradeTests { @Test
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 9.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java
* </ul> */ public abstract class AbstractUpgradeGoal implements Goal { private final StrategyOrchestrator orchestrator; @Inject public AbstractUpgradeGoal(StrategyOrchestrator orchestrator) { this.orchestrator = orchestrator; } /** * Executes the upgrade goal. * Template method that calls doUpgrade and optionally saves modifications. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 12.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestrator.java
import org.apache.maven.api.di.Inject; import org.apache.maven.api.di.Named; import org.apache.maven.api.di.Singleton; import org.apache.maven.cling.invoker.mvnup.UpgradeContext; /** * domtrip-based orchestrator for executing different upgrade strategies. * * <p>This class provides the same functionality as StrategyOrchestrator but works * with domtrip-based strategies for superior formatting preservation. *
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 7K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoalTest.java
*/ private static class TestableAbstractUpgradeGoal extends AbstractUpgradeGoal { TestableAbstractUpgradeGoal(StrategyOrchestrator orchestrator) { super(orchestrator); } @Override protected boolean shouldSaveModifications() { return true; // Enable actual file operations for tests }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 13.7K bytes - Viewed (0) -
CLAUDE.md
**Fault Tolerance**: - `FaultTolerantClient` wrapper (retry, circuit breaker) - Graceful degradation (e.g., robots.txt parsing continues on errors) --- ## Key Components ### Crawler (`Crawler.java`) Main orchestrator for crawling operations. **Key Methods**: ```java String execute() // Start crawling, return session ID void addUrl(String url) // Add URL to queue
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
README.md
├── fess-crawler-lasta/ # LastaFlute DI integration └── fess-crawler-opensearch/ # OpenSearch backend ``` ### Key Components #### Core Engine - **Crawler**: Main orchestrator managing crawl execution - **CrawlerContext**: Execution context and configuration - **CrawlerThread**: Individual crawler thread implementation #### Client Architecture
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 15.3K bytes - Viewed (0) -
cmd/erasure-server-pool.go
// Health - returns current status of the object layer health, // provides if write access exists across sets, additionally // can be used to query scenarios if health may be lost // if this node is taken down by an external orchestrator. func (z *erasureServerPools) Health(ctx context.Context, opts HealthOptions) HealthResult { reqInfo := (&logger.ReqInfo{}).AppendTags("maintenance", strconv.FormatBool(opts.Maintenance)) type setInfo struct {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 89.2K bytes - Viewed (0)