Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NewTypes (0.09 sec)

  1. pkg/config/validation/envoyfilter/envoyfilter.go

    						deprecatedTypes = append(deprecatedTypes, anyMessage.TypeUrl)
    					}
    				}
    			}
    			newTypes, err := recurseDeprecatedTypes(m)
    			if err != nil {
    				topError = err
    				return false
    			}
    			deprecatedTypes = append(deprecatedTypes, newTypes...)
    		}
    		return true
    	})
    	return deprecatedTypes, topError
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/config.go

    	Int32Ptr   *types.Type
    	UInt32Ptr  *types.Type
    	IntPtr     *types.Type
    	UintptrPtr *types.Type
    	Float32Ptr *types.Type
    	Float64Ptr *types.Type
    	BytePtrPtr *types.Type
    }
    
    // NewTypes creates and populates a Types.
    func NewTypes() *Types {
    	t := new(Types)
    	t.SetTypPtrs()
    	return t
    }
    
    // SetTypPtrs populates t.
    func (t *Types) SetTypPtrs() {
    	t.Bool = types.Types[types.TBOOL]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    			ssaDumpStdout = true
    		}
    		spl := strings.Split(ssaDump, ":")
    		if len(spl) > 1 {
    			ssaDump = spl[0]
    			ssaDumpCFG = spl[1]
    		}
    	}
    }
    
    func InitConfig() {
    	types_ := ssa.NewTypes()
    
    	if Arch.SoftFloat {
    		softfloatInit()
    	}
    
    	// Generate a few pointer types that are uncommon in the frontend but common in the backend.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top