Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,851 for locals (0.2 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    		if stacksize == 0 {
    			// A leaf function with no locals has no frame.
    			text.From.Sym.Set(obj.AttrNoFrame, true)
    		}
    	}
    
    	// Save LR unless there is no frame.
    	if !text.From.Sym.NoFrame() {
    		stacksize += ctxt.Arch.FixedFrameSize
    	}
    
    	cursym.Func().Args = text.To.Val.(int32)
    	cursym.Func().Locals = int32(stacksize)
    
    	prologue := text
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/cmd/go/internal/gover/local.go

    // go command's idea of its own version as returned by Local.
    var TestVersion string
    
    // Local returns the local Go version, the one implemented by this go command.
    func Local() string {
    	v, _ := local()
    	return v
    }
    
    // LocalToolchain returns the local toolchain name, the one implemented by this go command.
    func LocalToolchain() string {
    	_, t := local()
    	return t
    }
    
    func local() (goVers, toolVers string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:20:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/runtime/asm_386.s

    	// Stores are already ordered on x86, so this is just a
    	// compile barrier.
    	RET
    
    // Save state of caller into g->sched,
    // but using fake PC from systemstack_switch.
    // Must only be called from functions with no locals ($0)
    // or else unwinding from systemstack_switch is incorrect.
    TEXT gosave_systemstack_switch<>(SB),NOSPLIT,$0
    	PUSHL	AX
    	PUSHL	BX
    	get_tls(BX)
    	MOVL	g(BX), BX
    	LEAL	arg+0(FP), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. pkg/volume/local/local.go

    	if spec.PersistentVolume.Spec.Local == nil || len(spec.PersistentVolume.Spec.Local.Path) == 0 {
    		return fmt.Errorf("local volume source is nil or local path is not set")
    	}
    	fileType, err := dm.hostUtil.GetFileType(spec.PersistentVolume.Spec.Local.Path)
    	if err != nil {
    		return err
    	}
    
    	switch fileType {
    	case hostutil.FileTypeBlockDev:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/etcd/local.go

    		return err
    	}
    
    	klog.V(1).Infof("[etcd] wrote Static Pod manifest for a local etcd member to %q\n", kubeadmconstants.GetStaticPodFilepath(kubeadmconstants.Etcd, manifestDir))
    	return nil
    }
    
    // CheckLocalEtcdClusterStatus verifies health state of local/stacked etcd cluster before installing a new etcd member
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  6. src/runtime/asm_ppc64x.s

    	BNE	again
    	OR	R6, R6, R6	// Set PPR priority back to medium-low
    	RET
    
    // Save state of caller into g->sched,
    // but using fake PC from systemstack_switch.
    // Must only be called from functions with no locals ($0)
    // or else unwinding from systemstack_switch is incorrect.
    // Smashes R31.
    TEXT gosave_systemstack_switch<>(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$runtime·systemstack_switch(SB), R31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/local/local.go

     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
    */
    
    package local
    
    import (
    	"istio.io/istio/pkg/config/analysis/diag"
    )
    
    const (
    	meshConfigMapKey   = "mesh"
    	meshConfigMapName  = "istio"
    	meshNetworksMapKey = "meshNetworks"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 20:21:54 UTC 2023
    - 984 bytes
    - Viewed (0)
  8. src/runtime/asm_arm64.s

    again:
    	YIELD
    	SUBW	$1, R0
    	CBNZ	R0, again
    	RET
    
    // Save state of caller into g->sched,
    // but using fake PC from systemstack_switch.
    // Must only be called from functions with no locals ($0)
    // or else unwinding from systemstack_switch is incorrect.
    // Smashes R0.
    TEXT gosave_systemstack_switch<>(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$runtime·systemstack_switch(SB), R0
    	ADD	$8, R0	// get past prologue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    		for i := len(po) - 1; i >= 0; i-- {
    			b := po[i]
    			locs := blockLocs[b.ID]
    			if locs == nil {
    				locs = state.allocBlock(b)
    				blockLocs[b.ID] = locs
    			}
    
    			// Build the starting state for the block from the final
    			// state of its predecessors.
    			startState, blockChanged := state.mergePredecessors(b, blockLocs, nil, false)
    			locs.lastCheckedTime = counterTime
    			counterTime++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    						if reloc.Type() == objabi.R_USEIFACE {
    							d.defgotype(reloc.Sym())
    						}
    					}
    				}
    			}
    			continue
    		}
    		// Skip file local symbols (this includes static tmps, stack
    		// object symbols, and local symbols in assembler src files).
    		if d.ldr.IsFileLocal(idx) {
    			continue
    		}
    
    		// Find compiler-generated DWARF info sym for global in question,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top