Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Gotype (0.36 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    	return die
    }
    
    // Define gotype, for composite ones recurse into constituents.
    func (d *dwctxt) defgotype(gotype loader.Sym) loader.Sym {
    	if gotype == 0 {
    		return d.mustFind("<unspecified>")
    	}
    
    	// If we already have a tdmap entry for the gotype, return it.
    	if ds, ok := d.tdmap[gotype]; ok {
    		return ds
    	}
    
    	sn := d.ldr.SymName(gotype)
    	if !strings.HasPrefix(sn, "type:") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    				npad++
    			}
    			ctype += fmt.Sprintf("\t\t%s %s;\n", t.C, name)
    			fmt.Fprintf(gotype, "\t\t%s ", name)
    			noSourceConf.Fprint(gotype, fset, typ)
    			fmt.Fprintf(gotype, "\n")
    			off += t.Size
    		}
    		if fn.Recv != nil {
    			argField(fn.Recv.List[0].Type, "recv")
    		}
    		fntype := fn.Type
    		forFieldList(fntype.Params,
    			func(i int, aname string, atype ast.Expr) {
    				argField(atype, "p%d", i)
    			})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    // ExtReloc contains the payload for an external relocation.
    type ExtReloc struct {
    	Xsym Sym
    	Xadd int64
    	Type objabi.RelocType
    	Size uint8
    }
    
    // Reloc holds a "handle" to access a relocation record from an
    // object file.
    type Reloc struct {
    	*goobj.Reloc
    	r *oReader
    	l *Loader
    }
    
    func (rel Reloc) Type() objabi.RelocType     { return objabi.RelocType(rel.Reloc.Type()) &^ objabi.R_WEAK }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	"9a", "9c", "9g", "9l",
    	"6cov",
    	"6nm",
    	"6prof",
    	"cgo",
    	"ebnflint",
    	"goapi",
    	"gofix",
    	"goinstall",
    	"gomake",
    	"gopack",
    	"gopprof",
    	"gotest",
    	"gotype",
    	"govet",
    	"goyacc",
    	"quietgcc",
    }
    
    // Unreleased directories (relative to $GOROOT) that should
    // not be in release branches.
    var unreleased = []string{
    	"src/cmd/newlink",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/reflect/type.go

    func typeOffFor(t *abi.Type, off aTypeOff) *abi.Type {
    	return toRType(t).typeOff(off)
    }
    
    func (t *interfaceType) typeOff(off aTypeOff) *abi.Type {
    	return toRType(&t.Type).typeOff(off)
    }
    
    func (t *interfaceType) common() *abi.Type {
    	return &t.Type
    }
    
    func (t *interfaceType) uncommon() *abi.UncommonType {
    	return t.Uncommon()
    }
    
    // mapType represents a map type.
    type mapType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    }
    
    // Map contains Type fields specific to maps.
    type Map struct {
    	Key  *Type // Key type
    	Elem *Type // Val (elem) type
    
    	Bucket *Type // internal struct type representing a hash bucket
    }
    
    // MapType returns t's extra map-specific fields.
    func (t *Type) MapType() *Map {
    	t.wantEtype(TMAP)
    	return t.extra.(*Map)
    }
    
    // Forward contains Type fields specific to forward types.
    type Forward struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            rng.uniform(low=0.0, high=1.0, size=static_input_shape).astype(
                np.float32
            )
        )
    
        def data_gen() -> repr_dataset.RepresentativeDataset:
          for _ in range(100):
            yield {
                'input_tensor': rng.uniform(
                    low=0.0, high=1.0, size=static_input_shape
                ).astype(np.float32)
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

                  np.random.uniform(size=bias_shape), dtype=dtypes.float32
              )
    
            self._kernel = np.random.uniform(size=y_shape).astype('f4')
            self._min = (-0.8, -0.8, -0.9)
            self._max = (0.9, 0.9, 1.0)
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
                      name='x', shape=x_signature, dtype=dtypes.float32
                  )
              ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. src/html/template/escape_test.go

    			"a&lt;b",
    		},
    		{
    			"HTML doctype not normalized",
    			"<!DOCTYPE html>Hello, World!",
    			"<!DOCTYPE html>Hello, World!",
    		},
    		{
    			"HTML doctype not case-insensitive",
    			"<!doCtYPE htMl>Hello, World!",
    			"<!doCtYPE htMl>Hello, World!",
    		},
    		{
    			"No doctype injection",
    			`<!{{"DOCTYPE"}}`,
    			"&lt;!DOCTYPE",
    		},
    		{
    			"Split HTML comment",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  10. src/encoding/xml/marshal_test.go

    		"<!DOCTYPE doc [ <!ELEMENT doc \"ANY> '<' <!E\" LEMENT '>' doc ANY> ]>",
    		"<!DOCTYPE doc <!-- just>>>> a < comment --> [ <!ITEM anything> ] >",
    	}
    	testKO := []string{
    		"<",
    		">",
    		"<!--",
    		"-->",
    		"< > > < < >",
    		"<!dummy <!-- > -->",
    		"<!DOCTYPE doc '>",
    		"<!DOCTYPE doc '>'",
    		"<!DOCTYPE doc <!--comment>",
    	}
    	for _, s := range testOK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top