Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 662 for actioned (0.15 sec)

  1. pkg/controller/serviceaccount/tokens_controller_test.go

    			}
    
    			actions := client.Actions()
    			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
    				}
    
    				expectedAction := tc.ExpectedActions[i]
    				if !reflect.DeepEqual(expectedAction, action) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainer.java

            return registerResolvableConfiguration(name, Actions.doNothing());
        }
    
        @Override
        public NamedDomainObjectProvider<ResolvableConfiguration> resolvable(String name, Action<? super ResolvableConfiguration> action) {
            assertMutable("resolvableUnlocked(String, Action)");
            return registerResolvableConfiguration(name, action);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller_test.go

    	ret := map[string]*corev1.ConfigMap{}
    	created := false
    
    	for _, action := range client.Actions() {
    		t.Log(dump.Pretty(action))
    		if action.Matches("create", "configmaps") {
    			created = true
    			obj := action.(clienttesting.CreateAction).GetObject().(*corev1.ConfigMap)
    			ret[obj.Name] = obj
    		}
    		if action.Matches("update", "configmaps") {
    			obj := action.(clienttesting.UpdateAction).GetObject().(*corev1.ConfigMap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

        private InputChangesAwareTaskAction wrap(final Action<? super Task> action) {
            return wrap(action, "unnamed action");
        }
    
        private InputChangesAwareTaskAction wrap(final Action<? super Task> action, String actionName) {
            if (action instanceof InputChangesAwareTaskAction) {
                return (InputChangesAwareTaskAction) action;
            }
            if (action instanceof ConfigureUtil.WrappedConfigureAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionsSpec.groovy

            def copy = substitutions.copy()
    
            when:
            copy.all(Mock(Action))
    
            then:
            0 * validator.validateMutation(_)
        }
    
        def "registering an all rule toggles the hasRule flag"() {
            given:
            def action = Mock(Action)
    
            when:
            substitutions.all(action)
    
            then:
            substitutions.rulesMayAddProjectDependency()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K 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. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmTestSuite.java

            JvmTestToolchain<T> toolchain = toolchainFactory.getOrCreate(toolchainType);
            getTestToolchain().set(toolchain);
            action.execute(toolchain.getParameters());
        }
    
        @Override
        public void dependencies(Action<? super JvmComponentDependencies> action) {
            action.execute(getDependencies());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top