Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,039 for _objects (0.13 sec)

  1. staging/src/k8s.io/api/rbac/v1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata.",
    	"subjects": "Subjects holds references to the objects the role applies to.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    				// Read last byte of object
    				fmt.Sprintf("bytes=-%d", 1),
    				// Read all but first byte of object
    				"bytes=1-",
    				// Read first half of object
    				fmt.Sprintf("bytes=%d-%d", 0, objLen/2),
    				// Read last half of object
    				fmt.Sprintf("bytes=-%d", objLen/2),
    				// Read middle half of object
    				fmt.Sprintf("bytes=%d-%d", objLen/4, objLen*3/4),
    				// Read 100MiB of the object from the beginning
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1alpha1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata.",
    	"subjects": "Subjects holds references to the objects the role applies to.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. docs/site-replication/run-ssec-object-replication.sh

    fi
    
    # List the objects from replicated site
    echo "Objects from replicated instance"
    ./mc ls minio2/test-bucket --insecure
    repcount1=$(./mc ls minio2/test-bucket/plainfile --insecure | wc -l)
    if [ "${repcount1}" -ne 1 ]; then
    	echo "BUG: object test-bucket/plainfile not replicated"
    	exit_1
    fi
    repcount2=$(./mc ls minio2/test-bucket/encrypted --insecure | wc -l)
    if [ "${repcount2}" -ne 1 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

      // Defaults to "" for ServiceAccount subjects.
      // Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
      // +optional
      optional string apiGroup = 2;
    
      // Name of the object being referenced.
      optional string name = 3;
    
      // Namespace of the referenced object.  If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. tests/migrate_test.go

    	err = db.Table("objects").AutoMigrate(&Object3{})
    	if err != nil {
    		t.Errorf("AutoMigrate err:%v", err)
    	}
    
    	err = db.Table("objects").Take(&Object3{}).Error
    	if err != nil {
    		t.Errorf("take err:%v", err)
    	}
    
    	// AddColumn
    	err = db.Table("objects").AutoMigrate(&Object4{})
    	if err != nil {
    		t.Errorf("AutoMigrate err:%v", err)
    	}
    
    	err = db.Table("objects").Take(&Object4{}).Error
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1beta1/generated.proto

      // Defaults to "" for ServiceAccount subjects.
      // Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
      // +optional
      optional string apiGroup = 2;
    
      // Name of the object being referenced.
      optional string name = 3;
    
      // Namespace of the referenced object.  If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1alpha1/generated.proto

      // Defaults to "v1" for ServiceAccount subjects.
      // Defaults to "rbac.authorization.k8s.io/v1alpha1" for User and Group subjects.
      // +k8s:conversion-gen=false
      // +optional
      optional string apiVersion = 2;
    
      // Name of the object being referenced.
      optional string name = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/types.go

    type RoleBinding struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Subjects holds references to the objects the role applies to.
    	// +optional
    	// +listType=atomic
    	Subjects []Subject `json:"subjects,omitempty" protobuf:"bytes,2,rep,name=subjects"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    type RoleBinding struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Subjects holds references to the objects the role applies to.
    	// +optional
    	// +listType=atomic
    	Subjects []Subject `json:"subjects,omitempty" protobuf:"bytes,2,rep,name=subjects"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top