Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,410 for _objects (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. docs/site-replication/run-ssec-object-replication-with-compression.sh

    # 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: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. cmd/object-api-input-checks.go

    	if len(object) == 0 {
    		return ObjectNameInvalid{Bucket: bucket, Object: object}
    	}
    	if !IsValidObjectPrefix(object) {
    		return ObjectNameInvalid{Bucket: bucket, Object: object}
    	}
    	if runtime.GOOS == globalWindowsOSName && strings.Contains(object, "\\") {
    		// Objects cannot be contain \ in Windows and is listed as `Characters to Avoid`.
    		return ObjectNameInvalid{Bucket: bucket, Object: object}
    	}
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/cmd/fix/jnitype_test.go

    // typedef struct _jobject* jobject;
    import "C"
    
    var x C.jobject = nil
    
    func f() {
    	x = nil
    }
    `,
    		Out: `package main
    
    // typedef struct _jobject* jobject;
    import "C"
    
    var x C.jobject = 0
    
    func f() {
    	x = 0
    }
    `,
    	},
    	{
    		Name: "jni.EqualArgument",
    		In: `package main
    
    // typedef struct _jobject* jobject;
    import "C"
    
    var x C.jobject
    var y = x == nil
    var z = x != nil
    `,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/revived_types/revived_objects.h

    namespace tensorflow {
    
    // A container for revived saved model objects.
    //
    // Most of the objects will be revived from nodes in the object graph, and for
    // those objects this container provides a map from node id to the revived
    // objects.
    //
    // For objects that have to be revived but are not part of the object graph,
    // this container provides a place where the objects can be stored so they are
    // available to the runtime.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 05 23:10:04 UTC 2020
    - 4K bytes
    - Viewed (0)
  9. cmd/object-api-common.go

    	deletedBucketsPrefix = ".deleted"
    
    	// ETag (hex encoded md5sum) of empty string.
    	emptyETag = "d41d8cd98f00b204e9800998ecf8427e"
    )
    
    // Global object layer mutex, used for safely updating object layer.
    var globalObjLayerMutex sync.RWMutex
    
    // Global object layer, only accessed by globalObjectAPI.
    var globalObjectAPI ObjectLayer
    
    type storageOpts struct {
    	cleanUp     bool
    	healthCheck bool
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. cmd/object-handlers-common_test.go

    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top