Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for content_es (0.25 sec)

  1. pkg/api/testing/unstructured_test.go

    	knownFailureReasons := map[string][]schema.GroupVersionKind{
    		// Since JSON cannot directly represent arbitrary byte sequences, a byte slice
    		// encodes to a JSON string containing the base64 encoding of the slice
    		// contents. Decoding a JSON string into a byte slice assumes (and requires) that
    		// the JSON string contain base64-encoded data. The CBOR serializer must be
    		// compatible with this behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		if err != nil {
    			errs = append(errs, err)
    			continue
    		}
    		// when i != 0, we have transformed the data from storage using the new transformer,
    		// we want to issue a write to etcd even if the contents of the data haven't changed
    		return result, stale || i != 0, nil
    	}
    	if err := utilerrors.Reduce(utilerrors.NewAggregate(errs)); err != nil {
    		return nil, false, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/validation/validation.go

    	mand, ok := internalbootstrap.MandatoryPriorityLevelConfigurations[pl.Name]
    	if !ok {
    		return allErrs
    	}
    
    	if pl.Name == flowcontrol.PriorityLevelConfigurationNameExempt {
    		// we allow the admin to change the contents of the 'Exempt' field of
    		// the singleton 'exempt' priority level object, every other fields of
    		// the Spec should not be allowed to change.
    		want := &mand.Spec
    		have := pl.Spec.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"seLinuxMount":         "seLinuxMount specifies if the CSI driver supports \"-o context\" mount option.\n\nWhen \"true\", the CSI driver must ensure that all volumes...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  5. pkg/kubelet/container/runtime.go

    	// until output is below this limit.
    	MaxPodTerminationMessageLogLength = 1024 * 12
    	// MaxContainerTerminationMessageLength is the upper bound any one container may write to
    	// its termination message path. Contents above this length will be truncated.
    	MaxContainerTerminationMessageLength = 1024 * 4
    	// MaxContainerTerminationMessageLogLength is the maximum bytes any one container will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. pkg/apis/storage/types.go

    	// volume. This field defaults to false.
    	//
    	// Note: After a successful initial NodePublishVolume call, subsequent calls
    	// to NodePublishVolume should only update the contents of the volume. New
    	// mount points will not be seen by a running container.
    	//
    	// +optional
    	RequiresRepublish *bool
    
    	// SELinuxMount specifies if the CSI driver supports "-o context"
    	// mount option.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server.go

    	}
    	lenientCodecs := serializer.NewCodecFactory(lenientScheme, serializer.DisableStrict)
    	return lenientScheme, &lenientCodecs, nil
    }
    
    // loadConfigFromFile loads the contents of file and decodes it as a
    // KubeProxyConfiguration object.
    func (o *Options) loadConfigFromFile(file string) (*kubeproxyconfig.KubeProxyConfiguration, error) {
    	data, err := os.ReadFile(file)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top