Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for _typ (0.09 sec)

  1. src/net/dnsclient_unix_test.go

    	}
    }
    
    func lookupWithFake(fake fakeDNSServer, name string, typ dnsmessage.Type) error {
    	r := Resolver{PreferGo: true, Dial: fake.DialContext}
    
    	conf := getSystemDNSConfig()
    
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	_, _, err := r.tryOneName(ctx, conf, name, typ)
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	MOVQ 152(R12), X10
    	MOVQ 160(R12), X11
    	MOVQ 168(R12), X12
    	MOVQ 176(R12), X13
    	MOVQ 184(R12), X14
    	RET
    
    // reflectcall: call a function with the given argument list
    // func call(stackArgsType *_type, f *FuncVal, stackArgs *byte, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs).
    // we don't have variable-sized frames, so we use a small number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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)
Back to top