Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,077 for Meta (0.12 sec)

  1. cmd/handler-utils_test.go

    		{
    			header: http.Header{
    				"X-Amz-Meta-Appid":   []string{"amz-meta"},
    				"X-Minio-Meta-Appid": []string{"minio-meta"},
    			},
    			metadata: map[string]string{
    				"X-Amz-Meta-Appid":   "amz-meta",
    				"X-Minio-Meta-Appid": "minio-meta",
    			},
    			shouldFail: false,
    		},
    		// Fail if header key is not in canonicalized form
    		{
    			header: http.Header{
    				"x-amz-meta-appid": []string{"amz-meta"},
    			},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. security/pkg/k8s/configutil.go

    	configmap := client.Get(meta.Name, meta.Namespace)
    	if configmap == nil {
    		// Create a new ConfigMap.
    		configmap = &v1.ConfigMap{
    			ObjectMeta: meta,
    			Data: map[string]string{
    				constants.CACertNamespaceConfigMapDataName: string(caBundle),
    			},
    		}
    		if _, err := client.Create(configmap); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningConfigurationsIntegrationSpec.groovy

            given:
            buildFile << """
                configurations {
                    meta
                }
    
                signing {
                    ${signingConfiguration()}
                    sign configurations.archives, configurations.meta
                }
    
                ${keyInfo.addAsPropertiesScript()}
                ${getJavadocAndSourceJarsScript("meta")}
            """
    
            when:
            run "buildSignatures"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top