Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,039 for _objects (0.15 sec)

  1. cmd/testdata/undeleteable-object.tgz

    undeleteable-object.tar multisitea/data/disterasure/xl3/bucket/2/xl.meta XL2 Æ R Ä$•Ä Ó É ýG7xÄ â”{± Å &ƒ¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ wÿhY ªFn€ Äw( ’¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistœ ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ò P ªPartASizes‘Ò P ¤SizeÒ P ¥MTimeÓ É ýG7x§MetaSys€§MetaUsr‚¬content-typeªtext/plain¤etagÙ 4b412ab80fe1268b9de7¡v ΑÈcÑ multisitea/data/disterasure/xl3/bucket/2/77ff6859-03aa-466e-8018-c477288f1092/part.1 multisitea/data/disterasure/xl3/.minio.sys/._format.json...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top