Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 534 for actioned (0.13 sec)

  1. 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)
  2. pkg/controller/deployment/rolling_test.go

    			if scaled || len(fake.Actions()) > 0 {
    				t.Errorf("unexpected scaling: %v", fake.Actions())
    			}
    			continue
    		}
    		if test.scaleExpected && !scaled {
    			t.Errorf("expected scaling to occur")
    			continue
    		}
    		if len(fake.Actions()) != 1 {
    			t.Errorf("expected 1 action during scale, got: %v", fake.Actions())
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. 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)
  4. security/pkg/k8s/configutil_test.go

    					t.Errorf("expecting error %s but got no error; actions: %+v", tc.expectedErr, fake.Actions())
    				} else if err := checkActions(fake.Actions(), tc.expectedActions); err != nil {
    					t.Error(err)
    				}
    			}
    		})
    	}
    }
    
    func createConfigMapDisabledClient(client *fake.Clientset) {
    	client.PrependReactor("get", "configmaps", func(action ktesting.Action) (bool, runtime.Object, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K 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/v1beta1/types.go

    // 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: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top