Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,210 for metaV (0.09 sec)

  1. cmd/metacache-entries.go

    		if len(e.cached.versions) == 0 {
    			return true
    		}
    		return e.cached.versions[0].header.Type == DeleteType
    	}
    	if !isXL2V1Format(e.metadata) {
    		return false
    	}
    	if meta, _, err := isIndexedMetaV2(e.metadata); meta != nil {
    		return meta.IsLatestDeleteMarker()
    	} else if err != nil {
    		return true
    	}
    	// Fall back...
    	xlMeta, err := e.xlmeta()
    	if err != nil || len(xlMeta.versions) == 0 {
    		return true
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/meta/meta.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package meta
    
    import (
    	"fmt"
    	"reflect"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/klog/v2"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 16.5K bytes
    - Viewed (0)
  3. cmd/testdata/xl-meta-merge.zip

    v3.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads. This README provides quickstart instructions on running MinIO on bare metal hardware, including container-based installations. For Kubernetes environments, use the [MinIO Kubernetes Operator](https://github.com/minio/operator/blob/master/README.md). ## Container Installation Use the following commands to run a standalone MinIO...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/authentication_test.go

    			workloadLabels:    nil,
    			wantRequestAuthn: []*config.Config{
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.RequestAuthentication,
    						Name:             "default",
    						Namespace:        "foo",
    					},
    					Spec: &securityBeta.RequestAuthentication{},
    				},
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.RequestAuthentication,
    						Name:             "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  5. cmd/bucket-metadata-sys.go

    		meta.TaggingConfigXML = configData
    		meta.TaggingConfigUpdatedAt = updatedAt
    	case bucketQuotaConfigFile:
    		meta.QuotaConfigJSON = configData
    		meta.QuotaConfigUpdatedAt = updatedAt
    	case objectLockConfig:
    		meta.ObjectLockConfigXML = configData
    		meta.ObjectLockConfigUpdatedAt = updatedAt
    	case bucketVersioningConfig:
    		meta.VersioningConfigXML = configData
    		meta.VersioningConfigUpdatedAt = updatedAt
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. cmd/erasure-healing-common.go

    			continue
    		}
    		meta := partsMetadata[i]
    
    		if meta.Deleted || meta.IsRemote() {
    			continue
    		}
    
    		// Always check data, if we got it.
    		if (len(meta.Data) > 0 || meta.Size == 0) && len(meta.Parts) > 0 {
    			checksumInfo := meta.Erasure.GetChecksumInfo(meta.Parts[0].Number)
    			verifyErr := bitrotVerify(bytes.NewReader(meta.Data),
    				int64(len(meta.Data)),
    				meta.Erasure.ShardFileSize(meta.Size),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ServiceLocatorTest.groovy

        }
    
        def "get() fails when no meta-data file found for service type"() {
            when:
            serviceLocator.get(CharSequence)
    
            then:
            UnknownServiceException e = thrown()
            e.message == "Could not find meta-data resource 'META-INF/services/java.lang.CharSequence' for service 'java.lang.CharSequence'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

        }
    
        def excludeDuplicatesUseMetaInfOverRegularFiles() {
            createDir('meta-inf1') {
                file 'file.txt'
            }
    
            createDir('meta-inf2') {
                file 'file.txt'
            }
    
            file('meta-inf1/file.txt').text = 'good'
            file('meta-inf2/file.txt').text = 'bad'
    
    
            buildFile << '''
            task jar(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. cmd/metacache-walk.go

    					// such scenarios the 'xl.meta' might get truncated
    					if !IsErrIgnored(err, io.EOF, io.ErrUnexpectedEOF) {
    						internalLogOnceIf(ctx, err, "metacache-walk-read-metadata")
    					}
    					continue
    				}
    				meta.name = strings.TrimSuffix(entry, xlStorageFormatFile)
    				meta.name = strings.TrimSuffix(meta.name, SlashSeparator)
    				meta.name = pathJoinBuf(sb, current, meta.name)
    				meta.name = decodeDirObject(meta.name)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. pkg/config/schema/collections/collections.agent.gen.go

    			"v1",
    		},
    		Proto: "istio.security.v1beta1.AuthorizationPolicy", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    		ReflectType: reflect.TypeOf(&istioioapisecurityv1beta1.AuthorizationPolicy{}).Elem(), StatusType: reflect.TypeOf(&istioioapimetav1alpha1.IstioStatus{}).Elem(),
    		ProtoPackage: "istio.io/api/security/v1beta1", StatusPackage: "istio.io/api/meta/v1alpha1",
    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top