Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 132 for Option (0.49 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        @Override
        public void beforeExecute(Action<? super GradleExecuter> action) {
            beforeExecute.add(action);
        }
    
        @Override
        public void beforeExecute(@DelegatesTo(GradleExecuter.class) Closure action) {
            beforeExecute.add(new ClosureBackedAction<>(action));
        }
    
        @Override
        public void afterExecute(Action<? super GradleExecuter> action) {
            afterExecute = afterExecute.add(action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		t.Fatalf("failed to list objects: %v", err)
    	}
    
    	options.ResourceVersion = result3.ResourceVersion
    	options.ResourceVersionMatch = metav1.ResourceVersionMatchExact
    
    	result4 := example.PodList{}
    	if err := store.GetList(ctx, "/pods", options, &result4); err != nil {
    		t.Fatalf("failed to list objects: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
Back to top