Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 137 of 137 for _typ (0.15 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    // a register. It assumes float64 values will always fit into registers
    // even if that isn't strictly true.
    func registerizable(b *Block, typ *types.Type) bool {
    	if typ.IsPtrShaped() || typ.IsFloat() || typ.IsBoolean() {
    		return true
    	}
    	if typ.IsInteger() {
    		return typ.Size() <= b.Func.Config.RegSize
    	}
    	return false
    }
    
    // needRaceCleanup reports whether this call to racefuncenter/exit isn't needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. docs/bucket/notifications/README.md

        "total" : 5,
        "successful" : 5,
        "failed" : 0
      },
      "hits" : {
        "total" : 1,
        "max_score" : 1.0,
        "hits" : [
          {
            "_index" : "minio_events",
            "_type" : "event",
            "_id" : "images/myphoto.jpg",
            "_score" : 1.0,
            "_source" : {
              "Records" : [
                {
                  "eventVersion" : "2.0",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	testType(t, 2, TypeOf((*int8)(nil)).Elem(), "int8")
    
    	typ := TypeOf((*struct {
    		c chan *int32
    		d float32
    	})(nil))
    	testType(t, 3, typ, "*struct { c chan *int32; d float32 }")
    	etyp := typ.Elem()
    	testType(t, 4, etyp, "struct { c chan *int32; d float32 }")
    	styp := etyp
    	f := styp.Field(0)
    	testType(t, 5, f.Type, "chan *int32")
    
    	f, present := styp.FieldByName("d")
    	if !present {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      auto _shape = _o->shape.size() ? _fbb.CreateVector(_o->shape) : 0;
      auto _type = _o->type;
      auto _has_rank = _o->has_rank;
      return tflite::CreateVariantSubType(
          _fbb,
          _shape,
          _type,
          _has_rank);
    }
    
    inline TensorT::TensorT(const TensorT &o)
          : shape(o.shape),
            type(o.type),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    					break
    				}
    				fatalf("malformed DWARF TagVariable entry")
    			}
    			if !strings.HasPrefix(name, "__cgo__") {
    				break
    			}
    			typ, err := d.Type(typOff)
    			if err != nil {
    				fatalf("loading DWARF type: %s", err)
    			}
    			t, ok := typ.(*dwarf.PtrType)
    			if !ok || t == nil {
    				fatalf("internal error: %s has non-pointer type", name)
    			}
    			i, err := strconv.Atoi(name[7:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="skip\000" type="string" offset="4"/>
          <match value="pnot\000" type="string" offset="4"/>
          <!-- General Atom match, specific ftypXXX ones present for subtypes -->
          <match value="ftyp" type="string" offset="4"/>
          <!-- Common starting Atoms of fixed size -->
          <match value="\x00\x00\x00\x08wide" type="string" offset="0"/>
        </magic>
        <glob pattern="*.qt"/>
        <glob pattern="*.mov"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    E_'+name},JS_OBJECTS:{match:full=>full.startsWith('JS_'),keyToName:key=>key,nameToKey:name=>name},Strings:{match:full=>full.endsWith('STRING_TYPE'),keyToName:key=>key,nameToKey:name=>name},Maps:{match:full=>full.startsWith('MAP_')&&full.endsWith('_TYPE'),keyToName:key=>key,nameToKey:name=>name},DescriptorArrays:{match:full=>full.endsWith('DESCRIPTOR_ARRAY_TYPE'),keyToName:key=>key,nameToKey:name=>name}};const DIFF_COLOR={GREEN:'#64DD17',RED:'#D50000'};function computePercentage(valueA,valueB){if(valueA===0)return...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top