Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for ProtoPackage (0.13 sec)

  1. 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)
  2. 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)
  3. 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