Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,786 for actioned (0.14 sec)

  1. 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)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/internal/cache/cache.go

    	"strconv"
    	"strings"
    	"time"
    
    	"cmd/go/internal/lockedfile"
    	"cmd/go/internal/mmap"
    )
    
    // An ActionID is a cache action key, the hash of a complete description of a
    // repeatable computation (command line, environment variables,
    // input file contents, executable contents).
    type ActionID [HashSize]byte
    
    // An OutputID is a cache output key, the hash of an output of a computation.
    type OutputID [HashSize]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinkerTest.groovy

            linker.execute(spec)
    
            then:
            1 * operationLogger.getLogLocation() >> LOG_LOCATION
            1 * buildOperationExecutor.runAll(commandLineTool, _) >> { worker, action -> action.execute(queue) }
            1 * invocationContext.getArgAction() >> Actions.doNothing()
            1 * invocationContext.createInvocation("linking lib", outputFile.parentFile, expectedArgs, operationLogger) >> invocation
            1 * queue.add(invocation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

                        actions.add(action);
                        if (!(action instanceof ContinuingAction)) {
                            break;
                        }
                    }
                }
    
                if (!actions.isEmpty()) {
                    return Actions.composite(actions);
                }
    
                throw new UnsupportedOperationException("No action factory for specified command-line arguments.");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/invocation/GradleLifecycle.java

        /**
         * Adds an {@link IsolatedAction isolated action} to be called immediately after a project is evaluated.
         *
         * @param action The action to execute.
         * @see IsolatedAction for the requirements to isolated actions
         * @since 8.8
         */
        @Incubating
        void afterProject(IsolatedAction<? super Project> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 21:28:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top