Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,684 for Meta (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    		return nil, nil, err
    	}
    
    	fakeRestMapper := func() *meta.DefaultRESTMapper {
    		res := meta.NewDefaultRESTMapper([]schema.GroupVersion{
    			{
    				Group:   "",
    				Version: "v1",
    			},
    		})
    
    		res.Add(fakePolicyGVK, meta.RESTScopeRoot)
    		res.Add(fakeBindingGVK, meta.RESTScopeRoot)
    		res.Add(corev1.SchemeGroupVersion.WithKind("ConfigMap"), meta.RESTScopeNamespace)
    
    		for _, mapping := range paramMappings {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/resources/META-INF/analysis-api/analysis-api-fir.xml

    <idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
      <xi:include href="/META-INF/analysis-api/analysis-api-impl-base.xml"/>
      <xi:include href="/META-INF/analysis-api/low-level-api-fir.xml"/>
      <xi:include href="/META-INF/analysis-api/symbol-light-classes.xml"/>
    
      <xi:include href="/META-INF/extensions/compiler.xml"/>
    
      <extensions defaultExtensionNs="com.intellij">
        <projectService
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/internal/coverage/pods/pods.go

    // process is collecting a set { M1, M2, ... MN } where each M_k is a
    // distinct coverage meta-data file. We then create a single pod for
    // each meta-data file M_k, then find all of the counter data files
    // that refer to that meta-data file (recall that the counter data
    // file name incorporates the meta-data hash), and add the counter
    // data file to the appropriate pod.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. pkg/kube/krt/helpers.go

    	specField := val.FieldByName("ObjectMetaApplyConfiguration")
    	if !specField.IsValid() {
    		return nil
    	}
    	meta := specField.Interface().(*acmetav1.ObjectMetaApplyConfiguration)
    	if meta.Namespace != nil && len(*meta.Namespace) > 0 {
    		return ptr.Of(Key[O](*meta.Namespace + "/" + *meta.Name))
    	}
    	return ptr.Of(Key[O](*meta.Name))
    }
    
    // keyFunc is the internal API key function that returns "namespace"/"name" or
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            def classFile = file("build/classes/java/main/Thing.class")
            classFile.isFile()
            def jarFile = file("build/libs/somelib.jar")
            new ZipTestFixture(jarFile).hasDescendants("META-INF/MANIFEST.MF", "Thing.class", "answer.txt", "META-INF/some.Service")
    
            when:
            configurationCacheRun "build"
    
            then:
            assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. pilot/pkg/config/aggregate/config_test.go

    	store2 := memory.Make(collection.SchemasFor(collections.HTTPRoute))
    
    	if _, err := store1.Create(config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.HTTPRoute,
    			Name:             "other",
    		},
    	}); err != nil {
    		t.Fatal(err)
    	}
    	if _, err := store2.Create(config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.HTTPRoute,
    			Name:             "another",
    		},
    	}); err != nil {
    		t.Fatal(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storagemigration.k8s.io_openapi.json

                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
                    }
                  },
                  "application/vnd.kubernetes.protobuf": {
                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
                    }
                  },
                  "application/yaml": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/ep_filters_test.go

    			Configs: []config.Config{
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.PeerAuthentication,
    						Name:             "mtls-off",
    						Namespace:        "ns",
    					},
    					Spec: &security.PeerAuthentication{
    						Mtls: &security.PeerAuthentication_MutualTLS{Mode: security.PeerAuthentication_MutualTLS_DISABLE},
    					},
    				},
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. pkg/config/model.go

    func (meta *Meta) Key() string {
    	return Key(
    		meta.GroupVersionKind.Group, meta.GroupVersionKind.Version, meta.GroupVersionKind.Kind,
    		meta.Name, meta.Namespace)
    }
    
    func (meta *Meta) ToObjectMeta() metav1.ObjectMeta {
    	return metav1.ObjectMeta{
    		Name:              meta.Name,
    		Namespace:         meta.Namespace,
    		UID:               kubetypes.UID(meta.UID),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. pkg/config/schema/collections/collections.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
    - 31.4K bytes
    - Viewed (0)
Back to top