Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 699 for ACTION (0.04 sec)

  1. internal/bucket/lifecycle/evaluator.go

    			// Defensive code, should never happen
    			if obj.VersionID == "" {
    				event.Action = NoneAction
    			}
    			if e.IsObjectLocked(obj) {
    				event = Event{}
    			}
    
    			if e.IsPendingReplication(obj) {
    				event = Event{}
    			}
    		}
    		if !obj.IsLatest {
    			switch event.Action {
    			case DeleteVersionAction:
    				// this noncurrent version will be expired, nothing to add
    			default:
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Apr 08 15:41:24 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/normalizer/AnalyzerNormalizer.java

    import java.util.List;
    
    import org.codelibs.fess.suggest.settings.AnalyzerSettings;
    import org.codelibs.fess.suggest.settings.SuggestSettings;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
    import org.opensearch.transport.client.Client;
    
    /**
     * AnalyzerNormalizer is a class that implements the Normalizer interface.
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:23:01 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/UpgradeContextTest.java

            context.success("Test success message");
            context.failure("Test failure message");
            context.warning("Test warning message");
            context.detail("Test detail message");
            context.action("Test action message");
        }
    
        @Test
        @DisplayName("should handle indentation correctly")
        void shouldHandleIndentationCorrectly() {
            UpgradeContext context = TestUtils.createMockContext(Paths.get("/test"));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Jul 15 09:35:08 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeContext.java

            logger.info(getCurrentIndent() + ConsoleIcon.DETAIL.getIcon(terminal) + " " + message);
        }
    
        /**
         * Logs a performed action with an arrow icon.
         */
        public void action(String message) {
            logger.info(getCurrentIndent() + ConsoleIcon.ACTION.getIcon(terminal) + " " + message);
        }
    
        /**
         * Gets the UpgradeOptions from the invoker request.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

         *
         * @param runtime the action runtime
         */
        @Override
        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
            runtime.registerData("helpLink", systemHelper.getHelpLink(fessConfig.getOnlineHelpNameJoblog()));
        }
    
        /**
         * Returns the action role for this admin action.
         *
         * @return the role name
         */
        @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  6. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/ConsoleIconTest.java

            assertEquals("⚠", ConsoleIcon.WARNING.getIcon(mockTerminal));
            assertEquals("•", ConsoleIcon.DETAIL.getIcon(mockTerminal));
            assertEquals("→", ConsoleIcon.ACTION.getIcon(mockTerminal));
        }
    
        @Test
        @DisplayName("should return ASCII fallback when terminal uses US-ASCII")
        void shouldReturnAsciiFallbackWhenTerminalUsesAscii() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Jul 15 09:35:08 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  7. docs/sts/custom-token-identity.md

    | Parameter       | Type    | Required |                                                                      |
    |-----------------|---------|----------|----------------------------------------------------------------------|
    | Action          | String  | Yes      | Value must be `AssumeRoleWithCustomToken`                         |
    | Version         | String  | Yes      | Value must be `2011-06-15`                                           |
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/lifecycle_test.go

    	evt := evts[0]
    	if evt.Action != TransitionAction {
    		t.Fatalf("Expected action: %s but got %s", TransitionAction, evt.Action)
    	}
    	if evt.StorageClass != "TIER-1" {
    		t.Fatalf("Expected TIER-1 but got %s", evt.StorageClass)
    	}
    
    	evt = evts[1]
    	if evt.Action != TransitionVersionAction {
    		t.Fatalf("Expected action: %s but got %s", TransitionVersionAction, evt.Action)
    	}
    	if evt.StorageClass != "TIER-2" {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 55.5K bytes
    - Viewed (0)
  9. cmd/data-scanner.go

    	}
    
    	switch event.Action {
    	case lifecycle.DeleteAllVersionsAction, lifecycle.DelMarkerDeleteAllVersionsAction:
    		// Skip if bucket has object locking enabled; To prevent the
    		// possibility of violating an object retention on one of the
    		// noncurrent versions of this object.
    		if lr.LockEnabled {
    			return lifecycle.Event{Action: lifecycle.NoneAction}
    		}
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.5K bytes
    - Viewed (0)
  10. cmd/bucket-listobjects-handlers.go

    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    		return
    	}
    	var checkObjMeta metaCheckFn
    	if metadata {
    		checkObjMeta = func(name string, action policy.Action) (s3Err APIErrorCode) {
    			return checkRequestAuthType(ctx, r, action, bucket, name)
    		}
    	}
    	urlValues := r.Form
    
    	// Extract all the listBucketVersions query params to their native values.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 11.6K bytes
    - Viewed (0)
Back to top