Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for ProtoPackage (0.1 sec)

  1. pkg/config/schema/ast/ast.go

    	Builtin            bool     `json:"builtin"`
    	Specless           bool     `json:"specless"`
    	Synthetic          bool     `json:"synthetic"`
    	Proto              string   `json:"proto"`
    	ProtoPackage       string   `json:"protoPackage"`
    	StatusProto        string   `json:"statusProto"`
    	StatusProtoPackage string   `json:"statusProtoPackage"`
    	Validate           string   `json:"validate"`
    	Description        string   `json:"description"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pkg/config/schema/collections/mock.go

    	Mock = resource.Builder{
    		ClusterScoped: false,
    		Kind:          "MockConfig",
    		Plural:        "mockconfigs",
    		Group:         "test.istio.io",
    		Version:       "v1",
    		Proto:         "config.MockConfig",
    		ProtoPackage:  "istio.io/istio/pkg/test/config",
    		ValidateProto: func(cfg config.Config) (validation.Warning, error) {
    			if cfg.Spec.(*testconfig.MockConfig).Key == "" {
    				return nil, errors.New("empty key")
    			}
    			return nil, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/local/helpers_test.go

    	Group:         "testdata.istio.io",
    	Kind:          "Kind1",
    	Plural:        "Kind1s",
    	Version:       "v1alpha1",
    	Proto:         "google.protobuf.Struct",
    	ReflectType:   reflect.TypeOf(&structpb.Struct{}).Elem(),
    	ProtoPackage:  "github.com/gogo/protobuf/types",
    	ClusterScoped: false,
    	ValidateProto: validation.EmptyValidate,
    }.MustBuild()
    
    func createTestResource(t *testing.T, ns, name, version string) *resource.Instance {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. pkg/config/schema/collection/schema.go

    	name         config.GroupVersionKind
    	variableName string
    }
    
    // String interface method implementation.
    func (s *schemaImpl) String() string {
    	return fmt.Sprintf("[Schema](%s, %q, %s)", s.name, s.resource.ProtoPackage(), s.resource.Proto())
    }
    
    func (s *schemaImpl) VariableName() string {
    	return s.variableName
    }
    
    func (s *schemaImpl) Resource() resource.Schema {
    	return s.resource
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzer_test.go

    	g.Expect(a3.ran).To(BeFalse())
    	g.Expect(a4.ran).To(BeFalse())
    }
    
    func newSchema(name string) resource2.Schema {
    	return resource2.Builder{
    		Kind:         name,
    		Plural:       name + "s",
    		ProtoPackage: "github.com/gogo/protobuf/types",
    		Proto:        "google.protobuf.Empty",
    	}.MustBuild()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. pkg/config/schema/codegen/common.go

    	})
    
    	// filter to only types agent needs (to keep binary small)
    	agentEntries := []colEntry{}
    	for _, e := range inp.Entries {
    		if strings.Contains(e.Resource.ProtoPackage, "istio.io") &&
    			e.Resource.Kind != "EnvoyFilter" {
    			agentEntries = append(agentEntries, e)
    		}
    	}
    
    	// add MCS types
    	gvrEntries := append([]colEntry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top