Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 350 for invalidating (0.37 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/deepcopy.go

    		in, out := &in.XMapType, &out.XMapType
    		*out = new(string)
    		**out = **in
    	}
    
    	if in.XValidations != nil {
    		inValidations, outValidations := &in.XValidations, &out.XValidations
    		*outValidations = make([]ValidationRule, len(*inValidations))
    		for i := range *inValidations {
    			in.XValidations[i].DeepCopyInto(&out.XValidations[i])
    		}
    	}
    
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    	"k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle"
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    	mutatingwebhook "k8s.io/apiserver/pkg/admission/plugin/webhook/mutating"
    	validatingwebhook "k8s.io/apiserver/pkg/admission/plugin/webhook/validating"
    	apiserverapi "k8s.io/apiserver/pkg/apis/apiserver"
    	apiserverapiv1 "k8s.io/apiserver/pkg/apis/apiserver/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

            buildFile << """
                abstract class InvalidPing extends Ping {
                    @org.gradle.integtests.fixtures.validation.ValidationProblem File invalidInput
                }
                allprojects {
                    tasks.addRule("<>InvalidPing") { String name ->
                        if (name.endsWith("InvalidPing")) {
                            tasks.create(name, InvalidPing)
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. releasenotes/notes/46136.yaml

    kind: feature
    area: istioctl
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
      - https://github.com/istio/istio/issues/46136
      - 46136
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 269 bytes
    - Viewed (0)
  5. cmd/kubeadm/app/preflight/checks.go

    func (ContainerRuntimeCheck) Name() string {
    	return "CRI"
    }
    
    // Check validates the container runtime
    func (crc ContainerRuntimeCheck) Check() (warnings, errorList []error) {
    	klog.V(1).Infoln("validating the container runtime")
    	if err := crc.runtime.IsRunning(); err != nil {
    		errorList = append(errorList, err)
    	}
    	return warnings, errorList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/preflight.go

    }
    
    // checkUnsupportedPlugins checks if there are any plugins included in the current configuration
    // that are unsupported for migration.
    func checkUnsupportedPlugins(client clientset.Interface) error {
    	klog.V(1).Infoln("validating if there are any unsupported CoreDNS plugins in the Corefile")
    	_, corefile, currentInstalledCoreDNSversion, err := dns.GetCoreDNSInfo(client)
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors_test.go

    			if !ok {
    				t.Errorf("expected GetValidatingWebhook to return ok for validating webhook accessor")
    			}
    			if !reflect.DeepEqual(orig, m) {
    				t.Errorf("expected GetValidatingWebhook to return original webhook, diff:\n%s", cmp.Diff(orig, m))
    			}
    			if _, ok := accessor.GetMutatingWebhook(); ok {
    				t.Errorf("expected GetMutatingWebhook to be nil for validating webhook accessor")
    			}
    			copy := &v1.ValidatingWebhook{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/workflow/phase.go

    	RunAllSiblings bool
    
    	// Run defines a function implementing the phase action.
    	// It is recommended to implent type assertion, e.g. using golang type switch,
    	// for validating the RunData type.
    	Run func(data RunData) error
    
    	// RunIf define a function that implements a condition that should be checked
    	// before executing the phase action.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  9. istioctl/pkg/tag/generate.go

    		// to ease complexity when pointing default to revision without per-revision validating webhook,
    		// instead grab the endpoint information from the mutating webhook. This is not strictly correct.
    		validationWhConfig, err := fixWhConfig(client, tagWhConfig)
    		if err != nil {
    			return "", fmt.Errorf("failed to create validating webhook config: %w", err)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/ClassLoaderId.java

     */
    
    package org.gradle.api.internal.initialization.loadercache;
    
    import org.gradle.api.Describable;
    
    /**
     * Opaque identifier of the classloader. Needed for correct behavior of classloader invalidation.
     */
    public interface ClassLoaderId extends Describable {
        @Override
        boolean equals(Object o);
        @Override
        int hashCode();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 953 bytes
    - Viewed (0)
Back to top