Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for LAY (0.33 sec)

  1. cmd/kubelet/app/server.go

    		// to request new certs, we will be unable to continue normal operation. Exiting the process allows a wrapper
    		// or the bootstrapping credentials to potentially lay down new initial config.
    		closeAllConns, err := kubeletcertificate.UpdateTransport(wait.NeverStop, transportConfig, clientCertificateManager, 5*time.Minute)
    		if err != nil {
    			return nil, nil, err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    	relocs := ldr.Relocs(s)
    	r := relocs.At(ri)
    	var t int64
    	// ldr.SymValue(rs) == 0 indicates a cross-package jump to a function that is not yet
    	// laid out. Conservatively use a trampoline. This should be rare, as we lay out packages
    	// in dependency order.
    	if ldr.SymValue(rs) != 0 {
    		t = ldr.SymValue(rs) + r.Add() - (ldr.SymValue(s) + int64(r.Off()))
    	}
    	switch r.Type() {
    	case objabi.R_CALLPOWER:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/mips/asm0.go

    				continue
    			}
    
    			pc += int64(m)
    		}
    
    		c.cursym.Size = pc
    	}
    	if c.ctxt.Arch.Family == sys.MIPS64 {
    		pc += -pc & (mips64FuncAlign - 1)
    	}
    	c.cursym.Size = pc
    
    	/*
    	 * lay out the code, emitting code and data relocations.
    	 */
    
    	c.cursym.Grow(c.cursym.Size)
    
    	bp := c.cursym.P
    	var i int32
    	var out [4]uint32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    				}
    			}
    
    			pc += int64(m)
    		}
    
    		c.cursym.Size = pc
    
    		if !rescan {
    			break
    		}
    	}
    
    	pc += -pc & (FuncAlign - 1)
    	c.cursym.Size = pc
    
    	// lay out the code, emitting code and data relocations.
    
    	c.cursym.Grow(c.cursym.Size)
    
    	bp := c.cursym.P
    	var i int32
    	var out [5]uint32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	} else if target.IsDarwin() {
    		leg := ldr.MakeSymbolUpdater(syms.LinkEditGOT)
    		leg.AddUint32(target.Arch, uint32(ldr.SymDynid(s)))
    		if target.IsPIE() && target.IsInternal() {
    			// Mach-O relocations are a royal pain to lay out.
    			// They use a compact stateful bytecode representation.
    			// Here we record what are needed and encode them later.
    			MachoAddBind(int64(ldr.SymGot(s)), s)
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/asm5.go

    				continue
    			}
    		}
    
    		c.cursym.Size = int64(pc)
    		if bflag == 0 {
    			break
    		}
    	}
    
    	if pc%4 != 0 {
    		ctxt.Diag("sym->size=%d, invalid", pc)
    	}
    
    	/*
    	 * lay out the code.  all the pc-relative code references,
    	 * even cross-function, are resolved now;
    	 * only data references need to be relocated.
    	 * with more work we could leave cross-function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top