Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for sch (0.1 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/marshal.go

    func (s *JSONSchemaPropsOrBool) UnmarshalJSON(data []byte) error {
    	var nw JSONSchemaPropsOrBool
    	switch {
    	case len(data) == 0:
    	case data[0] == '{':
    		var sch JSONSchemaProps
    		if err := json.Unmarshal(data, &sch); err != nil {
    			return err
    		}
    		nw.Allows = true
    		nw.Schema = &sch
    	case len(data) == 4 && string(data) == "true":
    		nw.Allows = true
    	case len(data) == 5 && string(data) == "false":
    		nw.Allows = false
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 13 21:12:46 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. scan.go

    		}
    
    		if sch != nil {
    			if reflectValueType != sch.ModelType && reflectValueType.Kind() == reflect.Struct {
    				sch, _ = schema.Parse(db.Statement.Dest, db.cacheStore, db.NamingStrategy)
    			}
    
    			if len(columns) == 1 {
    				// Is Pluck
    				if _, ok := reflect.New(reflectValueType).Interface().(sql.Scanner); (reflectValueType != sch.ModelType && ok) || // is scanner
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/marshal.go

    func (s *JSONSchemaPropsOrBool) UnmarshalJSON(data []byte) error {
    	var nw JSONSchemaPropsOrBool
    	switch {
    	case len(data) == 0:
    	case data[0] == '{':
    		var sch JSONSchemaProps
    		if err := json.Unmarshal(data, &sch); err != nil {
    			return err
    		}
    		nw.Allows = true
    		nw.Schema = &sch
    	case len(data) == 4 && string(data) == "true":
    		nw.Allows = true
    	case len(data) == 5 && string(data) == "false":
    		nw.Allows = false
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 13 21:12:46 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

        // PSL has both *.uk and *.sch.uk; the latter should win.
        // See http://code.google.com/p/guava-libraries/issues/detail?id=1176
    
        InternetDomainName domain = InternetDomainName.from("www.essex.sch.uk");
        assertTrue(domain.hasPublicSuffix());
        assertEquals("essex.sch.uk", domain.publicSuffix().toString());
        assertEquals("www.essex.sch.uk", domain.topPrivateDomain().toString());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/obj0.go

    			break
    		}
    		s = s[1:]
    	}
    	se := s
    
    	for i := cap(sch) - cap(se); i >= 0; i-- {
    		s = sch[i:]
    		if s[0].p.Mark&DELAY == 0 {
    			continue
    		}
    		if -cap(s) < -cap(se) {
    			if !conflict(&s[0], &s[1]) {
    				continue
    			}
    		}
    
    		var t []Sch
    		var j int
    		for j = cap(sch) - cap(s) - 1; j >= 0; j-- {
    			t = sch[j:]
    			if t[0].comp {
    				if s[0].p.Mark&BRANCH != 0 {
    					continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

                    // TIKA-216: Zip bomb prevention
                    final SecureContentHandler sch = new SecureContentHandler(handler, tis);
    
                    sch.setMaximumCompressionRatio(maxCompressionRatio);
                    sch.setOutputThreshold(maxUncompressionSize);
    
                    //pass self to handle embedded documents if
                    //the caller hasn't specified one.
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/meta.go

    	if len(l.Schema.AllOf) > 0 {
    		l.Schema = &l.Schema.AllOf[0]
    	}
    	if refString := l.Schema.Ref.String(); refString != "" {
    		str := strings.TrimPrefix(refString, "#/components/schemas/")
    		sch, ok := l.SchemaList[str]
    		if ok {
    			l.Schema = sch
    		} else {
    			return fmt.Errorf("unable to resolve %s in OpenAPI V3", refString)
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		}
    
    		// Insert a sentinel property that we can probe to detect when the
    		// schema takes effect
    		sch := u.newSchema.DeepCopy()
    		if sch.Properties == nil {
    			sch.Properties = map[string]apiextensionsv1.JSONSchemaProps{}
    		}
    
    		uuidString := string(uuid.NewUUID())
    		sentinelName := "__ratcheting_sentinel_field__"
    		sch.Properties[sentinelName] = apiextensionsv1.JSONSchemaProps{
    			Type: "string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. pilot/test/xds/fake.go

    		f.t.Fatalf("failed to connect: %v", err)
    	}
    	return xds.NewDeltaAdsTest(f.t, conn)
    }
    
    func APIWatches() []string {
    	watches := []string{gvk.MeshConfig.String()}
    	for _, sch := range collections.Pilot.All() {
    		watches = append(watches, sch.GroupVersionKind().String())
    	}
    	return watches
    }
    
    func (f *FakeDiscoveryServer) ConnectUnstarted(p *model.Proxy, watch []string) *adsc.ADSC {
    	f.t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    savannahga.museum save saves-the-whales.com savona.it saxo sayama.osaka.jp sayama.saitama.jp sayo.hyogo.jp sb sb.ua sbi sbs sc sc.cn sc.gov.br sc.ke sc.kr sc.leg.br sc.ls sc.tz sc.ug sc.us sca scalebook.scw.cloud scb sch.ae sch.id sch.ir sch.jo sch.lk sch.ly sch.ng sch.qa sch.sa sch.so sch.ss sch.tf sch.wf sch.zm schaeffler schlesisches.museum schmidt schoenbrunn.museum schokokeks.net schokoladen.museum scholarships school school.museum school.na school.nz school.za schoolbus.jp schools.nsw.edu.au schule schulplattform.de...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top