Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for link66 (0.18 sec)

  1. src/cmd/go/internal/load/pkg.go

    }
    
    // LinkerDeps returns the list of linker-induced dependencies for main package p.
    func LinkerDeps(p *Package) ([]string, error) {
    	// Everything links runtime.
    	deps := []string{"runtime"}
    
    	// External linking mode forces an import of runtime/cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    						//     NEXT_INSN
    						q = c.newprog()
    						q.Link = p.Link
    						p.Link = q
    						q.As = ABR
    						q.To.Type = obj.TYPE_BRANCH
    						q.To.SetTarget(p.To.Target())
    						p.To.SetTarget(q)
    						q = c.newprog()
    						q.Link = p.Link
    						p.Link = q
    						q.As = ABR
    						q.To.Type = obj.TYPE_BRANCH
    						q.To.SetTarget(q.Link.Link)
    					}
    					bflag = 1
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. cmd/testdata/decryptObjectInfo.json.zst

    ealed-Key":"IAAfAL3PpOU0gQ852N4R+Z/Ikr4v4fBVYDBirB1/z5DWb6SbJyHDwHbdPXsG==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/link/internal/ld/link.go","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"loHEDxtTkQTnopsxI7As=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfALkaT60z64u87zdL+az...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 29 16:34:20 UTC 2020
    - 164K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    				}
    				if toofar {
    					q := c.newprog()
    					q.Link = p.Link
    					p.Link = q
    					q.As = AB
    					q.To.Type = obj.TYPE_BRANCH
    					q.To.SetTarget(p.To.Target())
    					p.To.SetTarget(q)
    					q = c.newprog()
    					q.Link = p.Link
    					p.Link = q
    					q.As = AB
    					q.To.Type = obj.TYPE_BRANCH
    					q.To.SetTarget(q.Link.Link)
    					bflag = 1
    				}
    			}
    			m = o.size(c.ctxt, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    	if p.As == AXRELEASE || p.As == AXACQUIRE {
    		fusedSize += p.Isize
    		for p = p.Link; p != nil && (p.As == obj.APCDATA || p.As == obj.AFUNCDATA); p = p.Link {
    		}
    		if p == nil {
    			return false, 0
    		}
    	}
    	if p.As == ALOCK {
    		fusedSize += p.Isize
    		for p = p.Link; p != nil && (p.As == obj.APCDATA || p.As == obj.AFUNCDATA); p = p.Link {
    		}
    		if p == nil {
    			return false, 0
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/reflect/value.go

    // The remainder of the MakeFunc implementation is in makefunc.go.
    //
    // NOTE: This function must be marked as a "wrapper" in the generated code,
    // so that the linker can make it work correctly for panic and recover.
    // The gc compilers know to do that for the name "reflect.callReflect".
    //
    // ctxt is the "closure" generated by MakeFunc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    var oprange [ALAST & obj.AMask][]Optab
    
    var xcmp [C_NCLASS][C_NCLASS]bool
    
    func spanz(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	if ctxt.Retpoline {
    		ctxt.Diag("-spectre=ret not supported on s390x")
    		ctxt.Retpoline = false // don't keep printing
    	}
    
    	p := cursym.Func().Text
    	if p == nil || p.Link == nil { // handle external functions and ELF section symbols
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

        * Fixed performance regression in veth device driver
        * Docker and related binaries are statically linked
        * Fixed the issue of systemd being oom-killable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.5.md

        * Fixed performance regression in veth device driver
        * Docker and related binaries are statically linked
        * Fixed the issue of systemd being oom-killable
    * Move HighWaterMark to the top of the struct in order to fix arm ([#33117](https://github.com/kubernetes/kubernetes/pull/33117), [@luxas](https://github.com/luxas))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Wrapper Op for TF custom ops.";
    
      let description = [{
        A wrapper op around any Custom TF op. These includes ops defined using
        custom_opdefs or linked which are not defined in TF dialect.
        This Op just wraps the custom op inside a region.
        Note #1, this Op will not include TF Lite custom ops defined using CustomOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top