Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for indexPods (0.14 sec)

  1. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	pods, err := p.ListPodStats(ctx)
    	assert.NoError(t, err)
    
    	assert.Equal(t, 4, len(pods))
    	indexPods := make(map[statsapi.PodReference]statsapi.PodStats, len(pods))
    	for _, pod := range pods {
    		indexPods[pod.PodRef] = pod
    	}
    
    	// Validate Pod0 Results
    	ps, found := indexPods[prf0]
    	assert.True(t, found)
    	assert.Len(t, ps.Containers, 2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. src/internal/bytealg/index_arm64.s

    	MOVD	a_base+0(FP), R0
    	MOVD	a_len+8(FP), R1
    	MOVD	b_base+24(FP), R2
    	MOVD	b_len+32(FP), R3
    	MOVD	$ret+48(FP), R9
    	B	indexbody<>(SB)
    
    TEXT ·IndexString(SB),NOSPLIT,$0-40
    	MOVD	a_base+0(FP), R0
    	MOVD	a_len+8(FP), R1
    	MOVD	b_base+16(FP), R2
    	MOVD	b_len+24(FP), R3
    	MOVD	$ret+32(FP), R9
    	B	indexbody<>(SB)
    
    // input:
    //   R0: haystack
    //   R1: length of haystack
    //   R2: needle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 23 15:54:07 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  3. src/internal/bytealg/index_amd64.s

    	MOVQ a_len+8(FP), DX
    	MOVQ b_base+24(FP), R8
    	MOVQ b_len+32(FP), AX
    	MOVQ DI, R10
    	LEAQ ret+48(FP), R11
    	JMP  indexbody<>(SB)
    
    TEXT ·IndexString(SB),NOSPLIT,$0-40
    	MOVQ a_base+0(FP), DI
    	MOVQ a_len+8(FP), DX
    	MOVQ b_base+16(FP), R8
    	MOVQ b_len+24(FP), AX
    	MOVQ DI, R10
    	LEAQ ret+32(FP), R11
    	JMP  indexbody<>(SB)
    
    // AX: length of string, that we are searching for
    // DX: length of string, in which we are searching
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:20:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/internal/bytealg/index_s390x.s

    	LMG	b_base+24(FP), R3, R4 // R3=&sep[0], R4=len(sep)
    	MOVD	$ret+48(FP), R5
    	BR	indexbody<>(SB)
    
    // Caller must confirm availability of vx facility before calling.
    TEXT ·IndexString(SB),NOSPLIT|NOFRAME,$0-40
    	LMG	a_base+0(FP), R1, R2  // R1=&s[0],   R2=len(s)
    	LMG	b_base+16(FP), R3, R4 // R3=&sep[0], R4=len(sep)
    	MOVD	$ret+32(FP), R5
    	BR	indexbody<>(SB)
    
    // s: string we are searching
    // sep: string to search for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 04 19:49:44 UTC 2018
    - 5.5K bytes
    - Viewed (0)
  5. src/internal/bytealg/index_ppc64x.s

    #endif
    power8:
    	BR indexbody<>(SB)
    
    TEXT ·IndexString<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-40
    	// R3 = string
    	// R4 = length
    	// R5 = separator pointer
    	// R6 = separator length
    
    #ifdef GOARCH_ppc64le
    	MOVBZ internal∕cpu·PPC64+const_offsetPPC64HasPOWER9(SB), R7
    	CMP   R7, $1
    	BNE   power8
    	BR    indexbodyp9<>(SB)
    
    #endif
    power8:
    	BR indexbody<>(SB)
    
    	// s: string we are searching
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			}
    			if preFilterStatus.IsSkip() {
    				return
    			}
    			for indexNode, node := range test.nodes {
    				nodeInfo := mustGetNodeInfo(t, snapshot, node.Name)
    				gotStatus := p.(framework.FilterPlugin).Filter(ctx, state, test.pod, nodeInfo)
    				if diff := cmp.Diff(gotStatus, test.wantFilterStatuses[indexNode]); diff != "" {
    					t.Errorf("index: %d: Filter: status does not match (-want,+got):\n%s", indexTest, diff)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
Back to top