Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,563 for metaV (0.49 sec)

  1. docs/bucket/versioning/DESIGN.md

    ## Description of `xl.meta`
    
    `xl.meta` is a new self describing backend format used by MinIO to support AWS S3 compatible versioning.
    This file is the source of truth for each `version` at rest. `xl.meta` is a msgpack file serialized from a
    well defined data structure. To understand `xl.meta` here are the few things to start with
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/convert_test.go

    	tests := []struct {
    		desc         string
    		tls          *networkingAPI.ClientTLSSettings
    		sni          string
    		meta         *model.BootstrapNodeMetadata
    		expectTLSCtx string
    	}{
    		{
    			desc:         "no-tls",
    			tls:          &networkingAPI.ClientTLSSettings{},
    			sni:          "",
    			meta:         &model.BootstrapNodeMetadata{},
    			expectTLSCtx: "null",
    		},
    		{
    			desc: "tls-simple-no-cert",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/continue_test.go

    			args:    args{continueValue: encodeContinueOrDie("meta.k8s.io/v1", 0, "key"), keyPrefix: "/test/"},
    			wantErr: ErrInvalidStartRV,
    		},
    		{
    			name:    "no start Key",
    			args:    args{continueValue: encodeContinueOrDie("meta.k8s.io/v1", 1, ""), keyPrefix: "/test/"},
    			wantErr: ErrEmptyStartKey,
    		},
    		{
    			name:    "path traversal - parent",
    			args:    args{continueValue: encodeContinueOrDie("meta.k8s.io/v1", 1, "../key"), keyPrefix: "/test/"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 17:30:02 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. src/internal/coverage/decodemeta/decodefile.go

    package decodemeta
    
    // This package contains APIs and helpers for reading and decoding
    // meta-data output files emitted by the runtime when a
    // coverage-instrumented binary executes. A meta-data file contains
    // top-level info (counter mode, number of packages) and then a
    // separate self-contained meta-data section for each Go package.
    
    import (
    	"bufio"
    	"crypto/md5"
    	"encoding/binary"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 14 22:30:23 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/policy_applier_test.go

    			},
    		},
    		{
    			name: "workload vs namespace config",
    			configs: []*config.Config{
    				{
    					Meta: config.Meta{
    						Name:      "default",
    						Namespace: "my-ns",
    					},
    					Spec: &v1beta1.PeerAuthentication{},
    				},
    				{
    					Meta: config.Meta{
    						Name:      "foo",
    						Namespace: "my-ns",
    					},
    					Spec: &v1beta1.PeerAuthentication{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginRegistryTest.groovy

            def url = writePluginProperties(TestPlugin1)
    
            given:
            classLoader.getResource("META-INF/gradle-plugins/org.gradle.somePlugin.properties") >> url
            classLoader.getResource("META-INF/gradle-plugins/somePlugin.properties") >> { throw new RuntimeException() }
            classLoader.loadClass(TestPlugin1.name) >> TestPlugin1
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 13K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar_test.go

    				},
    				{
    					Hosts: []string{"*/*"},
    				},
    			},
    		},
    	}
    	configs2 = &config.Config{
    		Meta: config.Meta{
    			Name:      "foo",
    			Namespace: "not-default",
    		},
    		Spec: &networking.Sidecar{},
    	}
    
    	configs3 = &config.Config{
    		Meta: config.Meta{
    			Name:      "foo",
    			Namespace: "not-default",
    		},
    		Spec: &networking.Sidecar{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

            then:
            def ear = new JarTestFixture(file('build/libs/root.ear'))
            ear.assertContainsFile("META-INF/MANIFEST.MF")
            ear.assertContainsFile("META-INF/application.xml")
            def appXml = new XmlSlurper().parse(file('unzipped/META-INF/application.xml'))
            def module = appXml.module[0].web
            module."web-uri" == "root.war"
            module."context-root" == "anywhere"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v1.go

    //go:generate msgp -file=$GOFILE -unexported
    
    // A xlMetaV1Object represents `xl.meta` metadata header.
    type xlMetaV1Object struct {
    	Version string   `json:"version"` // Version of the current `xl.meta`.
    	Format  string   `json:"format"`  // Format of the current `xl.meta`.
    	Stat    StatInfo `json:"stat"`    // Stat of the current object `xl.meta`.
    	// Erasure coded info for the current object `xl.meta`.
    	Erasure ErasureInfo `json:"erasure"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route_cache_test.go

    				}.HashCode(),
    			},
    		},
    		{
    			name: "mixed",
    			r: Cache{
    				VirtualServices: []config.Config{
    					{
    						Meta: config.Meta{
    							Name:      "foo",
    							Namespace: "default",
    						},
    					},
    					{
    						Meta: config.Meta{
    							Name:      "bar-0-istio-autogenerated-k8s-gateway",
    							Namespace: "default",
    							Annotations: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top