Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,080 for Field2 (0.16 sec)

  1. src/cmd/compile/internal/types2/sizes.go

    		obj.Pkg() != nil &&
    		(obj.Pkg().Path() == "sync/atomic" ||
    			obj.Pkg().Path() == "internal/runtime/atomic")
    }
    
    func (s *StdSizes) Offsetsof(fields []*Var) []int64 {
    	offsets := make([]int64, len(fields))
    	var offs int64
    	for i, f := range fields {
    		if offs < 0 {
    			// all remaining offsets are too large
    			offsets[i] = -1
    			continue
    		}
    		// offs >= 0
    		a := s.Alignof(f.typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/go/types/gcsizes.go

    	if isComplex(T) {
    		a /= 2
    	}
    	if a > s.MaxAlign {
    		return s.MaxAlign
    	}
    	return a
    }
    
    func (s *gcSizes) Offsetsof(fields []*Var) []int64 {
    	offsets := make([]int64, len(fields))
    	var offs int64
    	for i, f := range fields {
    		if offs < 0 {
    			// all remaining offsets are too large
    			offsets[i] = -1
    			continue
    		}
    		// offs >= 0
    		a := s.Alignof(f.typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/manager.go

    type Managed interface {
    	// Fields gets the fieldpath.ManagedFields.
    	Fields() fieldpath.ManagedFields
    
    	// Times gets the timestamps associated with each operation.
    	Times() map[string]*metav1.Time
    }
    
    // Manager updates the managed fields and merges applied configurations.
    type Manager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. src/mdo/model-version.vm

                #elseif ( $field.isOneMultiplicity() )
                $pfx is_${v}(${var}.get${Helper.capitalise($field.name)}()) // ${class.name} : ${field.name}
                #elseif ( $field.type == "boolean" || $field.type == "Boolean" )
                $pfx has(${var}.is${Helper.capitalise($field.name)}()) // ${class.name} : ${field.name}
                #else
                $pfx has(${var}.get${Helper.capitalise($field.name)}()) // ${class.name} : ${field.name}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/size.go

    	if t.Noalg() {
    		t.setAlg(ANOALG)
    	}
    	if len(fields) == 1 && !fields[0].Sym.IsBlank() {
    		// One-field struct is same as that one field alone.
    		t.setAlg(fields[0].Type.alg)
    	} else {
    		for i, f := range fields {
    			a := f.Type.alg
    			switch a {
    			case ANOEQ, ANOALG:
    			case AMEM:
    				// Blank fields and padded fields need a special compare.
    				if f.Sym.IsBlank() || IsPaddedField(t, i) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/go/types/sizes.go

    		obj.Pkg() != nil &&
    		(obj.Pkg().Path() == "sync/atomic" ||
    			obj.Pkg().Path() == "internal/runtime/atomic")
    }
    
    func (s *StdSizes) Offsetsof(fields []*Var) []int64 {
    	offsets := make([]int64, len(fields))
    	var offs int64
    	for i, f := range fields {
    		if offs < 0 {
    			// all remaining offsets are too large
    			offsets[i] = -1
    			continue
    		}
    		// offs >= 0
    		a := s.Alignof(f.typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. pkg/registry/storagemigration/storagemigration/strategy.go

    	return false
    }
    
    // GetResetFields returns the set of fields that get reset by the strategy
    // and should not be modified by the user.
    func (strategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"storagemigration.k8s.io/v1alpha1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    
    	return fields
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/gcsizes.go

    	if isComplex(T) {
    		a /= 2
    	}
    	if a > s.MaxAlign {
    		return s.MaxAlign
    	}
    	return a
    }
    
    func (s *gcSizes) Offsetsof(fields []*Var) []int64 {
    	offsets := make([]int64, len(fields))
    	var offs int64
    	for i, f := range fields {
    		if offs < 0 {
    			// all remaining offsets are too large
    			offsets[i] = -1
    			continue
    		}
    		// offs >= 0
    		a := s.Alignof(f.typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/equality.go

    	//		then
    	//	revert any changes to timestamps in managed fields
    	//		(to prevent spurious ResourceVersion bump)
    	//
    	// Procecure:
    	// Do a quicker check to see if just managed fields modulo timestamps are
    	//	unchanged. If so, then do the full, slower check.
    	//
    	// In most cases which actually update the object, the managed fields modulo
    	//	timestamp check will fail, and we will be able to return early.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 14:56:34 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  10. src/go/doc/testdata/e.0.golden

    	type T1 struct {
    		// contains filtered or unexported fields
    	}
    
    	// T2 has only M as top-level method. 
    	type T2 struct {
    		// contains filtered or unexported fields
    	}
    
    	// T2.M should appear as method of T2. 
    	func (T2) M()
    
    	// T3 has only M as top-level method. 
    	type T3 struct {
    		// contains filtered or unexported fields
    	}
    
    	// T3.M should appear as method of T3. 
    	func (T3) M()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
Back to top