Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SchemaURL (0.22 sec)

  1. pkg/tracing/tracing.go

    }
    
    // newResource returns a resource describing this application.
    func newResource() *resource.Resource {
    	r, _ := resource.Merge(
    		resource.Default(),
    		resource.NewWithAttributes(
    			semconv.SchemaURL,
    			// TODO: consider adding attributes here.
    			// Component, hostname, version are all possibly useful
    		),
    	)
    	return r
    }
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

    			} else {
    				c.Fuzz(&sa.Property)
    			}
    			if sa.Schema == nil && len(sa.Property) == 0 {
    				*sa = spec.SchemaOrStringArray{Schema: &spec.Schema{}}
    			}
    		},
    		func(url *spec.SchemaURL, c fuzz.Continue) {
    			*url = spec.SchemaURL("http://url")
    		},
    		func(s *spec.Dependencies, c fuzz.Continue) {
    			enter(s, false, c)
    			defer leave(false)
    
    			// and nothing with invisible==false
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    func ConvertJSONSchemaPropsWithPostProcess(in *apiextensions.JSONSchemaProps, out *spec.Schema, postProcess PostProcessFunc) error {
    	if in == nil {
    		return nil
    	}
    
    	out.ID = in.ID
    	out.Schema = spec.SchemaURL(in.Schema)
    	out.Description = in.Description
    	if in.Type != "" {
    		out.Type = spec.StringOrArray([]string{in.Type})
    	}
    	if in.XIntOrString {
    		out.VendorExtensible.AddExtension("x-kubernetes-int-or-string", true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                getResource().withContent(inputStream -> {
                    URL schemaURL = validate ? getSchemaURL() : null;
                    InputSource inSrc = new InputSource(inputStream);
                    inSrc.setSystemId(descriptorURL.toExternalForm());
                    try {
                        ParserHelper.parse(inSrc, schemaURL, Parser.this);
                    } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top