Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 144 for funcdata (0.11 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    	{AMULA, C_REG, C_REG, C_REGREG2, 99, 4, 0, 0, 0, C_SBIT},
    	{AMULAWT, C_REG, C_REG, C_REGREG2, 99, 4, 0, 0, 0, 0},
    	{obj.APCDATA, C_LCON, C_NONE, C_LCON, 0, 0, 0, 0, 0, 0},
    	{obj.AFUNCDATA, C_LCON, C_NONE, C_ADDR, 0, 0, 0, 0, 0, 0},
    	{obj.ANOP, C_NONE, C_NONE, C_NONE, 0, 0, 0, 0, 0, 0},
    	{obj.ANOP, C_LCON, C_NONE, C_NONE, 0, 0, 0, 0, 0, 0}, // nop variants, see #40689
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm/obj5.go

    		}
    		source = &p.From
    	} else if p.To.Name == obj.NAME_EXTERN && !p.To.Sym.Local() {
    		source = &p.To
    	} else {
    		return
    	}
    	if p.As == obj.ATEXT || p.As == obj.AFUNCDATA || p.As == obj.ACALL || p.As == obj.ARET || p.As == obj.AJMP {
    		return
    	}
    	if source.Sym.Type == objabi.STLSBSS {
    		return
    	}
    	if source.Type != obj.TYPE_MEM {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/objz.go

    		}
    		source = &p.From
    	} else if p.To.Name == obj.NAME_EXTERN && !p.To.Sym.Local() {
    		source = &p.To
    	} else {
    		return
    	}
    	if p.As == obj.ATEXT || p.As == obj.AFUNCDATA || p.As == obj.ACALL || p.As == obj.ARET || p.As == obj.AJMP {
    		return
    	}
    	if source.Sym.Type == objabi.STLSBSS {
    		return
    	}
    	if source.Type != obj.TYPE_MEM {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/join.go

    	// sets the data builder function, that will be used by the runner
    	// both when running the entire workflow or single phases
    	joinRunner.SetDataInitializer(func(cmd *cobra.Command, args []string) (workflow.RunData, error) {
    		if cmd.Flags().Lookup(options.NodeCRISocket) == nil {
    			// skip CRI detection
    			// assume that the command execution does not depend on CRISocket when --cri-socket flag is not set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/init.go

    	// sets the data builder function, that will be used by the runner
    	// both when running the entire workflow or single phases
    	initRunner.SetDataInitializer(func(cmd *cobra.Command, args []string) (workflow.RunData, error) {
    		if cmd.Flags().Lookup(options.NodeCRISocket) == nil {
    			// skip CRI detection
    			// assume that the command execution does not depend on CRISocket when --cri-socket flag is not set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. src/encoding/xml/read.go

    					return err
    				}
    			}
    		}
    
    		// Determine whether we need to save character data or comments.
    		for i := range tinfo.fields {
    			finfo := &tinfo.fields[i]
    			switch finfo.flags & fMode {
    			case fCDATA, fCharData:
    				if !saveData.IsValid() {
    					saveData = finfo.value(sv, initNilPointers)
    				}
    
    			case fComment:
    				if !saveComment.IsValid() {
    					saveComment = finfo.value(sv, initNilPointers)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/wasm/wasmobj.go

    			continue
    
    		case ANot:
    			writeOpcode(w, AI32Eqz)
    			continue
    
    		case obj.AUNDEF:
    			writeOpcode(w, AUnreachable)
    			continue
    
    		case obj.ANOP, obj.ATEXT, obj.AFUNCDATA, obj.APCDATA:
    			// ignore
    			continue
    		}
    
    		writeOpcode(w, p.As)
    
    		switch p.As {
    		case ABlock, ALoop, AIf:
    			if p.From.Offset != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/obj7.go

    		}
    		source = &p.From
    	} else if p.To.Name == obj.NAME_EXTERN && !p.To.Sym.Local() {
    		source = &p.To
    	} else {
    		return
    	}
    	if p.As == obj.ATEXT || p.As == obj.AFUNCDATA || p.As == obj.ACALL || p.As == obj.ARET || p.As == obj.AJMP {
    		return
    	}
    	if source.Sym.Type == objabi.STLSBSS {
    		return
    	}
    	if source.Type != obj.TYPE_MEM {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  9. cmd/testdata/decryptObjectInfo.json.zst

    -Sealed-Key":"IAAfAPk6xkOCjGn83fcE+3BNLr8el7rI470NAkPlC+hobNK5g==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/internal/objabi/funcdata.go","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"HmKflxyElkoosKLgH/EKSty7Pf47/rCp33bj6dnvYIk=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfAP...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 29 16:34:20 UTC 2020
    - 164K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    	{as: ALSW, a1: C_ZOREG, a3: C_32CON, a6: C_REG, type_: 42, size: 4},
    
    	{as: obj.AUNDEF, type_: 78, size: 4},
    	{as: obj.APCDATA, a1: C_32CON, a6: C_32CON, type_: 0, size: 0},
    	{as: obj.AFUNCDATA, a1: C_U15CON, a6: C_ADDR, type_: 0, size: 0},
    	{as: obj.ANOP, type_: 0, size: 0},
    	{as: obj.ANOP, a1: C_32CON, type_: 0, size: 0}, // NOP operand variations added for #40689
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top