Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 135 for action1 (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		actions = appendIf(actions, action{"GET", itemPath, nameParams, namer, false}, isGetter)
    		if getSubpath {
    			actions = appendIf(actions, action{"GET", itemPath + "/{path:*}", proxyParams, namer, false}, isGetter)
    		}
    		actions = appendIf(actions, action{"PUT", itemPath, nameParams, namer, false}, isUpdater)
    		actions = appendIf(actions, action{"PATCH", itemPath, nameParams, namer, false}, isPatcher)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    			// consumed by a pseudo-action (writeCoverMetaAct) that
    			// adds it to a summary file, then this summary file is
    			// consumed by the various "run test" actions. Below we
    			// add a dependence edge between the build action and the
    			// "write meta files" pseudo-action, and then another dep
    			// from writeCoverMetaAct to the run action. See the
    			// comment in runTest() at the definition of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller_test.go

    	return service
    }
    
    func expectAction(t *testing.T, actions []k8stesting.Action, index int, verb, resource string) {
    	t.Helper()
    	if len(actions) <= index {
    		t.Fatalf("Expected at least %d actions, got %d", index+1, len(actions))
    	}
    
    	action := actions[index]
    	if action.GetVerb() != verb {
    		t.Errorf("Expected action %d verb to be %s, got %s", index, verb, action.GetVerb())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  4. plugin/pkg/admission/resourcequota/admission_test.go

    	}
    	if len(kubeClient.Actions()) == 0 {
    		t.Errorf("Expected a client action")
    	}
    
    	expectedActionSet := sets.NewString(
    		strings.Join([]string{"update", "resourcequotas", "status"}, "-"),
    	)
    	actionSet := sets.NewString()
    	for _, action := range kubeClient.Actions() {
    		actionSet.Insert(strings.Join([]string{action.GetVerb(), action.GetResource().Resource, action.GetSubresource()}, "-"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

                    "configureEach(Action)": { container.configureEach(Actions.doNothing()) }
                ]
            }
    
            return methods + [
                "whenObjectAdded(Action)": { container.whenObjectAdded(Actions.doNothing()) },
                "withType(Class, Action)": { container.withType(type, Actions.doNothing()) },
                "all(Action)": { container.all(Actions.doNothing()) },
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager_test.go

    func verifyActions(t *testing.T, manager *manager, expectedActions []core.Action) {
    	t.Helper()
    	manager.consumeUpdates()
    	actions := manager.kubeClient.(*fake.Clientset).Actions()
    	defer manager.kubeClient.(*fake.Clientset).ClearActions()
    	if len(actions) != len(expectedActions) {
    		t.Fatalf("unexpected actions: %s", cmp.Diff(expectedActions, actions))
    	}
    	for i := 0; i < len(actions); i++ {
    		e := expectedActions[i]
    		a := actions[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            def action = Mock(Action)
    
            given:
            registry
                .register("foo") { it.unmanaged(new Bean(), action) }
                .configure(ModelActionRole.Defaults) { it.path("foo").type(Bean).action(action) }
                .configure(ModelActionRole.Initialize) { it.path("foo").type(Bean).action(action) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public void allprojects(Action<? super Project> action) {
            allprojects(this, action);
        }
    
        @Override
        public void allprojects(ProjectInternal referrer, Action<? super Project> action) {
            getProjectConfigurator().allprojects(getCrossProjectModelAccess().getAllprojects(referrer, this), action);
        }
    
        @Override
        public Set<Project> getSubprojects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @param action the action to execute.
         */
        void beforeEvaluate(Action<? super Project> action);
    
        /**
         * <p>Adds an action to call immediately after this project is evaluated.</p>
         * <p>Passes the project to the
         * action as a parameter. Actions passed to this method execute in the same order they were passed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            0 * resolver._
        }
    
        def "notifies beforeResolve action on incoming dependencies set when dependencies are resolved"() {
            Action<ResolvableDependencies> action = Mock()
            def config = conf("conf")
    
            given:
            config.incoming.beforeResolve(action)
    
            when:
            config.files
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top