Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 973 for Meta (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/networking/core/route/route_test.go

    		g := NewWithT(t)
    		virtualService := config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.VirtualService,
    				Name:             "acme",
    			},
    			Spec: virtualServiceWithSubset,
    		}
    		cg := core.NewConfigGenTest(t, core.TestOptions{
    			Services: exampleService,
    			Configs: []config.Config{
    				virtualService,
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/testsupport.go

    	// Open meta-data file
    	f, err := os.Open(p.MetaFile)
    	if err != nil {
    		return fmt.Errorf("unable to open meta-data file %s: %v", p.MetaFile, err)
    	}
    	defer func() {
    		f.Close()
    	}()
    	var mfr *decodemeta.CoverageMetaFileReader
    	mfr, err = decodemeta.NewCoverageMetaFileReader(f, nil)
    	if err != nil {
    		return fmt.Errorf("error reading meta-data file %s: %v", p.MetaFile, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/apache/maven/its/a/0.1/a-0.1.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/org.apache.maven.its/a/pom.xml 4.0.0 org.apache.maven.its a 0.1 jar Maven Integration Test :: Dummy Artifact maven-core-it file:///${basedir}/repo META-INF/maven/org.apache.maven.its/a/pom.properties #Generated by Maven #Sat Oct 24 00:27:56 CEST 2009 version=0.1 groupId=org.apache.maven.its artifactId=a...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top