Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,454 for actioned (0.98 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. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/DefaultVisualStudioSolution.java

                this.location = location;
            }
    
            @Override
            public void withContent(Action<? super TextProvider> action) {
                actions.add(action);
            }
    
            @Nested
            public List<Action<? super TextProvider>> getTextActions() {
                return actions;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. 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)
  4. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         * @param action The action to execute for each element when finalized.
         */
        <S> void whenElementFinalized(Class<S> type, Action<? super S> action);
    
        /**
         * Registers an action to execute to configure each element in the collection. The action is only executed for those elements that are required. Fails if any element has already been finalized.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. 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)
  6. platforms/native/language-native/src/main/java/org/gradle/language/internal/DefaultBinaryCollection.java

            private final Class<S> type;
            private final Action<? super S> action;
    
            TypeFilteringAction(Class<S> type, Action<? super S> action) {
                this.type = type;
                this.action = action;
            }
    
            @Override
            public void execute(T t) {
                if (type.isInstance(t)) {
                    action.execute(type.cast(t));
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifestMergeSpec.java

            }
    
            for (DefaultManifestMergeDetails mergeDetails : mergeDetailsSet) {
                for (Action<? super ManifestMergeDetails> action : actions) {
                    action.execute(mergeDetails);
                }
                addMergeDetailToManifest(section, mergedManifest, mergeDetails);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. .github/workflows/ci.yml

        branches:
          - master
      pull_request:
        branches:
          - master
    
    permissions:
      contents: read
    
    jobs:
      test:
        permissions:
          actions: write  # for styfle/cancel-workflow-action to cancel/stop running workflows
          contents: read  # for actions/checkout to fetch code
        name: "${{ matrix.root-pom }} on JDK ${{ matrix.java }} on ${{ matrix.os }}"
        strategy:
          matrix:
            os: [ ubuntu-latest ]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/UnparameterizedBuildController.java

        }
    
        @Override
        public <T> List<T> run(Collection<? extends BuildAction<? extends T>> actions) {
            List<T> results = new ArrayList<T>(actions.size());
            List<Throwable> failures = new ArrayList<Throwable>();
            for (BuildAction<? extends T> action : actions) {
                try {
                    T result = action.execute(this);
                    results.add(result);
                } catch (Throwable t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/action/InstantiatingAction.java

     * limitations under the License.
     */
    
    package org.gradle.internal.action;
    
    import org.gradle.api.Action;
    import org.gradle.api.internal.ReusableAction;
    import org.gradle.internal.Actions;
    import org.gradle.internal.reflect.Instantiator;
    
    import java.util.List;
    
    public class InstantiatingAction<DETAILS> implements Action<DETAILS> {
        private final ConfigurableRules<DETAILS> rules;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 07 16:57:42 UTC 2018
    - 3K bytes
    - Viewed (0)
Back to top