Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 662 for actioned (0.19 sec)

  1. pkg/apis/authorization/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: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    var map_SelfSubjectRulesReview = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    var map_SelfSubjectRulesReview = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    func logDryRunAction(action core.Action, w io.Writer, marshalFunc MarshalFunc) {
    
    	group := action.GetResource().Group
    	if len(group) == 0 {
    		group = "core"
    	}
    	fmt.Fprintf(w, "[dryrun] Would perform action %s on resource %q in API group \"%s/%s\"\n", strings.ToUpper(action.GetVerb()), action.GetResource().Resource, group, action.GetResource().Version)
    
    	namedAction, ok := action.(actionWithName)
    	if ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top