Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 374 for actioned (0.14 sec)

  1. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractBehavior.java

    import org.dbflute.util.DfTypeUtil;
    import org.opensearch.action.DocWriteResponse.Result;
    import org.opensearch.action.admin.indices.refresh.RefreshResponse;
    import org.opensearch.action.bulk.BulkItemResponse;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.delete.DeleteResponse;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractBehavior.java

    import org.dbflute.util.DfTypeUtil;
    import org.opensearch.action.DocWriteResponse.Result;
    import org.opensearch.action.admin.indices.refresh.RefreshResponse;
    import org.opensearch.action.bulk.BulkItemResponse;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.delete.DeleteResponse;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. pkg/controller/deployment/deployment_controller_test.go

    			continue
    		}
    	}
    
    	if len(f.actions) > len(actions) {
    		f.t.Errorf("%d additional expected actions:%+v", len(f.actions)-len(actions), f.actions[len(actions):])
    	}
    }
    
    func filterInformerActions(actions []core.Action) []core.Action {
    	ret := []core.Action{}
    	for _, action := range actions {
    		if len(action.GetNamespace()) == 0 &&
    			(action.Matches("list", "pods") ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle.go

    	// ActionCount must be the last action and shouldn't be used as a regular action.
    	ActionCount
    )
    
    // DeleteRestored - Returns true if action demands delete on restored objects
    func (a Action) DeleteRestored() bool {
    	return a == DeleteRestoredAction || a == DeleteRestoredVersionAction
    }
    
    // DeleteVersioned - Returns true if action demands delete on a versioned object
    func (a Action) DeleteVersioned() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

            Iterator<InputChangesAwareTaskAction> actions = new ArrayList<>(task.getTaskActions()).iterator();
            while (actions.hasNext()) {
                InputChangesAwareTaskAction action = actions.next();
                task.getState().setDidWork(true);
                task.getStandardOutputCapture().start();
                boolean hasMoreWork = hasTaskListener || actions.hasNext();
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

                        }
                        Object action = actualArgs.get(Task.TASK_ACTION);
                        if (action instanceof Action) {
                            Action<? super Task> taskAction = Cast.uncheckedCast(action);
                            task.doFirst(taskAction);
                        } else if (action != null) {
                            Closure<?> closure = (Closure<?>) action;
                            task.doFirst(closure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DefaultWorkerExecutor.java

            return noIsolation(Actions.doNothing());
        }
    
        @Override
        public WorkQueue classLoaderIsolation() {
            return classLoaderIsolation(Actions.doNothing());
        }
    
        @Override
        public WorkQueue processIsolation() {
            return processIsolation(Actions.doNothing());
        }
    
        @Override
        public WorkQueue noIsolation(Action<? super WorkerSpec> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace.
    // The returned list of actions may be incomplete depending on the server's authorization mode,
    // and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

    import org.codelibs.fess.thumbnail.ThumbnailManager;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.DocList;
    import org.codelibs.fess.util.MemoryUtil;
    import org.opensearch.action.admin.indices.refresh.RefreshResponse;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    public class IndexingHelper {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

    import org.codelibs.fess.suggest.settings.SuggestSettings;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    import org.opensearch.action.delete.DeleteRequest;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.client.Client;
    import org.opensearch.common.xcontent.json.JsonXContent;
    import org.opensearch.core.action.ActionListener;
    import org.opensearch.core.xcontent.XContentBuilder;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top