Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 183 for qword (0.23 sec)

  1. pkg/registry/core/service/allocator/utils_test.go

    limitations under the License.
    */
    
    package allocator
    
    import (
    	"math/big"
    	"testing"
    )
    
    func TestCountBits(t *testing.T) {
    	// bigN is an integer that occupies more than one big.Word.
    	bigN, ok := big.NewInt(0).SetString("10000000000000000000000000000000000000000000000000000000000000000", 16)
    	if !ok {
    		t.Fatal("Failed to set bigN")
    	}
    	tests := []struct {
    		n        *big.Int
    		expected int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 01 15:08:36 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/callback_windows.go

    		"test.nestedCall.func1",
    		"test.nestedCall",
    		"test.testCallbackCallersSEH",
    		"test.TestCallbackCallersSEH",
    	}
    	pc := make([]uintptr, 100)
    	n := 0
    	nestedCall(func() {
    		n = int(C.backtrace(C.DWORD(len(pc)), (*C.PVOID)(unsafe.Pointer(&pc[0]))))
    	})
    	got := make([]string, 0, n)
    	for i := 0; i < n; i++ {
    		f := runtime.FuncForPC(pc[i] - 1)
    		if f == nil {
    			continue
    		}
    		fname := f.Name()
    		switch fname {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 16:01:37 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

        @Execute
        public HtmlResponse index() {
            throw new UnsupportedOperationException();
        }
    
        // POST /api/admin/scheduler/{id}/start
        @Execute(urlPattern = "{}/@word")
        public JsonResponse<ApiResult> post$start(final String id) {
            scheduledJobService.getScheduledJob(id).ifPresent(entity -> {
                if (!entity.isEnabled() || entity.isRunning()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/runtime/textflag.h

    #define NOPTR	16
    // This is a wrapper function and should not count as disabling 'recover'.
    #define WRAPPER 32
    // This function uses its incoming context register.
    #define NEEDCTXT 64
    // Allocate a word of thread local storage and store the offset from the
    // thread local base to the thread local storage in this variable.
    #define TLSBSS	256
    // Do not insert instructions to allocate a stack frame for this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/internal/bytealg/compare_s390x.s

    	MOVD	a_len+8(FP), R4
    	MOVD	b_base+16(FP), R5
    	MOVD	b_len+24(FP), R6
    	LA	ret+32(FP), R7
    	BR	cmpbody<>(SB)
    
    // input:
    //   R3 = a
    //   R4 = alen
    //   R5 = b
    //   R6 = blen
    //   R7 = address of output word (stores -1/0/1 here)
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0-0
    	CMPBEQ	R3, R5, cmplengths
    	MOVD	R4, R8
    	CMPBLE	R4, R6, amin
    	MOVD	R6, R8
    amin:
    	CMPBEQ	R8, $0, cmplengths
    	CMP	R8, $256
    	BLE	tail
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  6. src/runtime/memclr_mipsx.s

    	BNE	R3, small_zero
    
    ptr_align:
    	AND	$3, R1, R3
    	BEQ	R3, setup
    	SUBU	R1, R0, R3
    	AND	$3, R3		// R3 contains number of bytes needed to align ptr
    	MOVWHI	R0, 0(R1)	// MOVWHI will write zeros up to next word boundary
    	SUBU	R3, R2
    	ADDU	R3, R1
    
    setup:
    	AND	$31, R2, R6
    	AND	$3, R2, R5
    	SUBU	R6, R4, R6	// end pointer for 32-byte chunks
    	SUBU	R5, R4, R5	// end pointer for 4-byte chunks
    
    large:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.cc

        Value one_u64 = rewriter.create<ConstOp>(loc, GetScalarOfType(u64, 1));
        for (int i = 0; i < counter_size; ++i) {
          Value word = counter[i];
          Value word_u64 = rewriter.create<CastOp>(loc, word_u64_type, word);
          Value new_word_u64 = rewriter.create<AddV2Op>(loc, word_u64, increment);
          Value new_word = rewriter.create<CastOp>(loc, word_type, new_word_u64);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. src/math/big/decimal_test.go

    	} {
    		if got := test.x.String(); got != test.want {
    			t.Errorf("%v == %s; want %s", test.x, got, test.want)
    		}
    	}
    }
    
    func TestDecimalInit(t *testing.T) {
    	for _, test := range []struct {
    		x     Word
    		shift int
    		want  string
    	}{
    		{0, 0, "0"},
    		{0, -100, "0"},
    		{0, 100, "0"},
    		{1, 0, "1"},
    		{1, 10, "1024"},
    		{1, 100, "1267650600228229401496703205376"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 05:54:35 UTC 2016
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/testdata/namedReturn_test.go

    // See issue #14904.
    
    package main
    
    import (
    	"runtime"
    	"testing"
    )
    
    // Our heap-allocated object that will be GC'd incorrectly.
    // Note that we always check the second word because that's
    // where 0xdeaddeaddeaddead is written.
    type B [4]int
    
    // small (SSAable) array
    type A1 [3]*B
    
    //go:noinline
    func f1() (t A1) {
    	t[0] = &B{91, 92, 93, 94}
    	runtime.GC()
    	return t
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/textflag.go

    	WRAPPER = 32
    
    	// This function uses its incoming context register.
    	NEEDCTXT = 64
    
    	// When passed to objw.Global, causes Local to be set to true on the LSym it creates.
    	LOCAL = 128
    
    	// Allocate a word of thread local storage and store the offset from the
    	// thread local base to the thread local storage in this variable.
    	TLSBSS = 256
    
    	// Do not insert instructions to allocate a stack frame for this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top