Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 232 for Option (0.33 sec)

  1. 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)
  2. cmd/kube-controller-manager/app/options/options_test.go

    	cpoptions "k8s.io/cloud-provider/options"
    	componentbaseconfig "k8s.io/component-base/config"
    	"k8s.io/component-base/logs"
    	"k8s.io/component-base/metrics"
    	cmconfig "k8s.io/controller-manager/config"
    	cmoptions "k8s.io/controller-manager/options"
    	migration "k8s.io/controller-manager/pkg/leadermigration/options"
    	netutils "k8s.io/utils/net"
    
    	clientgofeaturegate "k8s.io/client-go/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    	case 303:
    		action.Redirect.ResponseCode = route.RedirectAction_SEE_OTHER
    	case 307:
    		action.Redirect.ResponseCode = route.RedirectAction_TEMPORARY_REDIRECT
    	case 308:
    		action.Redirect.ResponseCode = route.RedirectAction_PERMANENT_REDIRECT
    	default:
    		log.Warnf("Redirect Code %d is not yet supported", redirect.RedirectCode)
    		action = nil
    	}
    
    	out.Action = action
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                    },
                                    "exact_match_map": {
                                      "map": {
                                        "80": {
                                          "action": {
                                            "name": "inbound-vip|80||sleep.default.svc.cluster.local-http",
                                            "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/testdata/configdump.json

                                    },
                                    "exact_match_map": {
                                      "map": {
                                        "80": {
                                          "action": {
                                            "name": "inbound-vip|80||sleep.default.svc.cluster.local-http",
                                            "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            @Override
            public void beforeResolve(Action<? super ResolvableDependencies> action) {
                dependencyResolutionListeners.add("beforeResolve", userCodeApplicationContext.reapplyCurrentLater(action));
            }
    
            @Override
            public void beforeResolve(Closure action) {
                beforeResolve(ConfigureUtil.configureUsing(action));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  7. pkg/kubelet/status/status_manager_test.go

    		case core.UpdateAction:
    			assert.Equal(t, pod.Name, action.GetObject().(*v1.Pod).Name, "Unexpected UpdateAction: %+v", action)
    		default:
    			assert.Fail(t, "Unexpected Action: %+v", action)
    		}
    		return true, ret, err
    	})
    
    	pod.Status.ContainerStatuses = []v1.ContainerStatus{{State: v1.ContainerState{Running: &v1.ContainerStateRunning{}}}}
    
    	t.Logf("Pod not found.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/controller/endpointslice/endpointslice_controller_test.go

    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())
    	}
    
    	if action.GetResource().Resource != resource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top