Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,210 for metaV (0.69 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginIntegrationTest.groovy

            goodPlugin()
    
            expect:
            succeeds "jar"
            def jar = new JarTestFixture(file('build/libs/test.jar'))
            jar.assertContainsFile('META-INF/gradle-plugins/test-plugin.properties') &&
                jar.assertFileContent('META-INF/gradle-plugins/test-plugin.properties', descriptorFile.text)
            jar.assertContainsFile('com/xxx/TestPlugin.class')
            ! output.contains(NO_DESCRIPTOR_WARNING)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/config.go

    	if !strings.Contains(hostname, ".") {
    		if meta.Namespace != "" {
    			out = out + "." + meta.Namespace
    		}
    
    		// FIXME this is a gross hack to hardcode a service's domain name in kubernetes
    		// BUG this will break non kubernetes environments if they use shortnames in the
    		// rules.
    		if meta.Domain != "" {
    			out = out + ".svc." + meta.Domain
    		}
    	}
    
    	return host.Name(out)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/util/util_test.go

    			}
    		})
    	}
    }
    
    func TestAddConfigInfoMetadata(t *testing.T) {
    	cases := []struct {
    		name string
    		in   config.Meta
    		meta *core.Metadata
    		want *core.Metadata
    	}{
    		{
    			"nil metadata",
    			config.Meta{
    				Name:             "svcA",
    				Namespace:        "default",
    				Domain:           "svc.cluster.local",
    				GroupVersionKind: gvk.DestinationRule,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    			`{"type":"object","properties":{"apiVersion":{"type":"string"},"kind":{"type":"string"},"metadata":{"$ref":"#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"},"spec":{"type":"object"},"status":{"type":"object"}},"x-kubernetes-group-version-kind":[{"group":"bar.k8s.io","kind":"Foo","version":"v1"}]}`,
    			`{"$ref":"#/definitions/io.k8s.bar.v1.Foo"}`,
    			true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
                    }
                  },
                  "application/vnd.kubernetes.protobuf": {
                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
                    }
                  },
                  "application/yaml": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.api.resource.v1alpha2;
    
    import "k8s.io/api/core/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. cmd/erasure-metadata-utils.go

    		// and move to collect others
    		if distribution[i] != meta.Erasure.Index {
    			inconsistent++ // keep track of inconsistent entries
    			continue
    		}
    		shuffledDisks[meta.Erasure.Index-1] = disks[i]
    		shuffledPartsMetadata[meta.Erasure.Index-1] = metaArr[i]
    	}
    
    	// Inconsistent meta info is with in the limit of
    	// expected quorum, proceed with EcIndex based
    	// disk order.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    //
    // Must be called under write lock
    func (s *policySource[P, B, E]) compilePolicyLocked(policySpec P) E {
    	policyMeta, err := meta.Accessor(policySpec)
    	if err != nil {
    		// This should not happen if P, and B have ObjectMeta, but
    		// unfortunately there is no way to express "able to call
    		// meta.Accessor" as a type constraint
    		utilruntime.HandleError(err)
    		var emptyEvaluator E
    		return emptyEvaluator
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. cmd/signature-v4-utils_test.go

    	}
    }
    
    // Test TestCheckMetaHeaders tests the logic of checkMetaHeaders() function
    func TestCheckMetaHeaders(t *testing.T) {
    	signedHeadersMap := map[string][]string{
    		"X-Amz-Meta-Test":      {"test"},
    		"X-Amz-Meta-Extension": {"png"},
    		"X-Amz-Meta-Name":      {"imagepng"},
    	}
    	expectedMetaTest := "test"
    	expectedMetaExtension := "png"
    	expectedMetaName := "imagepng"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is the list of resource claims.
      repeated ResourceClaim items = 2;
    }
    
    // ResourceClaimParameters defines resource requests for a ResourceClaim in an
    // in-tree format understood by Kubernetes.
    message ResourceClaimParameters {
      // Standard object metadata
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top