Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,401 for Uncommon (0.15 sec)

  1. src/internal/reflectlite/type.go

    }
    
    func (t rtype) uncommon() *uncommonType {
    	return t.Uncommon()
    }
    
    func (t rtype) String() string {
    	s := t.nameOff(t.Str).Name()
    	if t.TFlag&abi.TFlagExtraStar != 0 {
    		return s[1:]
    	}
    	return s
    }
    
    func (t rtype) common() *abi.Type { return t.Type }
    
    func (t rtype) exportedMethods() []abi.Method {
    	ut := t.uncommon()
    	if ut == nil {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. src/runtime/type.go

    }
    
    func (t rtype) string() string {
    	s := t.nameOff(t.Str).Name()
    	if t.TFlag&abi.TFlagExtraStar != 0 {
    		return s[1:]
    	}
    	return s
    }
    
    func (t rtype) uncommon() *uncommontype {
    	return t.Uncommon()
    }
    
    func (t rtype) name() string {
    	if t.TFlag&abi.TFlagNamed == 0 {
    		return ""
    	}
    	s := t.string()
    	i := len(s) - 1
    	sqBrackets := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/internal/reflectlite/export_test.go

    func (EmbedWithUnexpMeth) f() {}
    
    type pinUnexpMeth interface {
    	f()
    }
    
    var pinUnexpMethI = pinUnexpMeth(EmbedWithUnexpMeth{})
    
    func FirstMethodNameBytes(t Type) *byte {
    	_ = pinUnexpMethI
    
    	ut := t.uncommon()
    	if ut == nil {
    		panic("type has no methods")
    	}
    	m := ut.Methods()[0]
    	mname := t.(rtype).nameOff(m.Name)
    	if *mname.DataChecked(0, "name flag field")&(1<<2) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/internal/abi/type.go

    func (t *Type) ChanDir() ChanDir {
    	if t.Kind() == Chan {
    		ch := (*ChanType)(unsafe.Pointer(t))
    		return ch.Dir
    	}
    	return InvalidDir
    }
    
    // Uncommon returns a pointer to T's "uncommon" data if there is any, otherwise nil
    func (t *Type) Uncommon() *UncommonType {
    	if t.TFlag&TFlagUncommon == 0 {
    		return nil
    	}
    	switch t.Kind() {
    	case Struct:
    		return &(*structTypeUncommon)(unsafe.Pointer(t)).u
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/injection/injection.go

    var _ analysis.Analyzer = &Analyzer{}
    
    // We assume that enablement is via an istio-injection=enabled or istio.io/rev namespace label
    // In theory, there can be alternatives using Mutatingwebhookconfiguration, but they're very uncommon
    // See https://istio.io/docs/ops/troubleshooting/injection/ for more info.
    var (
    	RevisionInjectionLabelName = label.IoIstioRev.Name
    )
    
    // Metadata implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/reflect/type.go

    // Embed this type to get common/uncommon
    type common struct {
    	abi.Type
    }
    
    // rtype is the common implementation of most values.
    // It is embedded in other struct types.
    type rtype struct {
    	t abi.Type
    }
    
    func (t *rtype) common() *abi.Type {
    	return &t.t
    }
    
    func (t *rtype) uncommon() *abi.UncommonType {
    	return t.t.Uncommon()
    }
    
    type aNameOff = abi.NameOff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. pkg/kube/kclient/crdwatcher.go

    // Run starts the controller. This must be called.
    func (c *crdWatcher) Run(stop <-chan struct{}) {
    	c.mutex.Lock()
    	if c.stop != nil {
    		// Run already called. Because we call this from client.RunAndWait this isn't uncommon
    		c.mutex.Unlock()
    		return
    	}
    	c.stop = stop
    	c.mutex.Unlock()
    	kube.WaitForCacheSync("crd watcher", stop, c.crds.HasSynced)
    	c.queue.Run(stop)
    	c.crds.ShutdownHandlers()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. cmd/object-api-listobjects_test.go

    		{"test-bucket-list-object", "Asia-maps.png/", "", "/", 1000, resultCases[34], nil, true},
    		// Test listing an object with uncommon delimiter
    		{testBuckets[4], "", "", "guidSplunk", 1000, resultCases[35], nil, true},
    		// Test listing an object with uncommon delimiter and matching prefix
    		{testBuckets[4], "file1/", "", "guidSplunk", 1000, resultCases[35], nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    CI already built this commit -- why should you re-do that work?
    
    === Switching branches
    
    During local development, it is not uncommon to switch branches several times per day.
    This defeats <<incremental_build.adoc#incremental_build,incremental build>> (i.e., `UP-TO-DATE` checks), but this issue is mitigated via use of the local build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/runtime/mfinal.go

    	}
    	fint := ft.InSlice()[0]
    	switch {
    	case fint == etyp:
    		// ok - same type
    		goto okarg
    	case fint.Kind_&abi.KindMask == abi.Pointer:
    		if (fint.Uncommon() == nil || etyp.Uncommon() == nil) && (*ptrtype)(unsafe.Pointer(fint)).Elem == ot.Elem {
    			// ok - not same type, but both pointers,
    			// one or the other is unnamed, and same element type, so assignable.
    			goto okarg
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top