Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,454 for actioned (0.1 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonCommandExecution.java

     * <p>
     * The given actions will be executed in the order given to the constructor, and should use the {@link #proceed()} method to allow
     * the next action to run. If an action does not call {@code proceed()}, it will be the last action that executes.
     */
    public class DaemonCommandExecution {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/test/groovy/org/gradle/process/internal/worker/child/SerializableMockHelper.groovy

         */
        def <T> Action<T> serializable(Action<T> action, ClassLoader target) {
            String src = """
    class TestAction implements ${Action.class.name}, ${Serializable.class.name}
    {
        Object key
    
        void execute(Object target) {
            def action = ${SerializableMockHelper.class.name}.ACTIONS.remove(key)
            action.execute(target)
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. pkg/controller/servicecidrs/servicecidrs_controller_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: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/DefaultCommandLineToolConfiguration.java

        }
    
        public ToolType getToolType() {
            return toolType;
        }
    
        @Override
        public void withArguments(Action<? super List<String>>  action) {
            argActions.add(action);
        }
    
        @Override
        public Action<List<String>> getArgAction() {
            return Actions.composite(argActions);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top