Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for setstruct (0.22 sec)

  1. pkg/scheduler/apis/config/types.go

    	ClientConnection componentbaseconfig.ClientConnectionConfiguration
    
    	// DebuggingConfiguration holds configuration for Debugging related features
    	// TODO: We might wanna make this a substruct like Debugging componentbaseconfig.DebuggingConfiguration
    	componentbaseconfig.DebuggingConfiguration
    
    	// PercentageOfNodesToScore is the percentage of all nodes that once found feasible
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/controlplane/instance.go

    	SecondaryAPIServerServiceIP net.IP
    
    	// Port for the apiserver service.
    	APIServerServicePort int
    
    	// TODO, we can probably group service related items into a substruct to make it easier to configure
    	// the API server items and `Extra*` fields likely fit nicely together.
    
    	// The range of ports to be assigned to services with type=NodePort or greater
    	ServiceNodePortRange utilnet.PortRange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/UserDbm.java

            setupEpg(_epgMap, et -> ((User) et).getState(), (et, vl) -> ((User) et).setState(DfTypeUtil.toString(vl)), "state");
            setupEpg(_epgMap, et -> ((User) et).getStreet(), (et, vl) -> ((User) et).setStreet(DfTypeUtil.toString(vl)), "street");
            setupEpg(_epgMap, et -> ((User) et).getSurname(), (et, vl) -> ((User) et).setSurname(DfTypeUtil.toString(vl)), "surname");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/ureader.go

    		fields[i] = types.NewField(pos, pkg, name, ftyp, embedded)
    		if tag != "" {
    			for len(tags) < i {
    				tags = append(tags, "")
    			}
    			tags = append(tags, tag)
    		}
    	}
    	return types.NewStruct(fields, tags)
    }
    
    func (r *reader) unionType() *types.Union {
    	terms := make([]*types.Term, r.Len())
    	for i := range terms {
    		terms[i] = types.NewTerm(r.Bool(), r.typ())
    	}
    	return types.NewUnion(terms)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/size.go

    			break
    		}
    		w = SliceSize
    		CheckSize(t.Elem())
    		t.align = uint8(PtrSize)
    		t.intRegs = 3
    		t.setAlg(ANOEQ)
    		if !t.Elem().NotInHeap() {
    			t.ptrBytes = int64(PtrSize)
    		}
    
    	case TSTRUCT:
    		if t.IsFuncArgStruct() {
    			base.Fatalf("CalcSize fn struct %v", t)
    		}
    		CalcStructSize(t)
    		w = t.width
    
    	// make fake type to check later to
    	// trigger function argument computation.
    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/internal/gcimporter/iimport.go

    			fname := r.ident()
    			ftyp := r.typ()
    			emb := r.bool()
    			tag := r.string()
    
    			fields[i] = types.NewField(fpos, r.currPkg, fname, ftyp, emb)
    			tags[i] = tag
    		}
    		return types.NewStruct(fields, tags)
    
    	case interfaceType:
    		r.currPkg = r.pkg()
    
    		embeddeds := make([]types.Type, r.uint64())
    		for i := range embeddeds {
    			_ = r.pos()
    			embeddeds[i] = r.typ()
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/value.go

    		// not supported on SSA variables.
    		// TODO: allow if all indexes are constant.
    		if t.NumElem() <= 1 {
    			return CanSSA(t.Elem())
    		}
    		return false
    	case types.TSTRUCT:
    		if t.NumFields() > MaxStruct {
    			return false
    		}
    		for _, t1 := range t.Fields() {
    			if !CanSSA(t1.Type) {
    				return false
    			}
    		}
    		return true
    	default:
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    	m := map[string]interface{}{
    		// logical destination behind the tunnel, on which policy and telemetry will be applied
    		"local": net.JoinHostPort(address, strconv.Itoa(port)),
    	}
    	st, _ := structpb.NewStruct(m)
    	return st
    }
    
    func BuildStatefulSessionFilter(svc *model.Service) *hcm.HttpFilter {
    	filterConfig := MaybeBuildStatefulSessionFilterConfig(svc)
    	if filterConfig == nil {
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/subr.go

    			return ir.OSLICE2ARRPTR, ""
    		}
    	}
    
    	return ir.OXXX, ""
    }
    
    // Code to resolve elided DOTs in embedded types.
    
    // A dlist stores a pointer to a TFIELD Type embedded within
    // a TSTRUCT or TINTER Type.
    type dlist struct {
    	field *types.Field
    }
    
    // dotpath computes the unique shortest explicit selector path to fully qualify
    // a selection expression x.f, where x is of type t and f is the symbol s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    		clobberPtr(b, v, offset)
    
    	case types.TARRAY:
    		for i := int64(0); i < t.NumElem(); i++ {
    			clobberWalk(b, v, offset+i*t.Elem().Size(), t.Elem())
    		}
    
    	case types.TSTRUCT:
    		for _, t1 := range t.Fields() {
    			clobberWalk(b, v, offset+t1.Offset, t1.Type)
    		}
    
    	default:
    		base.Fatalf("clobberWalk: unexpected type, %v", t)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top