Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 98 for intp (0.04 sec)

  1. pkg/kubelet/pod_workers_test.go

    				deleted:            true,
    				activeUpdate: &UpdatePodOptions{
    					Pod:            withDeletionTimestamp(newNamedPod("1", "ns", "running-pod", false), time.Unix(1, 0), intp(15)),
    					KillPodOptions: &KillPodOptions{PodTerminationGracePeriodSecondsOverride: intp(15)},
    				},
    			}),
    			expectKnownTerminated: true,
    		},
    		{
    			name: "a running pod is terminated when an eviction is requested",
    			update: UpdatePodOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    		{Name(""), nil, `null`, nil},
    		{Name(""), new(int), `null`, nil},
    		{Name(""), (*int)(nil), `null`, nil},
    		{Name(""), new(*int), `null`, new(*int)},
    		{Name(""), (**int)(nil), `null`, nil},
    		{Name(""), intp(1), `null`, nil},
    		{Name(""), intpp(nil), `null`, intpp(nil)},
    		{Name(""), intpp(intp(1)), `null`, intpp(nil)},
    	}
    	for _, tt := range tests {
    		t.Run(tt.Name, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (ROLQ x (MOV(Q|L)const [c])) => (ROLQconst [int8(c&63)] x)
    (ROLL x (MOV(Q|L)const [c])) => (ROLLconst [int8(c&31)] x)
    (ROLW x (MOV(Q|L)const [c])) => (ROLWconst [int8(c&15)] x)
    (ROLB x (MOV(Q|L)const [c])) => (ROLBconst [int8(c&7) ] x)
    
    (RORQ x (MOV(Q|L)const [c])) => (ROLQconst [int8((-c)&63)] x)
    (RORL x (MOV(Q|L)const [c])) => (ROLLconst [int8((-c)&31)] x)
    (RORW x (MOV(Q|L)const [c])) => (ROLWconst [int8((-c)&15)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Match (x >> c) << d to 'rotate then insert selected bits [into zero]'.
    (SLDconst (SRDconst x [c]) [d]) => (RISBGZ x {s390x.NewRotateParams(uint8(max8(0, int8(c-d))), 63-d, uint8(int8(d-c)&63))})
    
    // Match (x << c) >> d to 'rotate then insert selected bits [into zero]'.
    (SRDconst (SLDconst x [c]) [d]) => (RISBGZ x {s390x.NewRotateParams(d, uint8(min8(63, int8(63-c+d))), uint8(int8(c-d)&63))})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    // nlzX returns the number of leading zeros.
    func nlz64(x int64) int { return bits.LeadingZeros64(uint64(x)) }
    func nlz32(x int32) int { return bits.LeadingZeros32(uint32(x)) }
    func nlz16(x int16) int { return bits.LeadingZeros16(uint16(x)) }
    func nlz8(x int8) int   { return bits.LeadingZeros8(uint8(x)) }
    
    // ntzX returns the number of trailing zeros.
    func ntz64(x int64) int { return bits.TrailingZeros64(uint64(x)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            buildScript '''
                task (copy, type:Copy) {
                   into 'dest'
                   into('common') {
                      from('files/one') {
                         into 'a/one'
                         include '*.a'
                      }
                      into('b') {
                         from('files/two') {
                            into 'two'
                            include '**/*.b'
                         }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    }
    
    //go:nosplit
    func (sc spanClass) sizeclass() int8 {
    	return int8(sc >> 1)
    }
    
    //go:nosplit
    func (sc spanClass) noscan() bool {
    	return sc&1 != 0
    }
    
    // arenaIndex returns the index into mheap_.arenas of the arena
    // containing metadata for p. This index combines of an index into the
    // L1 map and an index into the L2 map and should be used as
    // mheap_.arenas[ai.l1()][ai.l2()].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/runtime/asm_amd64.s

    	// to be the return PC of cgocallback, so that the traceback
    	// will seamlessly trace back into the earlier calls.
    	MOVQ	m_curg(BX), SI
    	MOVQ	SI, g(CX)
    	MOVQ	(g_sched+gobuf_sp)(SI), DI  // prepare stack as DI
    	MOVQ	(g_sched+gobuf_pc)(SI), BX
    	MOVQ	BX, -8(DI)  // "push" return PC on the g stack
    	// Gather our arguments into registers.
    	MOVQ	fn+0(FP), BX
    	MOVQ	frame+8(FP), CX
    	MOVQ	ctxt+16(FP), DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    				case 1:
    					min = int64(int8(w.AuxInt) - int8(delta))
    					max = int64(int8(^uint8(0)>>1) - int8(delta))
    
    					vmin = parent.NewValue0I(parent.Pos, OpConst8, parent.Func.Config.Types.Int8, min)
    					vmax = parent.NewValue0I(parent.Pos, OpConst8, parent.Func.Config.Types.Int8, max)
    
    				default:
    					panic("unimplemented")
    				}
    
    				if min < max {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "MOVBreg", argLength: 1, reg: gp11sp, asm: "MOVB", typ: "Int64"},    // sign extend arg0 from int8 to int64
    		{name: "MOVBZreg", argLength: 1, reg: gp11sp, asm: "MOVBZ", typ: "UInt64"}, // zero extend arg0 from int8 to int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
Back to top