Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 132 for fulfilled (0.15 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/listtype/validation.go

    	"k8s.io/apimachinery/pkg/util/validation/field"
    
    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema"
    )
    
    // ValidateListSetsAndMaps validates that arrays with x-kubernetes-list-type "map" and "set" fulfill the uniqueness
    // invariants for the keys (maps) and whole elements (sets).
    func ValidateListSetsAndMaps(fldPath *field.Path, s *schema.Structural, obj map[string]interface{}) field.ErrorList {
    	if s == nil || obj == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 02:47:24 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ExecutionList.java

        }
        // If we succeeded then list holds all the runnables we to execute. The pairs in the stack are
        // in the opposite order from how they were added so we need to reverse the list to fulfill our
        // contract.
        // This is somewhat annoying, but turns out to be very fast in practice. Alternatively, we could
        // drop the contract on the method that enforces this queue like behavior since depending on it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/klog/v2"
    )
    
    // ConfigMapCAController provies a CAContentProvider that can dynamically react to configmap changes
    // It also fulfills the authenticator interface to provide verifyoptions
    type ConfigMapCAController struct {
    	name string
    
    	configmapLister    corev1listers.ConfigMapLister
    	configmapNamespace string
    	configmapName      string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions"
                  }
                ],
                "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
              },
              "propagationPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

        }
        // If we succeeded then list holds all the runnables we to execute. The pairs in the stack are
        // in the opposite order from how they were added so we need to reverse the list to fulfill our
        // contract.
        // This is somewhat annoying, but turns out to be very fast in practice. Alternatively, we could
        // drop the contract on the method that enforces this queue like behavior since depending on it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    	// Run should be called a go .Run
    	Run(ctx context.Context, workers int)
    }
    
    // DynamicFileCAContent provides a CAContentProvider that can dynamically react to new file content
    // It also fulfills the authenticator interface to provide verifyoptions
    type DynamicFileCAContent struct {
    	name string
    
    	// filename is the name the file to read.
    	filename string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // readOnly defaults to false (read/write). ReadOnly here will force
      // the ReadOnly setting in VolumeMounts.
      // +optional
      optional bool readOnly = 3;
    }
    
    // Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.
    // +k8s:openapi-gen=false
    message Preconditions {
      // Specifies the target UID.
      // +optional
      optional string uid = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// ObjectMeta describes the object that is being bound.
    	// +optional
    	metav1.ObjectMeta
    
    	// Target is the object to bind to.
    	Target ObjectReference
    }
    
    // Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.
    type Preconditions struct {
    	// Specifies the target UID.
    	// +optional
    	UID *types.UID
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (PortworxVolumeSource) SwaggerDoc() map[string]string {
    	return map_PortworxVolumeSource
    }
    
    var map_Preconditions = map[string]string{
    	"":    "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.",
    	"uid": "Specifies the target UID.",
    }
    
    func (Preconditions) SwaggerDoc() map[string]string {
    	return map_Preconditions
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/outbuf.go

    	out.off += int64(n)
    	return n, nil
    }
    
    func (out *OutBuf) Write8(v uint8) {
    	pos, buf := out.writeLoc(1)
    	buf[pos] = v
    	out.off++
    }
    
    // WriteByte is an alias for Write8 to fulfill the io.ByteWriter interface.
    func (out *OutBuf) WriteByte(v byte) error {
    	out.Write8(v)
    	return nil
    }
    
    func (out *OutBuf) Write16(v uint16) {
    	out.arch.ByteOrder.PutUint16(out.encbuf[:], v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 8.1K bytes
    - Viewed (0)
Back to top