Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,140 for _objects (0.12 sec)

  1. cmd/iam-object-store.go

    	err := iamOS.deleteIAMConfig(ctx, getGroupInfoPath(name))
    	if err == errConfigNotFound {
    		err = errNoSuchGroup
    	}
    	return err
    }
    
    // Lists objects in the minioMetaBucket at the given path prefix. All returned
    // items have the pathPrefix removed from their names.
    func listIAMConfigItems(ctx context.Context, objAPI ObjectLayer, pathPrefix string) <-chan itemOrErr[string] {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    	subjects := []flowcontrol.Subject{}
    	for _, name := range names {
    		subjects = append(subjects, flowcontrol.Subject{
    			Kind: flowcontrol.SubjectKindServiceAccount,
    			ServiceAccount: &flowcontrol.ServiceAccountSubject{
    				Name:      name,
    				Namespace: metav1.NamespaceSystem,
    			},
    		})
    	}
    	return subjects
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    available in \"kubernetes.io/hostname=knode-abc123\"\n\nThe following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero\n\nThe producer of these objects can decide which approach is more suitable.\n\nThey are consumed by the kube-scheduler when a CSI driver opts into capacity-aware scheduling with CSIDriv...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectCollection.java

         * The given configure action is executed against the object before it is returned from the provider.
         *
         * @param name The object's name
         * @param type The object's type
         * @param configurationAction The action to use to configure the object.
         * @return A {@link Provider} that will return the object when queried. The object may be created and configured at this point, if not already.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 12:50:52 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. 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)
  7. cmd/object-api-putobject_test.go

    		26: {bucketName: bucket, objName: object, inputData: data, inputDataSize: int64(len(data) - 1), expectedMd5: getMD5Hash(data[:len(data)-1]), expectedError: ioutil.ErrOverread},
    		27: {bucketName: bucket, objName: object, inputData: nilBytes, inputDataSize: int64(len(nilBytes) + 1), expectedMd5: getMD5Hash(nilBytes), expectedError: IncompleteBody{Bucket: bucket, Object: object}},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. cmd/object-api-utils_test.go

    		},
    		{
    			object: "object.json",
    			header: http.Header{
    				"Content-Type": []string{"application/json"},
    			},
    			result: false,
    		},
    		{
    			object: "object.txt",
    			header: http.Header{
    				"Content-Type": []string{"text/plain"},
    			},
    			result: false,
    		},
    		{
    			object: "object",
    			header: http.Header{
    				"Content-Type": []string{"text/something"},
    			},
    			result: false,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/lang/ObjectUtil.java

         * </pre>
         *
         * @param object1
         *            オブジェクト(<code>null</code>可)
         * @param object2
         *            オブジェクト(<code>null</code>可)
         * @return 引数の2つのオブジェクトが等しい場合は<code>true</code>を返します。
         */
        public static boolean equals(final Object object1, final Object object2) {
            if (object1 == object2) {
                return true;
            }
            if (object1 == null || object2 == null) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/help.go

    		items.Set(reflect.ValueOf(objects))
    		return nil
    	}
    	slice := reflect.MakeSlice(items.Type(), len(objects), len(objects))
    	for i := range objects {
    		dest := slice.Index(i)
    		if dest.Type() == rawExtensionObjectType {
    			dest = dest.FieldByName("Object")
    		}
    
    		// check to see if you're directly assignable
    		if reflect.TypeOf(objects[i]).AssignableTo(dest.Type()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 16:25:43 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top