Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,140 for action1 (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultMinimalDependencyVariant.java

            attributesMutator = GUtil.elvis(attributesMutator, Actions.doNothing());
            capabilitiesMutator = GUtil.elvis(capabilitiesMutator, Actions.doNothing());
    
            if (delegate instanceof DefaultMinimalDependencyVariant) {
                this.attributesMutator = Actions.composite(((DefaultMinimalDependencyVariant) delegate).attributesMutator, attributesMutator);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultMavenRepositoryContentDescriptor.java

                            details.notFound();
                        }
                    }
                };
                if (filter == Actions.doNothing()) {
                    return action;
                }
                return Actions.composite(filter, action);
            }
            return filter;
        }
    
        @Override
        public RepositoryContentDescriptorInternal asMutableCopy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/BiActions.java

            return new BiAction<A, B>() {
                @Override
                public void execute(A a, B b) {
                    for (BiAction<? super A, ? super B> action : actions) {
                        action.execute(a, b);
                    }
                }
            };
        }
    
        public static <A> BiAction<A, Object> usingFirstArgument(final Action<? super A> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. pkg/controller/bootstrap/bootstrapsigner_test.go

    }
    
    func TestNoConfigMap(t *testing.T) {
    	signer, cl, _, _, err := newSigner()
    	if err != nil {
    		t.Fatalf("error creating Signer: %v", err)
    	}
    	signer.signConfigMap(context.TODO())
    	verifyActions(t, []core.Action{}, cl.Actions())
    }
    
    func TestSimpleSign(t *testing.T) {
    	signer, cl, secrets, configMaps, err := newSigner()
    	if err != nil {
    		t.Fatalf("error creating Signer: %v", err)
    	}
    
    	cm := newConfigMap("", "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationExecutor.java

         *
         * @see BuildOperationExecutor#runAllWithAccessToProjectState(Action)
         */
        <O extends RunnableBuildOperation> void runAll(Action<BuildOperationQueue<O>> schedulingAction, BuildOperationConstraint buildOperationConstraint);
    
        /**
         * Same as {@link #runAll(Action)}. However, the actions are allowed to access mutable project state. In general, this is more likely to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller_test.go

    				}
    				if expectedActions == 2 {
    					action := fakeClient.Actions()[1]
    					if !action.Matches("update", "clusterroles") {
    						t.Fatalf("unexpected action %#v", action)
    					}
    					updateAction, ok := action.(clienttesting.UpdateAction)
    					if !ok {
    						t.Fatalf("unexpected action %#v", action)
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/PropertiesTransformer.java

        private final MutableActionSet<Properties> actions = new MutableActionSet<Properties>();
    
        /**
         * Adds an action to be executed when properties are transformed.
         * @param action the action to add
         */
        public void addAction(Action<? super Properties> action) {
            actions.add(action);
        }
    
        /**
         * Transforms a properties object.  This will modify the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/configuration/project/ProjectConfigurationActionContainer.java

         */
        void add(Action<? super ProjectInternal> action);
    
        /**
         * Registers an action to execute to configure the project. Actions are executed in an arbitrary order.
         */
        void add(@DelegatesTo(ProjectInternal.class) Closure action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    }
    
    func expectAction(t *testing.T, actions []k8stesting.Action, expected [][]string) {
    	t.Helper()
    	if len(actions) != len(expected) {
    		t.Fatalf("Expected at least %d actions, got %d \ndiff: %v", len(expected), len(actions), cmp.Diff(expected, actions))
    	}
    
    	for i, action := range actions {
    		verb := expected[i][0]
    		if action.GetVerb() != verb {
    			t.Errorf("Expected action %d verb to be %s, got %s", i, verb, action.GetVerb())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    			cleaner.evaluateSATokens(ctx)
    
    			actions := client.Actions()
    			if len(actions) != len(tc.ExpectedActions) {
    				t.Fatalf("got %d actions, wanted %d actions", len(actions), len(tc.ExpectedActions))
    			}
    			for i, action := range actions {
    				if len(tc.ExpectedActions) < i+1 {
    					t.Errorf("%s: %d unexpected actions: %+v", k, len(actions)-len(tc.ExpectedActions), actions[i:])
    					break
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top