Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 238 for sP (0.08 sec)

  1. pkg/kubelet/envvars/envvars.go

    		// All named ports (only the first may be unnamed, checked in validation)
    		for i := range service.Spec.Ports {
    			sp := &service.Spec.Ports[i]
    			if sp.Name != "" {
    				pn := name + "_" + makeEnvVariableName(sp.Name)
    				result = append(result, v1.EnvVar{Name: pn, Value: strconv.Itoa(int(sp.Port))})
    			}
    		}
    		// Docker-compatible vars.
    		result = append(result, makeLinkVariables(service)...)
    	}
    	return result
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/filter/filter.go

    func matchesSelectionSpec(sp *config.SelectionSpec, cluster *cluster2.Resources, namespace, deployment, pod, container string) bool {
    	// For inclusion, match all if nothing is set.
    	if !match.MatchesGlobs(namespace, sp.Namespaces) {
    		return false
    	}
    
    	if !match.MatchesGlobs(deployment, sp.Deployments) {
    		return false
    	}
    
    	if !match.MatchesGlobs(pod, sp.Pods) && len(sp.Pods) != 0 {
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. src/syscall/asm_plan9_386.s

    	// copy args down
    	LEAL	a1+4(FP), SI
    	LEAL	sysargs-144(SP), DI
    	CLD
    	MOVSL
    	MOVSL
    	MOVSL
    	INT	$64
    	MOVL	AX, r1+16(FP)
    	MOVL	$0, r2+20(FP)
    	CMPL	AX, $-1
    	JNE	ok3
    
    	LEAL	errbuf-128(SP), AX
    	MOVL	AX, sysargs-144(SP)
    	MOVL	$128, sysargs1-140(SP)
    	MOVL	$SYS_ERRSTR, AX
    	INT	$64
    	CALL	runtime·exitsyscall(SB)
    	MOVL	sysargs-144(SP), AX
    	MOVL	AX, errbuf-148(SP)
    	CALL	runtime·gostring(SB)
    	LEAL	str-144(SP), SI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 15:28:51 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/allocators.go

    		s = make([]*Value, 1<<b)
    	} else {
    		sp := v.(*[]*Value)
    		s = *sp
    		*sp = nil
    		c.hdrValueSlice = append(c.hdrValueSlice, sp)
    	}
    	s = s[:n]
    	return s
    }
    func (c *Cache) freeValueSlice(s []*Value) {
    	for i := range s {
    		s[i] = nil
    	}
    	b := bits.Len(uint(cap(s)) - 1)
    	var sp *[]*Value
    	if len(c.hdrValueSlice) == 0 {
    		sp = new([]*Value)
    	} else {
    		sp = c.hdrValueSlice[len(c.hdrValueSlice)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. src/runtime/asan_amd64.s

    // func runtime·doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    TEXT	runtime·doasanread(SB), NOSPLIT, $0-32
    	MOVQ	addr+0(FP), RARG0
    	MOVQ	sz+8(FP), RARG1
    	MOVQ	sp+16(FP), RARG2
    	MOVQ	pc+24(FP), RARG3
    	// void __asan_read_go(void *addr, uintptr_t sz, void *sp, void *pc);
    	MOVQ	$__asan_read_go(SB), AX
    	JMP	asancall<>(SB)
    
    // func runtime·doasanwrite(addr unsafe.Pointer, sz, sp, pc uintptr)
    TEXT	runtime·doasanwrite(SB), NOSPLIT, $0-32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 02:20:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. pkg/kubelet/server/stats/summary.go

    func (sp *summaryProviderImpl) GetCPUAndMemoryStats(ctx context.Context) (*statsapi.Summary, error) {
    	// TODO(timstclair): Consider returning a best-effort response if any of
    	// the following errors occur.
    	node, err := sp.provider.GetNode()
    	if err != nil {
    		return nil, fmt.Errorf("failed to get node info: %v", err)
    	}
    	nodeConfig := sp.provider.GetNodeConfig()
    	rootStats, err := sp.provider.GetCgroupCPUAndMemoryStats("/", false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. src/runtime/signal_loong64.go

    	// Push the LR to stack, as we'll clobber it in order to
    	// push the call. The function being pushed is responsible
    	// for restoring the LR and setting the SP back.
    	// This extra slot is known to gentraceback.
    	sp := c.sp() - 8
    	c.set_sp(sp)
    	*(*uint64)(unsafe.Pointer(uintptr(sp))) = c.link()
    	// Set up PC and LR to pretend the function being signaled
    	// calls targetPC at resumePC.
    	c.set_link(uint64(resumePC))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/runtime/signal_riscv64.go

    	// Push the LR to stack, as we'll clobber it in order to
    	// push the call. The function being pushed is responsible
    	// for restoring the LR and setting the SP back.
    	// This extra slot is known to gentraceback.
    	sp := c.sp() - goarch.PtrSize
    	c.set_sp(sp)
    	*(*uint64)(unsafe.Pointer(uintptr(sp))) = c.ra()
    	// Set up PC and LR to pretend the function being signaled
    	// calls targetPC at resumePC.
    	c.set_ra(uint64(resumePC))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. src/runtime/signal_arm.go

    	// Push the LR to stack, as we'll clobber it in order to
    	// push the call. The function being pushed is responsible
    	// for restoring the LR and setting the SP back.
    	// This extra slot is known to gentraceback.
    	sp := c.sp() - 4
    	c.set_sp(sp)
    	*(*uint32)(unsafe.Pointer(uintptr(sp))) = c.lr()
    	// Set up PC and LR to pretend the function being signaled
    	// calls targetPC at resumePC.
    	c.set_lr(uint32(resumePC))
    	c.set_pc(uint32(targetPC))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	MOV	$8(SP), (X5)			// ERROR "address load must target register"
    	MOVB	$8(SP), X5			// ERROR "unsupported address load"
    	MOVH	$8(SP), X5			// ERROR "unsupported address load"
    	MOVW	$8(SP), X5			// ERROR "unsupported address load"
    	MOVF	$8(SP), X5			// ERROR "unsupported address load"
    	MOV	$1234, 0(SP)			// ERROR "constant load must target register"
    	MOV	$1234, 8(SP)			// ERROR "constant load must target register"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top