Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rsl (0.02 sec)

  1. pkg/scheduler/framework/plugins/helper/spread.go

    // Controllers, Replica Sets, and Stateful Sets matching the given pod.
    func DefaultSelector(
    	pod *v1.Pod,
    	sl corelisters.ServiceLister,
    	cl corelisters.ReplicationControllerLister,
    	rsl appslisters.ReplicaSetLister,
    	ssl appslisters.StatefulSetLister,
    ) labels.Selector {
    	labelSet := make(labels.Set)
    	// Since services, RCs, RSs and SSs match the pod, they won't have conflicting
    	// labels. Merging is safe.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 20:04:48 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/serialize.go

    	for i := range funcProps.ResultFlags {
    		v, sl = readULEB128(sl)
    		funcProps.ResultFlags[i] = ResultPropBits(v)
    	}
    	return &funcProps
    }
    
    func readULEB128(sl []byte) (value uint64, rsl []byte) {
    	var shift uint
    
    	for {
    		b := sl[0]
    		sl = sl[1:]
    		value |= (uint64(b&0x7F) << shift)
    		if b&0x80 == 0 {
    			break
    		}
    		shift += 7
    	}
    	return value, sl
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:02:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader_test.go

    	// First relocations...
    	expRel := [][]Reloc{{r1, r2}, {r3}}
    	for k, sb := range []*SymbolBuilder{sb1, sb2} {
    		rsl := sb.Relocs()
    		exp := expRel[k]
    		if !sameRelocSlice(&rsl, exp) {
    			t.Errorf("expected relocs %v, got %v", exp, rsl)
    		}
    	}
    
    	// ... then data.
    	dat := sb2.Data()
    	if !bytes.Equal(dat, d2) {
    		t.Errorf("expected es2 data %v, got %v", d2, dat)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	op_BRRK    uint32 = 0x0001 // FORMAT_E          BREAKPOINT
    
    	// added in z13
    	op_CXPT   uint32 = 0xEDAF // 	RSL-b	CONVERT FROM PACKED (to extended DFP)
    	op_CDPT   uint32 = 0xEDAE // 	RSL-b	CONVERT FROM PACKED (to long DFP)
    	op_CPXT   uint32 = 0xEDAD // 	RSL-b	CONVERT TO PACKED (from extended DFP)
    	op_CPDT   uint32 = 0xEDAC // 	RSL-b	CONVERT TO PACKED (from long DFP)
    	op_LZRF   uint32 = 0xE33B // 	RXY-a	LOAD AND ZERO RIGHTMOST BYTE (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top