Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 622 for Meta (0.04 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto

    syntax = "proto2";
    
    package k8s.io.apimachinery.pkg.apis.meta.v1beta1;
    
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/apimachinery/pkg/apis/meta/v1beta1";
    
    // PartialObjectMetadataList contains a list of objects containing only their metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. .gitignore

    coverage.txt
    .vscode/
    *.tar.bz2
    parts/
    prime/
    stage/
    .sia_temp/
    config.json
    node_modules/
    mc.*
    s3-check-md5*
    xl-meta*
    healing-*
    inspect*.zip
    200M*
    hash-set
    minio.RELEASE*
    mc
    nancy
    inspects/*
    .bin/
    *.gz
    docs/debugging/s3-verify/s3-verify
    docs/debugging/xl-meta/xl-meta
    docs/debugging/s3-check-md5/s3-check-md5
    docs/debugging/hash-set/hash-set
    docs/debugging/healing-bin/healing-bin
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 802 bytes
    - Viewed (0)
  3. api/maven-api-meta/pom.xml

      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-api</artifactId>
        <version>4.0.0-beta-4-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-api-meta</artifactId>
      <name>Maven 4 API :: Meta annotations</name>
      <description>Maven 4 API - Java meta annotations.</description>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto

    syntax = "proto2";
    
    package k8s.io.apimachinery.pkg.apis.meta.v1beta1;
    
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/apimachinery/pkg/apis/meta/v1beta1";
    
    // PartialObjectMetadataList contains a list of objects containing only their metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top